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

kernels.double.setrange_strided.cu Maven / Gradle / Ivy

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


__device__ double op(double d1,double *params) {
       double min = params[0];
       double max = params[1];
    if(d1 >= min && d1 <= max)
               return d1;
           if(min == 0 && max == 1) {
               double val = 1 / (1 + exp(-d1));
               return (floor(val * (max - min)) + min);
           }

           double ret =  (floor(d1 * (max - min)) + min);
           return ret;
     
}

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

 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy