blob: 6213c145ba75903023730b857a19122d9786f5ce [file] [log] [blame]
Aron Virginas-Tar70104002018-10-24 15:33:28 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include <armnn/BackendId.hpp>
7
8#include <backends/test/JsonPrinterTestImpl.hpp>
9
10#include <boost/test/unit_test.hpp>
11
12#include <vector>
13
14BOOST_AUTO_TEST_SUITE(NeonJsonPrinter)
15
16BOOST_AUTO_TEST_CASE(SoftmaxProfilerJsonPrinterCpuAccTest)
17{
18 std::vector<armnn::BackendId> backends = {armnn::Compute::CpuAcc};
19 SetupSoftmaxProfilerWithSpecifiedBackendsAndValidateJsonPrinterResult(backends);
20}
21
22BOOST_AUTO_TEST_SUITE_END()