blob: d2b83061a1d4bef3641d8b69dc04ca387a897b4d [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
surmeh01bceff2f2018-03-29 16:29:27 +01002// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
surmeh01bceff2f2018-03-29 16:29:27 +01004//
5#include "../InferenceTest.hpp"
6#include "../MnistDatabase.hpp"
7#include "armnnTfParser/ITfParser.hpp"
8
9int main(int argc, char* argv[])
10{
11 armnn::TensorShape inputTensorShape({ 1, 784, 1, 1 });
surmeh013537c2c2018-05-18 16:31:43 +010012
13 int retVal = EXIT_FAILURE;
14 try
15 {
telsoa01c577f2c2018-08-31 09:22:23 +010016 using DataType = float;
17 using DatabaseType = MnistDatabase;
18 using ParserType = armnnTfParser::ITfParser;
19 using ModelType = InferenceModel<ParserType, DataType>;
20
surmeh013537c2c2018-05-18 16:31:43 +010021 // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
telsoa01c577f2c2018-08-31 09:22:23 +010022 retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType, ParserType>(
surmeh013537c2c2018-05-18 16:31:43 +010023 argc, argv, "simple_mnist_tf.prototxt", false,
24 "Placeholder", "Softmax", { 0, 1, 2, 3, 4 },
telsoa01c577f2c2018-08-31 09:22:23 +010025 [](const char* dataDir, const ModelType&) {
26 return DatabaseType(dataDir, true);
27 },
surmeh013537c2c2018-05-18 16:31:43 +010028 &inputTensorShape);
29 }
30 catch (const std::exception& e)
31 {
32 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
33 // exception of type std::length_error.
34 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
35 std::cerr << "WARNING: TfMnist-Armnn: An error has occurred when running "
36 "the classifier inference tests: " << e.what() << std::endl;
37 }
38 return retVal;
surmeh01bceff2f2018-03-29 16:29:27 +010039}