1

我是 MPI 的新手。我正在尝试使用标准 c++ 代码读取文本文件,如下所示。

int main(int argc, char* argv[] ){

int np, pid, ierr;
ierr = MPI_Init(&argc, &argv);
ierr = MPI_Comm_size(MPI_COMM_WORLD, &np);
ierr = MPI_Comm_rank(MPI_COMM_WORLD, &pid);


const int imgWidth = 1000; // the width of the image (count in pixel)
const int imgHeight = 1000; // the height of the image

double* Y;
Y = (double *)malloc(imgHeight*imgWidth*sizeof(double));

if(pid == 0)
{
    string input = "Im.txt";
    readData(input.c_str(), Y);
}
MPI_Bcast(Y, imgHeight*imgWidth, MPI_DOUBLE, 0, MPI_COMM_WORLD);


free(Y);

MPI_Finalize();

return 1;

}

readData 函数定义为:

bool readData(const char *fileName, double* Y){

printf("Reading the data file!\n");

ifstream fin(fileName);

int i = 0;
while(fin>>Y[i])
{   
    i++;
};
cout<<"In total, "<<i<<" data are imported."<<endl;
//close the file
fin.close();

return 1;

}

文件“Im.txt”包含一堆数字。但是,当我运行程序时,没有导入数据。谁能给我一个提示?我不需要使用多重进程来并行读取这个文件。

4

1 回答 1

0

最后,我发现了问题。我正在使用 Visual Studio 在 Win7 下工作。似乎我必须明确指出我的文件的路径。即使我将“Im.txt”与源代码文件放在同一个文件夹中,它也不起作用。

于 2013-07-10T23:33:24.307 回答