From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...caffe_cifar10_across_channels-_armnn_8cpp.xhtml | 161 --------------------- 1 file changed, 161 deletions(-) delete mode 100644 Documentation/_caffe_cifar10_across_channels-_armnn_8cpp.xhtml (limited to 'Documentation/_caffe_cifar10_across_channels-_armnn_8cpp.xhtml') diff --git a/Documentation/_caffe_cifar10_across_channels-_armnn_8cpp.xhtml b/Documentation/_caffe_cifar10_across_channels-_armnn_8cpp.xhtml deleted file mode 100644 index 9b85eaca54..0000000000 --- a/Documentation/_caffe_cifar10_across_channels-_armnn_8cpp.xhtml +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - -ArmNN: tests/CaffeCifar10AcrossChannels-Armnn/CaffeCifar10AcrossChannels-Armnn.cpp File Reference - - - - - - - - - - - - - - - - -
-
- - - - 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
- -
-
-
-
-
- - - - -- cgit v1.2.1