CUDA Networks
neural_network_destructor.cu
Go to the documentation of this file.
1 /**
2  * @file neural_network_destructor.cu
3  * @brief Implementation of the NeuralNetwork destructor.
4  */
5 
6 #include "neural_network.h"
7 
9  // The destructor for Matrix and Vector objects will be called automatically
10  // to free the GPU memory
11 }
~NeuralNetwork()
Destroy the NeuralNetwork object.
Defines the NeuralNetwork class for a simple feedforward neural network.