c - 信号 : Segmentation fault (11) in MPI C++

标签 c ubuntu mpi

我有一个代码,它计算 MPI 中整数的平均值:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <mpi.h>
#include <assert.h>

// Average method
int compute_avg(int *array, int num_elements) {
    int sum = 0;
    int i;
    for (i = 0; i < num_elements; i++) {
    sum += array[i];
    }
    return sum / num_elements;
}

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

    if (argc != 2) {
    fprintf(stderr, "Usage: avg num_elements_per_proc\n");
    exit(1);
    }
    int num_elements_per_proc = atoi(argv[1]);

    MPI_Init(NULL, NULL);
    int world_rank;
    MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
    int world_size;
    MPI_Comm_size(MPI_COMM_WORLD, &world_size);

// Create array with integers
    int *nums = NULL;
    if (world_rank == 0) {

        for (int i =0; i<5; i++){
            nums[i] = i;
        }
    }


// Subtable from any processes
    int *sub_nums = (int *)malloc(sizeof(int) * num_elements_per_proc);
    assert(sub_nums != NULL);


// distribution numbers for all processes
    MPI_Scatter(nums, num_elements_per_proc, MPI_INT, sub_nums,
    num_elements_per_proc, MPI_INT, 0, MPI_COMM_WORLD);

// Count avg subtable
    int sub_avg = compute_avg(sub_nums, num_elements_per_proc);

// Collectiong averages
    int *sub_avgs = NULL;
    if (world_rank == 0) {
    sub_avgs = (int *)malloc(sizeof(int) * world_size);
    assert(sub_avgs != NULL);
    }
    MPI_Gather(&sub_avg, 1, MPI_INT, sub_avgs, 1, MPI_INT, 0, MPI_COMM_WORLD);


// Calculates the overall average
    if (world_rank == 0) {
    int avg = compute_avg(sub_avgs, world_size);
    printf("Avg of all elements is %d\n", avg);
// Obliczenie średniej na danych oryginalnych i wyświetlenie.
    int original_data_avg =
    compute_avg(nums, num_elements_per_proc * world_size);
    printf("Avg computed across original data is %d\n", original_data_avg);
}

// free memory
    if (world_rank == 0) {
    free(nums);
    free(sub_avgs);
    }
    free(sub_nums);
    MPI_Barrier(MPI_COMM_WORLD);
    MPI_Finalize();

return 0;
}

当我尝试运行它时 (mpirun -c 4 avg 4),我收到了错误列表:

[mangeke-mpi-2431940:03372] * Process received signal *

[mangeke-mpi-2431940:03372] Signal: Segmentation fault (11)

[mangeke-mpi-2431940:03372] Signal code: Address not mapped (1)

[mangeke-mpi-2431940:03372] Failing at address: (nil)

[mangeke-mpi-2431940:03372] * End of error message *

我该如何解决这个问题?

最佳答案

正如 Hristo 评论的那样,nums 被初始化为 NULL。如果您探索使用调试器生成的核心文件,它会引发以下语句

Core was generated by `./m 4'. Program terminated with signal SIGSEGV, Segmentation fault. #0 0x0000000000408809 in main (argc=2, argv=0x7ffd4fc87e68) at m.cxx:36 36 nums[i] = i;

如果您更改以下代码,如下所示,您将使其在没有段错误的情况下运行。

    ....

    // Create array with integers
    int nums[num_elements_per_proc]; // <<-- change here
    if (world_rank == 0) {

        for (int i =0; i<5; i++){
            nums[i] = i;
        }
    }

    ....
    // free memory
    if (world_rank == 0) {
    // free(nums);                   // <<-- change here, free not needed
    free(sub_avgs);
    }

关于c - 信号 : Segmentation fault (11) in MPI C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35108045/

相关文章:

c - 无法将 GDB 附加到 Eclipse CDT 中的进程

c - 在 Solaris Sparc 64 位上,64 位进程可以加载 32 位共享库吗

c - MPI 连接 vector

c - 为什么openmp 32线程比1线程慢得多?

linux - 亚马逊AWS机器无法连接

c - 为什么 '\xff' 没有被识别?

c - 如何使用 syslog 在终端上记录一些消息?

php - Netbeans 和 Xampp

未加载 php oci8 模块(ubuntu 16)

c++ - 使用 C 宏将字符串转换为非字符串