我的c++随机数不是随机的

my c++ random number is not random

本文关键字:随机 c++ 随机数 我的      更新时间:2023-10-16

我正在运行这个

#include <boost/mpi.hpp>
#include <iostream>
#include <vector>
#include <cstdlib>
#include <time.h>
namespace mpi = boost::mpi;
int main()
{
    mpi::environment env;
    mpi::communicator world;

    srand (time(NULL));
    std::srand(time(0) + world.rank());
    int my_number = std::rand();
    if (world.rank() == 0) {
        std::vector<int> all_numbers;
        gather(world, my_number, all_numbers, 0);
        for (int proc = 0; proc < world.size(); ++proc)
            std::cout << "Process #" << proc << " thought of "
            << all_numbers[proc] << std::endl;
    } else {
        gather(world, my_number, 0);
    }
    return 0;
}

然而,为了分布式生成随机数,它每次都会给我一个大约相同大小的数字。。。。

dhcp-18-189-66-216:ising2 myname$ make
mpic++ -I/usr/local/include/boost -L/usr/local/lib -lboost_mpi -lboost_serialization main.cpp -o main
mpirun -n 4 main
Process #0 thought of 238772362
Process #1 thought of 238789169
Process #2 thought of 238805976
Process #3 thought of 238822783
dhcp-18-189-66-216:ising2 myname$ make
mpic++ -I/usr/local/include/boost -L/usr/local/lib -lboost_mpi -lboost_serialization main.cpp -o main
mpirun -n 4 main
Process #0 thought of 238805976
Process #1 thought of 238822783
Process #2 thought of 238839590
Process #3 thought of 238856397
dhcp-18-189-66-216:ising2 myname$ make
mpic++ -I/usr/local/include/boost -L/usr/local/lib -lboost_mpi -lboost_serialization main.cpp -o main
mpirun -n 4 main
Process #0 thought of 238856397
Process #1 thought of 238873204
Process #2 thought of 238890011
Process #3 thought of 238906818
dhcp-18-189-66-216:ising2 myname$ 

在该网站中,http://www.boost.org/doc/libs/1_55_0/doc/html/mpi/tutorial.html,其他人说他们得到了:

Process #0 thought of 332199874
Process #1 thought of 20145617
Process #2 thought of 1862420122
Process #3 thought of 480422940
Process #4 thought of 1253380219
Process #5 thought of 949458815
Process #6 thought of 650073868

我很困惑。。。。有什么帮助吗?非常感谢。

您的问题是cstdlib的rand()函数。它不是一个好的随机数生成器。如果您想在C++中使用正确的随机数,请使用C++11或外部随机数生成器(例如mersenne twister)中标头中的一些随机数。尽管如此,在并行程序中使用随机数并不是一件容易的事。您应该使用专门用于此的随机数生成器(例如r250_omp.h)。

问题可能是由rand引起的。请参阅此问题的讨论和答案:第一个随机数总是小于其余

似乎生成的相邻种子的数量(您的情况)可能有很大的相关性。rand的实现可能会有所不同,对于某些实现来说,这似乎是一个更加明显的现象。

我认为你的随机生成应该是这样的:

int max=100, min=0;
srand(time(NULL));
int random = (rand() % (max-min)) + min;