blob: ff604a7ade93f0f2a62a797cc4d915498adde9d1 [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(RefJsonPrinter)
BOOST_AUTO_TEST_CASE(SoftmaxProfilerJsonPrinterCpuRefTest)
{
std::vector<armnn::BackendId> backends = {armnn::Compute::CpuRef};
RunSoftmaxProfilerJsonPrinterTest(backends);
}
BOOST_AUTO_TEST_SUITE_END()