blob: c41d0443a9fe8cba2a40fbc188789eeedaac503c [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
telsoa014fcda012018-03-09 14:13:49 +00002// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#include "../InferenceTest.hpp"
telsoa01c577f2c2018-08-31 09:22:23 +01006#include "../CaffePreprocessor.hpp"
telsoa014fcda012018-03-09 14:13:49 +00007#include "armnnCaffeParser/ICaffeParser.hpp"
8
9int main(int argc, char* argv[])
10{
surmeh013537c2c2018-05-18 16:31:43 +010011 int retVal = EXIT_FAILURE;
12 try
telsoa014fcda012018-03-09 14:13:49 +000013 {
surmeh013537c2c2018-05-18 16:31:43 +010014 // Coverity fix: The following code may throw an exception of type std::length_error.
15 std::vector<ImageSet> imageSet =
16 {
17 {"shark.jpg", 3694}
18 };
19
telsoa01c577f2c2018-08-31 09:22:23 +010020 using DataType = float;
21 using DatabaseType = CaffePreprocessor;
22 using ParserType = armnnCaffeParser::ICaffeParser;
23 using ModelType = InferenceModel<ParserType, DataType>;
24
surmeh013537c2c2018-05-18 16:31:43 +010025 // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
telsoa01c577f2c2018-08-31 09:22:23 +010026 retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType, ParserType>(
surmeh013537c2c2018-05-18 16:31:43 +010027 argc, argv, "Inception-BN-batchsize1.caffemodel", true,
28 "data", "softmax", { 0 },
telsoa01c577f2c2018-08-31 09:22:23 +010029 [&imageSet](const char* dataDir, const ModelType&) {
30 return DatabaseType(dataDir, 224, 224, imageSet);
31 });
surmeh013537c2c2018-05-18 16:31:43 +010032 }
33 catch (const std::exception& e)
34 {
35 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
36 // exception of type std::length_error.
37 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
38 std::cerr << "WARNING: CaffeInception_BN-Armnn: An error has occurred when running "
39 "the classifier inference tests: " << e.what() << std::endl;
40 }
41 return retVal;
telsoa014fcda012018-03-09 14:13:49 +000042}