summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/ExportPTX/kernelB.cu
blob: be4613a068f53d31ccb247285fd49e408530d45d (plain)
1
2
3
4
5
6
7
8
9
10
11

#ifndef CUDA_PTX_COMPILATION
#  error "CUDA_PTX_COMPILATION define not provided"
#endif

__global__ void kernelB(float* r, float* x, float* y, float* z, int size)
{
  for (int i = threadIdx.x; i < size; i += blockDim.x) {
    r[i] = x[i] * y[i] + z[i];
  }
}