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

kernels.double.gt_strided.kh Maven / Gradle / Ivy

#include "pairwise_transform.h"

__global  double op(double d1,double d2,double *params) {
   if(d1 > d2) return 1;
    else return 0;
 }
__global  double op(double d1,double *params) {
   return d1;
}

extern "C"
__kernel void gt_strided_double(int n,int xOffset,int yOffset, double *dx, double *dy,int incx,int incy,double *params,double *result) {
    transform(n,xOffset,yOffset,dx,dy,incx,incy,params,result);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy