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

kernels.float.eq_strided.kh Maven / Gradle / Ivy

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


__global  float op(float d1,float d2,float *params) {
      return d1 != d2;
}
__global  float op(float d1,float *params) {
         return d1;
}

extern "C"
__kernel void eq_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 - 2025 Weber Informatics LLC | Privacy Policy