0

我正在使用 20 个数组。并使用 openMP 将 1/4 任务按顺序分配给四个线程中的每个线程。然后将整个数组的结果存储到文件中。这里有什么问题?

在第一个数组中,我为每个元素分配 i*j 值,然后进行 20 x 20 的矩阵乘法。

#include<stdio.h>
#include<omp.h>
#include "head.h"

int sum=0;  
int c[20][20];
//#include<conio.h>

int main(void) {
    int A[20][20],B[20][20],C[20][20];
    int i,j,e;
    static sum=0;
    FILE *fp;

    unsigned long long a,b,c,d;
    int threadno;
    fp=fopen("m2.txt","w");
    //    clrscr();
    printf("\n%d \n",h[20][20]);

    #pragma omp parallel shared(a,b,c,d)
    {
        threadno=omp_get_thread_num();

        if(threadno==0)
        {   
            for (i=0;i<5;i++)
            for (j=0;j<5;j++)
                A[i][j]=i*j;
                B[i][j]=i*j;

            for (i=0;i<5;i++)
            for (j=0;j<5;j++)
                    for (e=0;e<5;e++)
                sum+=A[i][e]*B[e][j];
                    C[i][j]=sum;
            //fprintf(fp,"%d \t",C[i][j]);
        }

    }

    if(threadno==1)
    {   
        for (i=5;i<10;i++)
        for (j=5;j<10;j++)
            A[i][j]=i*j;
            B[i][j]=i*j;

        for (i=5;i<10;i++)
         for (j=5;j<10;j++) {
             sum=0;
             for (e=5;e<10;e++)
             sum+=A[i][e]*B[e][j];
             C[i][j]=sum;
            //fprintf(fp,"%d \t",C[i][j]);
           }
        }

    if(threadno==2)
    {   
        for (i=10;i<15;i++)
        for (j=10;j<15;j++)
            A[i][j]=i*j;
                B[i][j]=i*j;

        for (i=10;i<15;i++)
        for (j=10;j<15;j++) {
            for (e=10;e<15;e++)
                sum+=A[i][e]*B[e][j];
            C[i][j]=sum;
                //fprintf(fp,"%d \t",C[i][j]);
        }
    }

    if(threadno==3)
    {   
        for (i=15;i<20;i++)
        for (j=15;j<20;j++)
                A[i][j]=i*j;
            B[i][j]=i*j;

        for (i=15;i<20;i++)
        for (j=15;j<20;j++) {
            for (e=15;e<20;e++)
            sum+=A[i][e]*B[e][j];
            C[i][j]=sum;
                //fprintf(fp,"%d \t",C[i][j]);
        }
    }


    for (i=0;i<20;i++){
        for (j=0;j<20;j++) {
        fprintf(fp,"%d \t",C[i][j]);
        }
    }
}

fclose(fp); 
}   
4

1 回答 1

1

您不匹配大括号。if(threadno==0)在if 部分之后立即关闭并行部分。

此外,您的代码末尾似乎有一个额外的大括号。

正如 Dave 所提到的,您的 for 语句中还缺少几个大括号。这不是问题的原因,但会导致您的算法无法返回预期结果。

在 C 中

for(i = 0; i < n; i++)
     function(i);

用于在 for 循环中执行单个操作

或者如果您希望 for 循环包含多个操作,请使用大括号

for(i = 0; i < n; i++){
     function(i);
     function2(i);
     function3(i);
}
于 2013-03-21T00:28:47.410 回答