ANN  0.1.1.5
A library containing multiple neural network models written in C
batch.c File Reference
#include <stdlib.h>
#include "ANN/models/PCFNN/neuron.h"
#include "ANN/models/PCFNN/layer.h"
#include "ANN/models/PCFNN/network.h"
#include "ANN/models/PCFNN/batch.h"
+ Include dependency graph for batch.c:

Go to the source code of this file.

Functions

void PCFNN_NETWORK_init_batch (struct PCFNN_NETWORK *net)
 Initialize batch for the network net. More...
 
void PCFNN_NETWORK_free_batch (struct PCFNN_NETWORK *net)
 Free all memory allocation for the batch of the network net. More...
 
void PCFNN_NETWORK_clear_batch (struct PCFNN_NETWORK *net)
 Partially clear batch data of the network net. More...
 
void PCFNN_NETWORK_clear_batch_all (struct PCFNN_NETWORK *net)
 

Function Documentation

◆ PCFNN_NETWORK_clear_batch()

void PCFNN_NETWORK_clear_batch ( struct PCFNN_NETWORK net)

Partially clear batch data of the network net.

Clear all batch data of the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 38 of file batch.c.

◆ PCFNN_NETWORK_clear_batch_all()

void PCFNN_NETWORK_clear_batch_all ( struct PCFNN_NETWORK net)

Definition at line 52 of file batch.c.

◆ PCFNN_NETWORK_free_batch()

void PCFNN_NETWORK_free_batch ( struct PCFNN_NETWORK net)

Free all memory allocation for the batch of the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 23 of file batch.c.

◆ PCFNN_NETWORK_init_batch()

void PCFNN_NETWORK_init_batch ( struct PCFNN_NETWORK net)

Initialize batch for the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 9 of file batch.c.