mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-05 17:34:21 +00:00
14 lines
294 B
Plaintext
14 lines
294 B
Plaintext
#ifndef ACTIVATIONS_H
|
|
#define ACTIVATIONS_H
|
|
|
|
namespace Kernels {
|
|
|
|
__global__ void
|
|
sigmoid(const float* __restrict__ src, float* __restrict__ dst, int len);
|
|
|
|
__global__ void
|
|
relu(const float* __restrict__ src, float* __restrict__ dst, int len);
|
|
|
|
} // namespace Kernels
|
|
|
|
#endif // ACTIVATIONS_H |