blob: d188a8e9f4e3d543b62a7afa7f8c6257c6f430db [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 <cl/test/ClContextControlFixture.hpp>
9#include <backendsCommon/test/JsonPrinterTestImpl.hpp>
Aron Virginas-Tar70104002018-10-24 15:33:28 +010010
11#include <boost/test/unit_test.hpp>
12
13#include <vector>
14
15BOOST_FIXTURE_TEST_SUITE(ClJsonPrinter, ClProfilingContextControlFixture)
16
17BOOST_AUTO_TEST_CASE(SoftmaxProfilerJsonPrinterGpuAccTest)
18{
19 std::vector<armnn::BackendId> backends = {armnn::Compute::GpuAcc};
Aron Virginas-Tar69362cc2018-11-22 15:04:42 +000020 RunSoftmaxProfilerJsonPrinterTest(backends);
Aron Virginas-Tar70104002018-10-24 15:33:28 +010021}
22
23BOOST_AUTO_TEST_SUITE_END()