![]() |
Neuron Net
|
Describes the feed forward process for the Neuron of pooling layer. More...
Macros | |
#define | def_k_FeedForwardProof 5 |
Index of the kernel of the Pooling neuron for Feed forward process (FeedForwardProof) More... | |
#define | def_k_ffp_matrix_i 0 |
Inputs tesor. More... | |
#define | def_k_ffp_matrix_o 1 |
Output tensor. More... | |
#define | def_k_ffp_inputs 2 |
Number of inputs. More... | |
#define | def_k_ffp_window 3 |
Size of input window. More... | |
#define | def_k_ffp_step 4 |
Step size. More... | |
Functions | |
__kernel void | FeedForwardProof (__global double *matrix_i, __global double *matrix_o, int inputs, int window, int step) |
Kernel of the Pooling neuron for Feed forward process (CNeuronProofOCL) More... | |
Describes the feed forward process for the Neuron of pooling layer.
#define def_k_FeedForwardProof 5 |
Index of the kernel of the Pooling neuron for Feed forward process (FeedForwardProof)
Definition at line 148 of file NeuroNet.mqh.
#define def_k_ffp_inputs 2 |
Number of inputs.
Definition at line 151 of file NeuroNet.mqh.
#define def_k_ffp_matrix_i 0 |
Inputs tesor.
Definition at line 149 of file NeuroNet.mqh.
#define def_k_ffp_matrix_o 1 |
Output tensor.
Definition at line 150 of file NeuroNet.mqh.
#define def_k_ffp_step 4 |
Step size.
Definition at line 153 of file NeuroNet.mqh.
#define def_k_ffp_window 3 |
Size of input window.
Definition at line 152 of file NeuroNet.mqh.
__kernel void FeedForwardProof | ( | __global double * | matrix_i, |
__global double * | matrix_o, | ||
int | inputs, | ||
int | window, | ||
int | step | ||
) |
Kernel of the Pooling neuron for Feed forward process (CNeuronProofOCL)
[in] | matrix_i | Inputs tesor |
[out] | matrix_o | Output tensor |
inputs | Number of inputs | |
window | Size of input window | |
step | Step size |
Definition at line 276 of file NeuroNet.cl.