aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-07-07 17:40:49 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-07-07 17:40:49 -0700
commite6297741c9d5e6106b6fa4876afac9571e038161 (patch)
treeb2d7e8a1f83ed4981f1b364d8541227885f10149 /unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
parent6de6fa94830ff6d2be0e1ceed4587cad88b11762 (diff)
Added support for generation of random complex numbers on CUDA devices
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h104
1 files changed, 104 insertions, 0 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h b/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
index 33e8c01c2..14ffd5c93 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
@@ -387,6 +387,58 @@ template <> class UniformRandomGenerator<double> {
mutable curandStatePhilox4_32_10_t m_state;
};
+template <> class UniformRandomGenerator<std::complex<float> > {
+ public:
+ static const bool PacketAccess = false;
+
+ __device__ UniformRandomGenerator(bool deterministic = true) : m_deterministic(deterministic) {
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ __device__ UniformRandomGenerator(const UniformRandomGenerator& other) {
+ m_deterministic = other.m_deterministic;
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = m_deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ template<typename Index>
+ __device__ std::complex<float> operator()(Index, Index = 0) const {
+ float4 vals = curand_uniform4(&m_state);
+ return std::complex<float>(vals.x, vals.y);
+ }
+
+ private:
+ bool m_deterministic;
+ mutable curandStatePhilox4_32_10_t m_state;
+};
+
+template <> class UniformRandomGenerator<std::complex<double> > {
+ public:
+ static const bool PacketAccess = false;
+
+ __device__ UniformRandomGenerator(bool deterministic = true) : m_deterministic(deterministic) {
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ __device__ UniformRandomGenerator(const UniformRandomGenerator& other) {
+ m_deterministic = other.m_deterministic;
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = m_deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ template<typename Index>
+ __device__ std::complex<double> operator()(Index, Index = 0) const {
+ double2 vals = curand_uniform2_double(&m_state);
+ return std::complex<double>(vals.x, vals.y);
+ }
+
+ private:
+ bool m_deterministic;
+ mutable curandStatePhilox4_32_10_t m_state;
+};
+
#endif
@@ -489,6 +541,58 @@ template <> class NormalRandomGenerator<double> {
mutable curandStatePhilox4_32_10_t m_state;
};
+template <> class NormalRandomGenerator<std::complex<float> > {
+ public:
+ static const bool PacketAccess = false;
+
+ __device__ NormalRandomGenerator(bool deterministic = true) : m_deterministic(deterministic) {
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ __device__ NormalRandomGenerator(const NormalRandomGenerator& other) {
+ m_deterministic = other.m_deterministic;
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = m_deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ template<typename Index>
+ __device__ std::complex<float> operator()(Index, Index = 0) const {
+ float4 vals = curand_normal4(&m_state);
+ return std::complex<float>(vals.x, vals.y);
+ }
+
+ private:
+ bool m_deterministic;
+ mutable curandStatePhilox4_32_10_t m_state;
+};
+
+template <> class NormalRandomGenerator<std::complex<double> > {
+ public:
+ static const bool PacketAccess = false;
+
+ __device__ NormalRandomGenerator(bool deterministic = true) : m_deterministic(deterministic) {
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ __device__ NormalRandomGenerator(const NormalRandomGenerator& other) {
+ m_deterministic = other.m_deterministic;
+ const int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ const int seed = m_deterministic ? 0 : get_random_seed();
+ curand_init(seed, tid, 0, &m_state);
+ }
+ template<typename Index>
+ __device__ std::complex<double> operator()(Index, Index = 0) const {
+ double2 vals = curand_normal2_double(&m_state);
+ return std::complex<double>(vals.x, vals.y);
+ }
+
+ private:
+ bool m_deterministic;
+ mutable curandStatePhilox4_32_10_t m_state;
+};
+
#else
template <typename T> class NormalRandomGenerator {