2

私はCが初めてで、Linuxを使用しています。私はこのユニタスクに行き詰まりました。プログラムを評価する必要があり、実行にかかった時間を表示するプログラムを作成する必要があります。元のプログラムはこちら。

/*
 * Simple MPI program to sum the numbers from 1 to 1000
 *
 * The output of this program should look like this:
 *
 * $ mpirun -n 4 ./su
 * node 1 of 4 starting at 251 and ending at 500
 * node 2 of 4 starting at 501 and ending at 750
 * node 3 of 4 starting at 751 and ending at 1000
 * node 0 of 4 starting at 1 and ending at 250
 * The sum from 1 to 1000 is: 500500
 *
 * Author: Kevan Buckley
 */

#include <stdio.h>
#include <mpi/mpi.h>

int main(int argc, char **argv) {
    // Rank is which process this code is executing in.
    // Rank 0 is the initial process.
    int rank;
    int size;
    int sum = 0;
    int start, end, accum, i;

    // These lines must appear at the start of any
    // MPI program.
    MPI_Status status;
    MPI_Init(&argc, &argv);

    // These lines tell MPI that rank and size are values
    // that we want to communicate between processes.
    MPI_Comm_size(MPI_COMM_WORLD, &size);
    MPI_Comm_rank(MPI_COMM_WORLD, &rank);

    // Only compute part of the sum.
    // This splits the work over the different processes.
    start = (1000*rank/size)+1;
    end = 1000*(rank+1)/size;

    printf("node %d of %d start: %d end: at %d\n",\
           rank, size, start, end);

    for(i=start; i<=end; i++){
        sum = sum + i;
    }

    if(rank == 0) {
        for(i=1; i<size; i++){
            // Receive a message from another process.
            MPI_Recv(&accum, 1, MPI_INT, i, 1, \
                     MPI_COMM_WORLD,  &status);
            sum = sum + accum;
        }
        printf("The sum from 1 to 1000 is: %d\n", sum );
    }
    else {
       // Send data to the process at rank 0.
       MPI_Send(&sum, 1, MPI_INT, 0, 1, MPI_COMM_WORLD);
    }

    // This code must end any MPI program.
    MPI_Finalize();

    return 0;
}

これは私の更新版です - Gist。私が作業していた他のコードからすべての時間を計算しました。いろいろやってみましたが、いまだにうまくいきません。

どんな助けでも役に立ちます、ありがとう!

4

1 に答える 1