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

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

#include "scalar.h"
//scalar and current element
__global  float op(float d1,float d2,float *params) {
   return d1 - d2;
}

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy