blob: 5eaf2ef7ac23a9c359780fe2dab9186549b98097 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// 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{
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}