/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/lattice/Lattice_rng.h Copyright (C) 2015 Author: Peter Boyle Author: paboyle This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ #ifndef GRID_LATTICE_RNG_H #define GRID_LATTICE_RNG_H #include #ifdef RNG_SITMO #include #endif #if defined(RNG_SITMO) #define RNG_FAST_DISCARD #else #undef RNG_FAST_DISCARD #endif namespace Grid { ////////////////////////////////////////////////////////////// // Allow the RNG state to be less dense than the fine grid ////////////////////////////////////////////////////////////// inline int RNGfillable(GridBase *coarse,GridBase *fine) { int rngdims = coarse->_ndimension; // trivially extended in higher dims, with locality guaranteeing RNG state is local to node int lowerdims = fine->_ndimension - coarse->_ndimension; assert(lowerdims >= 0); for(int d=0;d_simd_layout[d]==1); assert(fine->_processors[d]==1); } int multiplicity=1; for(int d=0;d_rdimensions[d]; } // local and global volumes subdivide cleanly after SIMDization for(int d=0;d_processors[d] == fine->_processors[fd]); assert(coarse->_simd_layout[d] == fine->_simd_layout[fd]); assert(((fine->_rdimensions[fd] / coarse->_rdimensions[d])* coarse->_rdimensions[d])==fine->_rdimensions[fd]); multiplicity = multiplicity *fine->_rdimensions[fd] / coarse->_rdimensions[d]; } return multiplicity; } // real scalars are one component template void fillScalar(scalar &s,distribution &dist,generator & gen) { s=dist(gen); } template void fillScalar(ComplexF &s,distribution &dist, generator &gen) { s=ComplexF(dist(gen),dist(gen)); } template void fillScalar(ComplexD &s,distribution &dist,generator &gen) { s=ComplexD(dist(gen),dist(gen)); } class GridRNGbase { public: // One generator per site. // Uniform and Gaussian distributions from these generators. #ifdef RNG_RANLUX typedef std::ranlux48 RngEngine; typedef uint64_t RngStateType; static const int RngStateCount = 15; #endif #ifdef RNG_MT19937 typedef std::mt19937 RngEngine; typedef uint32_t RngStateType; static const int RngStateCount = std::mt19937::state_size; #endif #ifdef RNG_SITMO typedef sitmo::prng_engine RngEngine; typedef uint64_t RngStateType; static const int RngStateCount = 4; #endif std::vector _generators; std::vector > _uniform; std::vector > _gaussian; std::vector > _bernoulli; std::vector > _uid; /////////////////////// // support for parallel init /////////////////////// #ifdef RNG_FAST_DISCARD static void Skip(RngEngine &eng) { ///////////////////////////////////////////////////////////////////////////////////// // Skip by 2^40 elements between successive lattice sites // This goes by 10^12. // Consider quenched updating; likely never exceeding rate of 1000 sweeps // per second on any machine. This gives us of order 10^9 seconds, or 100 years // skip ahead. // For HMC unlikely to go at faster than a solve per second, and // tens of seconds per trajectory so this is clean in all reasonable cases, // and margin of safety is orders of magnitude. // We could hack Sitmo to skip in the higher order words of state if necessary ///////////////////////////////////////////////////////////////////////////////////// uint64_t skip = 0x1; skip = skip<<40; eng.discard(skip); } #endif static RngEngine Reseed(RngEngine &eng) { std::vector newseed; std::uniform_int_distribution uid; return Reseed(eng,newseed,uid); } static RngEngine Reseed(RngEngine &eng,std::vector & newseed, std::uniform_int_distribution &uid) { const int reseeds=4; newseed.resize(reseeds); for(int i=0;i & saved,RngEngine &eng) { saved.resize(RngStateCount); std::stringstream ss; ss<>saved[i]; } } void GetState(std::vector & saved,int gen) { GetState(saved,_generators[gen]); } void SetState(std::vector & saved,RngEngine &eng){ assert(saved.size()==RngStateCount); std::stringstream ss; for(int i=0;i>eng; } void SetState(std::vector & saved,int gen){ SetState(saved,_generators[gen]); } void SetEngine(RngEngine &Eng, int gen){ _generators[gen]=Eng; } void GetEngine(RngEngine &Eng, int gen){ Eng=_generators[gen]; } template void Seed(source &src, int gen) { _generators[gen] = RngEngine(src); } }; class GridSerialRNG : public GridRNGbase { public: GridSerialRNG() : GridRNGbase() { _generators.resize(1); _uniform.resize(1,std::uniform_real_distribution{0,1}); _gaussian.resize(1,std::normal_distribution(0.0,1.0) ); _bernoulli.resize(1,std::discrete_distribution{1,1}); _uid.resize(1,std::uniform_int_distribution() ); } template inline void fill(sobj &l,std::vector &dist){ typedef typename sobj::scalar_type scalar_type; int words = sizeof(sobj)/sizeof(scalar_type); scalar_type *buf = (scalar_type *) & l; dist[0].reset(); for(int idx=0;idx inline void fill(ComplexF &l,std::vector &dist){ dist[0].reset(); fillScalar(l,dist[0],_generators[0]); CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } template inline void fill(ComplexD &l,std::vector &dist){ dist[0].reset(); fillScalar(l,dist[0],_generators[0]); CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } template inline void fill(RealF &l,std::vector &dist){ dist[0].reset(); fillScalar(l,dist[0],_generators[0]); CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } template inline void fill(RealD &l,std::vector &dist){ dist[0].reset(); fillScalar(l,dist[0],_generators[0]); CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } // vector fill template inline void fill(vComplexF &l,std::vector &dist){ RealF *pointer=(RealF *)&l; dist[0].reset(); for(int i=0;i<2*vComplexF::Nsimd();i++){ fillScalar(pointer[i],dist[0],_generators[0]); } CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } template inline void fill(vComplexD &l,std::vector &dist){ RealD *pointer=(RealD *)&l; dist[0].reset(); for(int i=0;i<2*vComplexD::Nsimd();i++){ fillScalar(pointer[i],dist[0],_generators[0]); } CartesianCommunicator::BroadcastWorld(0,(void *)&l,sizeof(l)); } template inline void fill(vRealF &l,std::vector &dist){ RealF *pointer=(RealF *)&l; dist[0].reset(); for(int i=0;i inline void fill(vRealD &l,std::vector &dist){ RealD *pointer=(RealD *)&l; dist[0].reset(); for(int i=0;i &seeds){ CartesianCommunicator::BroadcastWorld(0,(void *)&seeds[0],sizeof(int)*seeds.size()); std::seed_seq src(seeds.begin(),seeds.end()); Seed(src,0); } }; class GridParallelRNG : public GridRNGbase { public: GridBase *_grid; int _vol; public: int generator_idx(int os,int is){ return is*_grid->oSites()+os; } GridParallelRNG(GridBase *grid) : GridRNGbase() { _grid=grid; _vol =_grid->iSites()*_grid->oSites(); _generators.resize(_vol); _uniform.resize(_vol,std::uniform_real_distribution{0,1}); _gaussian.resize(_vol,std::normal_distribution(0.0,1.0) ); _bernoulli.resize(_vol,std::discrete_distribution{1,1}); _uid.resize(_vol,std::uniform_int_distribution() ); } template inline void fill(Lattice &l,std::vector &dist){ typedef typename vobj::scalar_object scalar_object; typedef typename vobj::scalar_type scalar_type; typedef typename vobj::vector_type vector_type; int multiplicity = RNGfillable(_grid,l._grid); int Nsimd =_grid->Nsimd(); int osites=_grid->oSites(); int words=sizeof(scalar_object)/sizeof(scalar_type); parallel_for(int ss=0;ss buf(Nsimd); for(int m=0;m &seeds){ // Everyone generates the same seed_seq based on input seeds CartesianCommunicator::BroadcastWorld(0,(void *)&seeds[0],sizeof(int)*seeds.size()); std::seed_seq source(seeds.begin(),seeds.end()); RngEngine master_engine(source); #ifdef RNG_FAST_DISCARD //////////////////////////////////////////////// // Skip ahead through a single stream. // Applicable to SITMO and other has based/crypto RNGs // Should be applicable to Mersenne Twister, but the C++11 // MT implementation does not implement fast discard even though // in principle this is possible //////////////////////////////////////////////// std::vector gcoor; int rank,o_idx,i_idx; // Everybody loops over global volume. for(int gidx=0;gidx<_grid->_gsites;gidx++){ Skip(master_engine); // Skip to next RNG sequence // Where is it? _grid->GlobalIndexToGlobalCoor(gidx,gcoor); _grid->GlobalCoorToRankIndex(rank,o_idx,i_idx,gcoor); // If this is one of mine we take it if( rank == _grid->ThisRank() ){ int l_idx=generator_idx(o_idx,i_idx); _generators[l_idx] = master_engine; } } #else //////////////////////////////////////////////////////////////// // Machine and thread decomposition dependent seeding is efficient // and maximally parallel; but NOT reproducible from machine to machine. // Not ideal, but fastest way to reseed all nodes. //////////////////////////////////////////////////////////////// { // Obtain one Reseed per processor int Nproc = _grid->ProcessorCount(); std::vector seeders(Nproc); int me= _grid->ThisRank(); for(int p=0;p seeders(Nthread); for(int t=0;t newseeds; std::uniform_int_distribution uid; for(int l=0;l<_grid->lSites();l++) { if ( (l%Nthread)==t ) { _generators[l] = Reseed(seeders[t],newseeds,uid); } } } } #endif } //////////////////////////////////////////////////////////////////////// // Support for rigorous test of RNG's // Return uniform random uint32_t from requested site generator //////////////////////////////////////////////////////////////////////// uint32_t GlobalU01(int gsite){ uint32_t the_number; // who std::vector gcoor; int rank,o_idx,i_idx; _grid->GlobalIndexToGlobalCoor(gsite,gcoor); _grid->GlobalCoorToRankIndex(rank,o_idx,i_idx,gcoor); // draw int l_idx=generator_idx(o_idx,i_idx); if( rank == _grid->ThisRank() ){ the_number = _uid[l_idx](_generators[l_idx]); } // share & return _grid->Broadcast(rank,(void *)&the_number,sizeof(the_number)); return the_number; } }; template inline void random(GridParallelRNG &rng,Lattice &l) { rng.fill(l,rng._uniform); } template inline void gaussian(GridParallelRNG &rng,Lattice &l) { rng.fill(l,rng._gaussian); } template inline void bernoulli(GridParallelRNG &rng,Lattice &l){ rng.fill(l,rng._bernoulli);} template inline void random(GridSerialRNG &rng,sobj &l) { rng.fill(l,rng._uniform ); } template inline void gaussian(GridSerialRNG &rng,sobj &l) { rng.fill(l,rng._gaussian ); } template inline void bernoulli(GridSerialRNG &rng,sobj &l){ rng.fill(l,rng._bernoulli); } } #endif