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

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

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

extern "C"
__kernel void rdiv_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