blob: a8d90fd5095683d2780ddb31a8568104a84b57e5 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include <armnn/BackendId.hpp>
#include <backendsCommon/test/JsonPrinterTestImpl.hpp>
#include <boost/test/unit_test.hpp>
#include <vector>
BOOST_AUTO_TEST_SUITE(NeonJsonPrinter)
BOOST_AUTO_TEST_CASE(SoftmaxProfilerJsonPrinterCpuAccTest)
{
std::vector<armnn::BackendId> backends = {armnn::Compute::CpuAcc};
RunSoftmaxProfilerJsonPrinterTest(backends);
}
BOOST_AUTO_TEST_SUITE_END()