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

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

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


__global  double update(double old,double opOutput,double *extraParams) {
	return opOutput + old;
}


__global  double merge(double old,double opOutput,double *extraParams) {
	return opOutput + old;
}

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


__global  double postProcess(double reduction,int n,int xOffset,double *dx,int incx,double *params,double *result) {
	return reduction;
}


extern "C"
__kernel void sum_strided_double(int n, int xOffset,double *dx,int incx,double *params,double *result) {
	transform(n,xOffset,dx,incx,params,result);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy