All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kernels.float.binomial.cu Maven / Gradle / Ivy

There is a newer version: 0.4-rc3.7
Show newest version
#include 
#include 
__device__ float doBinomial(int n, float p, float *randomNumbers,curandGenerator_t s) {
  int x = 0;
  int tid = threadIdx.x + blockIdx.x * blockDim.x;

  for(int i = tid; i < n; i++) {
    if(randomNumbers[i]< p )
      x++;
  }
  return x;
}


extern "C"
__global__ void binomial_float(int len,int n,float *ps,float *randomNumbers,float *result, curandGenerator_t s) {
          int tid = threadIdx.x + blockIdx.x * blockDim.x;
          for(int i = tid; i < len; i += blockDim.x * gridDim.x) {
              result[i] = doBinomial(n,ps[i],randomNumbers,s);
          }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy