blob: a8d90fd5095683d2780ddb31a8568104a84b57e5 [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
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +00008#include <backendsCommon/test/JsonPrinterTestImpl.hpp>
Aron Virginas-Tar70104002018-10-24 15:33:28 +01009
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};
Aron Virginas-Tar69362cc2018-11-22 15:04:42 +000019 RunSoftmaxProfilerJsonPrinterTest(backends);
Aron Virginas-Tar70104002018-10-24 15:33:28 +010020}
21
22BOOST_AUTO_TEST_SUITE_END()