CUDA Networks
|
Implementation of the sigmoid derivative function for matrices. More...
Go to the source code of this file.
Functions | |
__global__ void | sigmoidDerivativeKernel (const double *input, double *output, int size) |
CUDA kernel for applying the sigmoid derivative function element-wise. More... | |
Implementation of the sigmoid derivative function for matrices.
Definition in file matrix_sigmoid_derivative.cu.
__global__ void sigmoidDerivativeKernel | ( | const double * | input, |
double * | output, | ||
int | size | ||
) |
CUDA kernel for applying the sigmoid derivative function element-wise.
input | Pointer to the input matrix data. |
output | Pointer to the output matrix data. |
size | Total number of elements in the matrix. |
Definition at line 15 of file matrix_sigmoid_derivative.cu.