blob: 5625f4c055ca4b2c9def3654e365603d8aad2e57 [file] [log] [blame]
surmeh01bceff2f2018-03-29 16:29:27 +01001//
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"
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 });
12 return armnn::test::ClassifierInferenceTestMain<MnistDatabase, armnnTfParser::ITfParser>(
13 argc, argv, "simple_mnist_tf.prototxt", false,
14 "Placeholder", "Softmax", { 0, 1, 2, 3, 4 },
15 [](const char* dataDir) { return MnistDatabase(dataDir, true); },
16 &inputTensorShape);
17}