Sha256: 0c604b04a3ea25e804e94f2e8ea37598ba7f7297780beba866b1ea4857d62559
Contents?: true
Size: 1.2 KB
Versions: 19
Compression:
Stored size: 1.2 KB
Contents
typedef cumo_scomplex dtype; typedef float rtype; #define cT cumo_cSComplex #define cRT cumo_cSFloat #define mTM cumo_mSComplexMath #include "complex_macro.h" #include "cublas_v2.h" #include "cumo/cuda/cublas.h" static inline bool c_nearly_eq(dtype x, dtype y) { return c_abs(c_sub(x,y)) <= (c_abs(x)+c_abs(y))*FLT_EPSILON*2; } #ifdef SFMT_H /* generates a random number on [0,1)-real-interval */ inline static dtype m_rand(dtype max) { dtype z; CUMO_REAL(z) = to_real2(gen_rand32()) * CUMO_REAL(max); CUMO_IMAG(z) = to_real2(gen_rand32()) * CUMO_IMAG(max); return z; } /* generates random numbers from the normal distribution using Box-Muller Transformation. */ inline static void m_rand_norm(dtype mu, rtype sigma, dtype *a0) { rtype x1, x2, w; do { x1 = to_real2(gen_rand32()); x1 = x1*2-1; x2 = to_real2(gen_rand32()); x2 = x2*2-1; w = x1 * x1 + x2 * x2; } while (w>=1); w = sqrt( (-2*log(w)) / w ); CUMO_REAL(*a0) = x1*w * sigma + CUMO_REAL(mu); CUMO_IMAG(*a0) = x2*w * sigma + CUMO_IMAG(mu); } #endif #define M_EPSILON rb_float_new(1.1920928955078125e-07) #define M_MIN rb_float_new(1.1754943508222875e-38) #define M_MAX rb_float_new(3.4028234663852886e+38)
Version data entries
19 entries across 19 versions & 1 rubygems