blob: 6a27e8c6c7793a7073f9cdabb14c420c51994607 [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};
20 SetupSoftmaxProfilerWithSpecifiedBackendsAndValidateJsonPrinterResult(backends);
21}
22
23BOOST_AUTO_TEST_SUITE_END()