Sha256: e6057f439bc22aeb7b6eaa296beae55896e77d58e0f3106785098655c21a43a3

Contents?: true

Size: 1.24 KB

Versions: 8

Compression:

Stored size: 1.24 KB

Contents

typedef float dtype;
typedef float rtype;
#define cT  cumo_cSFloat
#define cRT cumo_cSFloat
#define mTM cumo_mSFloatMath

#include "float_macro.h"
#include "cublas_v2.h"
#include "cumo/cuda/cublas.h"
#include "cumo/cuda/cudnn.h"

#ifdef SFMT_H
/* generates a random number on [0,1)-real-interval */
inline static dtype m_rand(dtype max)
{
    return to_real2(gen_rand32()) * max;
}

/* generates random numbers from the normal distribution
   using Box-Muller Transformation.
 */
inline static void m_rand_norm(dtype mu, dtype sigma, dtype *a0, dtype *a1)
{
    dtype 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 );
    if (a0) {*a0 = x1*w * sigma + mu;}
    if (a1) {*a1 = x2*w * sigma + mu;}
}
#endif

#define m_min_init cumo_sfloat_new_dim0(0.0/0.0)
#define m_max_init cumo_sfloat_new_dim0(0.0/0.0)

#define m_extract(x) rb_float_new(*(float*)x)
#define m_nearly_eq(x,y) (fabs(x-y)<=(fabs(x)+fabs(y))*FLT_EPSILON*2)

#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)

#define DATA_MIN -FLT_MAX
#define DATA_MAX FLT_MAX

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cumo-0.4.3 ext/cumo/include/cumo/types/sfloat.h
cumo-0.4.2 ext/cumo/include/cumo/types/sfloat.h
cumo-0.4.1 ext/cumo/include/cumo/types/sfloat.h
cumo-0.4.0 ext/cumo/include/cumo/types/sfloat.h
cumo-0.3.5 ext/cumo/include/cumo/types/sfloat.h
cumo-0.3.4 ext/cumo/include/cumo/types/sfloat.h
cumo-0.3.3 ext/cumo/include/cumo/types/sfloat.h
cumo-0.3.2 ext/cumo/include/cumo/types/sfloat.h