Example #1
0
 private static extern curandStatus curandGenerateUniformDouble(RandGenerator generator, IntPtr outputPtr, SizeT num);
Example #2
0
 private static extern curandStatus curandGenerateLongLong(RandGenerator generator, IntPtr outputPtr, SizeT num);
Example #3
0
 private static extern curandStatus curandGenerateNormalDouble(RandGenerator generator, IntPtr outputPtr, SizeT n, double mean, double stddev);
Example #4
0
 public curandStatus SetGeneratorOffset(RandGenerator generator, ulong offset)
 {
     return(curandSetGeneratorOffset(generator, offset));
 }
Example #5
0
 private static extern curandStatus curandDestroyGenerator(RandGenerator generator);
Example #6
0
 public curandStatus CreateGeneratorHost(ref RandGenerator generator, curandRngType rng_type)
 {
     return(curandCreateGeneratorHost(ref generator, rng_type));
 }
Example #7
0
 public curandStatus GenerateLongLong(RandGenerator generator, IntPtr outputPtr, SizeT num)
 {
     return(curandGenerateLongLong(generator, outputPtr, num));
 }
Example #8
0
 private static extern curandStatus curandSetGeneratorOffset(RandGenerator generator, ulong offset);
Example #9
0
 private static extern curandStatus curandSetGeneratorOrdering(RandGenerator generator, curandOrdering order);
Example #10
0
 private static extern curandStatus curandGenerateSeeds(RandGenerator generator);
Example #11
0
 private static extern curandStatus curandGenerateUniformDouble(RandGenerator generator, IntPtr outputPtr, SizeT num);
Example #12
0
 private static extern curandStatus curandGenerateNormalDouble(RandGenerator generator, IntPtr outputPtr, SizeT n, double mean, double stddev);
Example #13
0
 private static extern curandStatus curandGenerateNormal(RandGenerator generator, IntPtr outputPtr, SizeT n, float mean, float stddev);
Example #14
0
 private static extern curandStatus curandGenerateLongLong(RandGenerator generator, IntPtr outputPtr, SizeT num);
Example #15
0
 private static extern curandStatus curandSetGeneratorOrdering(RandGenerator generator, curandOrdering order);
Example #16
0
 private static extern curandStatus curandSetPseudoRandomGeneratorSeed(RandGenerator generator, ulong seed);
Example #17
0
 private static extern curandStatus curandSetQuasiRandomGeneratorDimensions(RandGenerator generator, uint num_dimensions);
Example #18
0
 private static extern curandStatus curandSetQuasiRandomGeneratorDimensions(RandGenerator generator, uint num_dimensions);
Example #19
0
 public curandStatus SetPseudoRandomGeneratorSeed(RandGenerator generator, ulong seed)
 {
     return(curandSetPseudoRandomGeneratorSeed(generator, seed));
 }
Example #20
0
 private static extern curandStatus curandSetStream(RandGenerator generator, CUstream stream);
Example #21
0
 public curandStatus GenerateNormalDouble(RandGenerator generator, IntPtr outputPtr, SizeT n, double mean, double stddev)
 {
     return(curandGenerateNormalDouble(generator, outputPtr, n, mean, stddev));
 }
Example #22
0
 public curandStatus CreateGeneratorHost(ref RandGenerator generator, curandRngType rng_type)
 {
     return curandCreateGeneratorHost(ref generator, rng_type);
 }
Example #23
0
 public curandStatus SetQuasiRandomGeneratorDimensions(RandGenerator generator, uint num_dimensions)
 {
     return(curandSetQuasiRandomGeneratorDimensions(generator, num_dimensions));
 }
Example #24
0
 public curandStatus DestroyGenerator(RandGenerator generator)
 {
     return curandDestroyGenerator(generator);
 }
Example #25
0
 private static extern curandStatus curandDestroyGenerator(RandGenerator generator);
Example #26
0
 public curandStatus SetPseudoRandomGeneratorSeed(RandGenerator generator, ulong seed)
 {
     return curandSetPseudoRandomGeneratorSeed(generator, seed);
 }
Example #27
0
 private static extern curandStatus curandGenerateNormal(RandGenerator generator, IntPtr outputPtr, SizeT n, float mean, float stddev);
Example #28
0
 public curandStatus GenerateUniformDouble(RandGenerator generator, IntPtr outputPtr, SizeT n)
 {
     return curandGenerateUniformDouble(generator, outputPtr, n);
 }
Example #29
0
 private static extern curandStatus curandGenerateSeeds(RandGenerator generator);
Example #30
0
 public curandStatus GenerateLongLong(RandGenerator generator, IntPtr outputPtr, SizeT num)
 {
     return curandGenerateLongLong(generator, outputPtr, num);
 }
Example #31
0
 private static extern curandStatus curandSetGeneratorOffset(RandGenerator generator, ulong offset);
Example #32
0
 public curandStatus GenerateNormal(RandGenerator generator, IntPtr outputPtr, SizeT n, float mean, float stddev)
 {
     return curandGenerateNormal(generator, outputPtr, n, mean, stddev);
 }
Example #33
0
 private static extern curandStatus curandSetPseudoRandomGeneratorSeed(RandGenerator generator, ulong seed);
Example #34
0
 public curandStatus GenerateNormalDouble(RandGenerator generator, IntPtr outputPtr, SizeT n, double mean, double stddev)
 {
     return curandGenerateNormalDouble(generator, outputPtr, n, mean, stddev);
 }
Example #35
0
 private static extern curandStatus curandSetStream(RandGenerator generator, CUstream stream);
Example #36
0
 public curandStatus GenerateSeeds(RandGenerator generator)
 {
     return curandGenerateSeeds(generator);
 }
Example #37
0
 public curandStatus DestroyGenerator(RandGenerator generator)
 {
     return(curandDestroyGenerator(generator));
 }
Example #38
0
 public curandStatus SetGeneratorOffset(RandGenerator generator, ulong offset)
 {
     return curandSetGeneratorOffset(generator, offset);
 }
Example #39
0
 public curandStatus GenerateUniformDouble(RandGenerator generator, IntPtr outputPtr, SizeT n)
 {
     return(curandGenerateUniformDouble(generator, outputPtr, n));
 }
Example #40
0
 public curandStatus SetGeneratorOrdering(RandGenerator generator, curandOrdering order)
 {
     return curandSetGeneratorOrdering(generator, order);
 }
Example #41
0
 public curandStatus GenerateNormal(RandGenerator generator, IntPtr outputPtr, SizeT n, float mean, float stddev)
 {
     return(curandGenerateNormal(generator, outputPtr, n, mean, stddev));
 }
Example #42
0
 public curandStatus SetQuasiRandomGeneratorDimensions(RandGenerator generator, uint num_dimensions)
 {
     return curandSetQuasiRandomGeneratorDimensions(generator, num_dimensions);
 }
Example #43
0
 public curandStatus GenerateSeeds(RandGenerator generator)
 {
     return(curandGenerateSeeds(generator));
 }
Example #44
0
 public curandStatus SetStream(RandGenerator generator, CUstream stream)
 {
     return curandSetStream(generator, stream);
 }
Example #45
0
 public curandStatus SetGeneratorOrdering(RandGenerator generator, curandOrdering order)
 {
     return(curandSetGeneratorOrdering(generator, order));
 }
Example #46
0
 private static extern curandStatus curandCreateGeneratorHost(ref RandGenerator generator, curandRngType rng_type);
Example #47
0
 public curandStatus SetStream(RandGenerator generator, CUstream stream)
 {
     return(curandSetStream(generator, stream));
 }
Example #48
0
 private static extern curandStatus curandCreateGeneratorHost(ref RandGenerator generator, curandRngType rng_type);