blob: 1ca8429bd2d9961441bf3582d248782b5050e833 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
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{
telsoa01c577f2c2018-08-31 09:22:23 +010011 return armnn::test::ClassifierInferenceTestMain<CaffePreprocessor, armnnCaffeParser::ICaffeParser>(
telsoa014fcda012018-03-09 14:13:49 +000012 argc, argv, "squeezenet.caffemodel", true,
13 "data", "output", { 0 },
telsoa01c577f2c2018-08-31 09:22:23 +010014 [](const char* dataDir) { return CaffePreprocessor(dataDir); });
telsoa014fcda012018-03-09 14:13:49 +000015}