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

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

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

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

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


/**
 An op on the device
 @param d1 the first operator
 @param d2 the second operator
*/
__global  float op(float d1,float d2,float *extraParams) {
      return op(d1,extraParams);
}
//an op for the kernel
__global  float op(float d1,float *extraParams) {
       float mean = extraParams[1];
       float curr = (d1 - mean);
       return  curr;

}

//post process result (for things like means etc)
__global  float postProcess(float reduction,int n,int xOffset,float *dx,int incx,float *extraParams,float *result) {
          return reduction;
}

extern "C"
__kernel void bias_strided_float(int n, int xOffset,float *dx,int incx,float *extraParams,float *result) {
              transform(n,xOffset,dx,incx,extraParams,result);

 }






© 2015 - 2025 Weber Informatics LLC | Privacy Policy