我知道 MPI IO 以二进制格式写入文件,但是这次我需要它是 ASCII 格式。我需要这个,因为我使用Netpbm处理图像,并且标题必须是 ASCII(因此程序可以读取 P1、P2、P3、P4、P5 或 P6 并确定图像的内容是 ASCII 还是二进制等)事物)。
我正在使用的代码是(简单示例)MPI 并行 io 写入垃圾中提供的代码,我想知道代码中是否有一个小的修改允许我以 ASCII 而不是二进制输出整数缓冲区的内容。
此外,有一种以 ASCII 格式输出的方法也将允许更轻松的调试。
我知道 MPI IO 以二进制格式写入文件,但是这次我需要它是 ASCII 格式。我需要这个,因为我使用Netpbm处理图像,并且标题必须是 ASCII(因此程序可以读取 P1、P2、P3、P4、P5 或 P6 并确定图像的内容是 ASCII 还是二进制等)事物)。
我正在使用的代码是(简单示例)MPI 并行 io 写入垃圾中提供的代码,我想知道代码中是否有一个小的修改允许我以 ASCII 而不是二进制输出整数缓冲区的内容。
此外,有一种以 ASCII 格式输出的方法也将允许更轻松的调试。
您可以strlen
用于缓冲区大小
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
int main(int argc,char *argv[])
{
int namelen, numprocs, rank = 7;
char processor_name[MPI_MAX_PROCESSOR_NAME];
MPI_Init(&argc,&argv);
MPI_Comm_rank(MPI_COMM_WORLD,&rank);
MPI_Comm_size(MPI_COMM_WORLD,&numprocs);
MPI_Get_processor_name(processor_name,&namelen);
MPI_Status status;
MPI_File fh;
string test;
const char* buf[100];
string g = "test" + to_string(rank) + ".txt";
MPI_File_open(MPI_COMM_SELF, g.c_str(), MPI_MODE_CREATE | MPI_MODE_WRONLY,MPI_INFO_NULL,&fh);
for (int i=0; i < 100; i++){
test = to_string(i) + "\n";
buf[i] = test.c_str();
MPI_File_write(fh, buf[i], strlen(buf[i]), MPI_CHAR, &status);
}
MPI_File_close(&fh);
MPI_Finalize();
return 0;
}
注意MPI_File_write(fh, buf[i], strlen(buf[i]), MPI_CHAR, &status);
希望有帮助。
将您的数据作为 char 数组冲刺并使用 MPI-IO 和数据类型 MPI_CHAR 写入