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

kernels.complex.double.norm2.cu Maven / Gradle / Ivy

There is a newer version: 0.4-rc3.7
Show newest version
extern "C"
#include 
#include 

__global__ void norm2_strided_double(int n, int xOffset,double *dx,int incx,double result) {
        for (int i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
                          if(i >= xOffset && i % incx == 0)
                                result += pow(dx[i],2);
             }

 }






© 2015 - 2024 Weber Informatics LLC | Privacy Policy