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

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

#include "transform.h"


__global  double op(double d1,double *params) {
        return pow(d1,params[0]);
}

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

 }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy