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

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

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


__device__ float op(float d1,float *params) {
        return cosf(d1);
}

extern "C"
__global__ void cos_strided_float(int n,int idx,float *dy,int incy,float *params,float *result) {
       transform(n,idx,dy,incy,params,result);

 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy