PSCF v1.2
CudaRandom.h
1#ifndef PSCF_CUDA_RANDOM_H
2#define PSCF_CUDA_RANDOM_H
3
4#include "DeviceArray.h"
5
6#include <curand.h>
7
8/*
9* PSCF Package - Polymer Self-Consistent Field
10*
11* Copyright 2016 - 2023, The Regents of the University of Minnesota
12* Distributed under the terms of the GNU General Public License.
13*/
14
15namespace Pscf {
16
30 {
31
32 public:
33
37 CudaRandom();
38
42 virtual ~CudaRandom();
43
49 void setSeed(unsigned long long seed);
50
56 void uniform(DeviceArray<float>& data);
57
63 void uniform(DeviceArray<double>& data);
64
76 void normal(DeviceArray<float>& data, float stddev, float mean = 0.0);
77
89 void normal(DeviceArray<double>& data, double stddev, double mean = 0.0);
90
96 long seed();
97
98 private:
99
101 curandGenerator_t gen_;
102
104 unsigned long long seed_;
105
107 bool isInitialized_;
108
109 void errorCheck(curandStatus_t const & error);
110
111 };
112
113 /*
114 * Returns value of random seed (private member variable idum)
115 */
116 inline long CudaRandom::seed()
117 { return seed_; }
118
119}
120#endif
Random number generator on GPU.
Definition CudaRandom.h:30
void normal(DeviceArray< float > &data, float stddev, float mean=0.0)
Populate array on device with normal-distributed random floats.
Definition CudaRandom.cu:84
CudaRandom()
Constructor.
Definition CudaRandom.cu:13
long seed()
Returns value of random seed (private member variable seed_).
Definition CudaRandom.h:116
void uniform(DeviceArray< float > &data)
Populate array on device with random floats in (0, 1], uniform dist.
Definition CudaRandom.cu:54
virtual ~CudaRandom()
Destructor.
Definition CudaRandom.cu:27
void setSeed(unsigned long long seed)
Set value of random seed (private member variable seed_).
Definition CudaRandom.cu:35
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
PSCF package top-level namespace.
Definition param_pc.dox:1