ArmNN
 20.02
CaffeCifar10AcrossChannels-Armnn.cpp File Reference

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 9 of file CaffeCifar10AcrossChannels-Armnn.cpp.

10 {
11  int retVal = EXIT_FAILURE;
12  try
13  {
14  using DataType = float;
15  using DatabaseType = Cifar10Database;
16  using ParserType = armnnCaffeParser::ICaffeParser;
17  using ModelType = InferenceModel<ParserType, DataType>;
18 
19  // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
20  retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType, ParserType>(
21  argc, argv, "cifar10_full_iter_60000.caffemodel", true, "data", "prob",
22  { 0, 1, 2, 4, 7 },
23  [](const char* dataDir, const ModelType&) {
24  return DatabaseType(dataDir);
25  });
26  }
27  catch (const std::exception& e)
28  {
29  // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
30  // exception of type std::length_error.
31  // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
32  std::cerr << "WARNING: CaffeCifar10AcrossChannels-Armnn: An error has occurred when running "
33  "the classifier inference tests: " << e.what() << std::endl;
34  }
35  return retVal;
36 }
DataType
Definition: Types.hpp:32