gpt4 book ai didi

c - C 中的用户输入变量值

转载 作者:行者123 更新时间:2023-12-04 10:10:23 26 4
gpt4 key购买 nike

我是 C 初学者(在 C++ 方面经验很少),并且对用户输入变量值有疑问。我写了MPI_ScatterMPI_Gather C 程序将计算每个节点上输入的整数数量的总和。

问题是:如果我将变量输入(参见下面的代码)定义为 input=5;它将计算所有 4 的总和节点( 210 )。如果我将输入设置为 scanf ,结果将仅为 15 。看来变量改变了它的值。你能帮我吗?代码:

#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#define MASTER 0
int main(int argc, char** argv){
int id, nproc;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &nproc);
MPI_Comm_rank(MPI_COMM_WOLRD, &id);
MPI_Status status;
int input=0; // <- problematic variable
int nodeValue=0;
int size;
int *array;
if(id == MASTER){
printf("How many elements per node? ");
scanf("%d", &input);
nodeValue = input;
}
MPI_Barrier(MPI_COMM_WORLD);
if(id == MASTER){
size = input * nproc;
array = malloc(sizeof(int)*size);
...
}
}

最佳答案

您的查询类似于以下堆栈溢出问题:访问In MPI for multiple process scanf taking input only once and assign garbage values to other?

选项给出:请从文件中读取输入。

以下是从文件读取的示例代码:

  #include "mpi.h"
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
int myid, nprocs;
int *array;
int size, i;
FILE *fp;

MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &myid);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);

if(myid ==0)
{
fp = fopen("test", "r");
fscanf(fp, "%d", &size);
}

/* MPI_Bcast(void *buffer,
int count,
MPI_Datatype datatype,
int root,
MPI_Comm comm) */
MPI_Bcast(&size,1, MPI_INT, 0, MPI_COMM_WORLD);
array = (int *) malloc(size* sizeof(int));

if(myid ==0)
{
for(i = 0; i < size; i++)
{
fscanf(fp, "%d", &array[i]);
}
}
MPI_Bcast(array, size, MPI_INT, 0, MPI_COMM_WORLD);

MPI_Finalize();
}

这里的链接有一些示例:访问https://docs.loni.org/wiki/c_mpi_examples

如果确实需要用户输入:我们有选项

1)从命令行参数或文件读取(编写代码以输入到该文件 - 尽管这是一个冗长的方法)

2) STDIN 在 MPI_Init 之后将无法按预期工作。尝试将 scanf 语句放在 MPI_Init 之前。

修改后的代码:请尝试以下操作:

    int id, nproc;
MPI_Status status;
int input=0; // <- problematic variable
int nodeValue=0;
int size;
int *array;
if(id == MASTER){
printf("How many elements per node? ");
scanf("%d", &input);
nodeValue = input;
}
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &nproc);
MPI_Comm_rank(MPI_COMM_WOLRD, &id);

关于c - C 中的用户输入变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40651594/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com