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

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

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

__global  double op(double d1,double d2,double *params) {
   return d2 - d1;
}

extern "C"
__kernel void sub_scalar_double(int n, int idx,double dx,double *dy,int incy,double *params,double *result) {
       transform(n,idx,dx,dy,incy,params,result);
 }






© 2015 - 2025 Weber Informatics LLC | Privacy Policy