コード例 #1
0
ファイル: Rand.cs プロジェクト: constructor-igor/cudafy
 public static void skipahead(this GThread thread, uint n, ref RandStateSobol32 state)
 {
     throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "skipahead");
 }
コード例 #2
0
ファイル: Rand.cs プロジェクト: constructor-igor/cudafy
 //__device__ unsigned int curand (curandStateSobol32_t  state)
 public static uint curand(this GThread thread, RandStateSobol32[] state)
 {
     throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand");
 }
コード例 #3
0
ファイル: Rand.cs プロジェクト: constructor-igor/cudafy
//__device__ oat curand_normal (curandStateSobol32_t  state)
        public static float curand_normal(this GThread thread, ref RandStateSobol32 state)
        {
            throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_normal");
        }
コード例 #4
0
ファイル: Rand.cs プロジェクト: constructor-igor/cudafy
 //__device__ oat curand_uniform (curandStateSobol32_t  state)
 public static double curand_uniform_double(this GThread thread, ref RandStateSobol32 state)
 {
     throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_uniform_double");
 }
コード例 #5
0
ファイル: Rand.cs プロジェクト: constructor-igor/cudafy
//__device__ double curand_log_normal_double (curandStateSobol32_t 
//state, double mean, double stddev)
        public static float curand_log_normal_double(this GThread thread, ref RandStateSobol32 state, double mean, double stddev)
        {
            throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_log_normal");
        }
コード例 #6
0
ファイル: Rand.cs プロジェクト: rblenis/cudafy
 public static void skipahead(this GThread thread, uint n, ref RandStateSobol32 state)
 {
     throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "skipahead");
 }
コード例 #7
0
ファイル: Rand.cs プロジェクト: rblenis/cudafy
 //__device__ oat curand_uniform (curandStateSobol32_t  state)
 public static double curand_uniform_double(this GThread thread, ref RandStateSobol32 state)
 {
     throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_uniform_double");
 }
コード例 #8
0
ファイル: Rand.cs プロジェクト: rblenis/cudafy
//__device__ oat curand_normal (curandStateSobol32_t  state)
        public static float curand_normal(this GThread thread, ref RandStateSobol32 state)
        {
            throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_normal");
        }
コード例 #9
0
ファイル: Rand.cs プロジェクト: rblenis/cudafy
//__device__ double curand_log_normal_double (curandStateSobol32_t 
//state, double mean, double stddev)
        public static float curand_log_normal_double(this GThread thread, ref RandStateSobol32 state, double mean, double stddev)
        {
            throw new CudafyException(CudafyException.csX_NOT_SUPPORTED, "curand_log_normal");
        }