AIfES 2 2.0.0
ailayer_sigmoid.h
Go to the documentation of this file.
1
40#ifndef SIGMOID_LAYER
41#define SIGMOID_LAYER
42
43#include "core/aifes_core.h"
44
46
58
69 void (*sigmoid)(const aitensor_t *x, aitensor_t *result);
70
81 void (*d_sigmoid)(const aitensor_t *sigmoid_x, aitensor_t *result);
82
90 void (*multiply)(const aitensor_t *a, const aitensor_t *b, aitensor_t *result);
91
93};
94
101
114
136
161
172
173#ifdef AIDEBUG_PRINT_MODULE_SPECS
180#endif // AIDEBUG_PRINT_MODULE_SPECS
181
182#endif // SIGMOID_LAYER
AIfES 2 core interface.
const aicore_layertype_t * ailayer_sigmoid_type
Sigmoid layer type.
void ailayer_sigmoid_backward(ailayer_t *self)
Calculate the backward pass for the given Sigmoid layer.
ailayer_t * ailayer_sigmoid(ailayer_sigmoid_t *layer, ailayer_t *input_layer)
Initialize and connect the given Sigmoid layer.
void ailayer_sigmoid_print_specs(const ailayer_t *self)
Print the layer specification.
void ailayer_sigmoid_forward(ailayer_t *self)
Calculate the forward pass for given Sigmoid layer.
void ailayer_sigmoid_calc_result_shape(ailayer_t *self)
Calculate the shape of the result tensor.
Type indicator of the layer.
Definition: aifes_core.h:82
General Sigmoid layer struct.
Definition: ailayer_sigmoid.h:50
void(* sigmoid)(const aitensor_t *x, aitensor_t *result)
Required math function: Sigmoid.
Definition: ailayer_sigmoid.h:69
void(* multiply)(const aitensor_t *a, const aitensor_t *b, aitensor_t *result)
Required math function: Element wise tensor multiplication.
Definition: ailayer_sigmoid.h:90
void(* d_sigmoid)(const aitensor_t *sigmoid_x, aitensor_t *result)
Required math function: Derivative of sigmoid.
Definition: ailayer_sigmoid.h:81
ailayer_t base
Inherited field members from general ailayer struct.
Definition: ailayer_sigmoid.h:51
const aimath_dtype_t * dtype
Data type of the input and inference result values.
Definition: ailayer_sigmoid.h:52
AIfES layer interface.
Definition: aifes_core.h:252
Indicator for the used datatype.
Definition: aifes_math.h:47
A tensor in AIfES.
Definition: aifes_math.h:92