2017-02-20 20 views
0

私はMPIプログラミングの初心者です。だから私はchar *の配列のいくつかの小さな塊に静的なサイズを持つchar *の配列を配布するためにMPI_Scatterを使用しようとしています。しかし、結果はID 0のみで修正され、残りの部分はガベージ・バリューを持ちます。あなたは何が間違っているか知っていますか?char *配列でMPI_Scatterを使用する

#include "mpi.h" 
#include <algorithm> 
#include <functional> 
#include <cstdlib> 
#include <ctime> 
#include <cctype> 
#include <fstream> 
#include <vector> 
#include <string> 
#include <iostream> 
const static int ARRAY_SIZE = 130000; 
using Lines = char[ARRAY_SIZE][16]; 

// To remove punctuations 
struct letter_only: std::ctype<char> 
{ 
    letter_only(): std::ctype<char>(get_table()) {} 

    static std::ctype_base::mask const* get_table() 
    { 
     static std::vector<std::ctype_base::mask> 
      rc(std::ctype<char>::table_size,std::ctype_base::space); 

     std::fill(&rc['A'], &rc['z'+1], std::ctype_base::alpha); 
     return &rc[0]; 
    } 
}; 


int main(int argc, char* argv[]) { 
    int processId; 
    int fillarraycount=0; 
    int num_processes; 

    // Setup MPI 
    MPI_Init(&argc, &argv); 
    MPI_Comm_rank(MPI_COMM_WORLD, &processId); 
    MPI_Comm_size(MPI_COMM_WORLD, &num_processes); 

    Lines lines; 
    // Read the input file and put words into char array(lines) 
    if (processId == 0) { 
     std::ifstream file; 
     file.imbue(std::locale(std::locale(), new letter_only())); 
     file.open(argv[1]); 
     std::string workString; 
     int i = 0; 
     while(file >> workString){ 
      memset(lines[i], '\0', 16); 
      memcpy(lines[i++], workString.c_str(), workString.length()); 
      fillarraycount++; 
     } 
    } 
    int n =fillarraycount/num_processes; 
    char sublines[n][16]; 

    MPI_Scatter(lines,n*16,MPI_CHAR,sublines,n*16,MPI_CHAR,0,MPI_COMM_WORLD); 
    std::cout<< processId<<" "; 
    for(int i=0;i<n;++i) 
     std::cout<<sublines[i]<<" "; 
    std::cout<<std::endl; 

    MPI_Finalize(); 
    return 0; 
} 

私はその後MPI_gatherあまりにも使用する必要があります知っているが、私はID 0のサブラインは、配列の正しいチャンクを生成するが、他のIDがゴミ値を生成する理由に混乱しています。

私は、プログラムをコンパイルし、テストしようとした:
モジュール負荷OpenMPIの
MPIC++ -std = C++ 11 try.cpp -o

でtry.txt
mpirunの-np 5試してみてくださいtry.txtは:
こんにちは、これはこれは
がnotis Siであるされているトライテキスト文書で再度試してテキスト文書
であるハハ以外のランクに

+0

これはおそらく助けにならないでしょう。私は同様の問題を抱えていて、配列の代わりにポインタと 'malloc'を使って修正しました。 ( 'char [x] [y] - > char * sublines = malloc(sizeof(char)* x * y)')。唯一の他のことは、 'num_processes'がコンパイル時に定義されていることを確認することです(そうでなければ、そのような配列は有効ではないと宣言し、割り当てられるメモリー量を知ることはできません) **あなたの結果を集めましたか?**あなたは[分散して集める]必要があります(http://mpitutorial.com/tutorials/mpi-scatter-gather-and-allgather/);) – sjm324

+1

[mcve]を入力してください。返信ありがとう! – Zulan

答えて

0

0の場合、fillarraycountは決してインクリメントされないので、nは0です。 fillarraycountが動的な場合は、まずistをすべてのランクにブロードキャストする必要があります。

+0

あなたはもう少し説明することができます、私は本当に完全に問題を理解したい..ありがとう! –

+0

ああ私はそれを得た。助けてくれてありがとう!! –

関連する問題