Compute Library
 19.05
neon_cnn.cpp File Reference

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 Main program for cnn test. More...
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Main program for cnn test.

The example implements the following CNN architecture:

Input -> conv0:5x5 -> act0:relu -> pool:2x2 -> conv1:3x3 -> act1:relu -> pool:2x2 -> fc0 -> act2:relu -> softmax

Parameters
[in]argcNumber of arguments
[in]argvArguments

Definition at line 286 of file neon_cnn.cpp.

287 {
288  return utils::run_example<NEONCNNExample>(argc, argv);
289 }