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

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

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

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

extern "C"
__global__ void div_strided_float(int n,int xOffset,int yOffset, float *dx, float *dy,int incx,int incy,float *params,float *result) {
    transform(n,xOffset,yOffset,dx,dy,incx,incy,params,result);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy