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

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

#include "transform.h"

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

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