aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/test/ClJsonPrinterTests.cpp
blob: f0b4b7acaebb079032be336da09ad7d010a2ba17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include <armnn/BackendId.hpp>

#include <backends/cl/test/ClContextControlFixture.hpp>
#include <backends/test/JsonPrinterTestImpl.hpp>

#include <boost/test/unit_test.hpp>

#include <vector>

BOOST_FIXTURE_TEST_SUITE(ClJsonPrinter, ClProfilingContextControlFixture)

BOOST_AUTO_TEST_CASE(SoftmaxProfilerJsonPrinterGpuAccTest)
{
    std::vector<armnn::BackendId> backends = {armnn::Compute::GpuAcc};
    SetupSoftmaxProfilerWithSpecifiedBackendsAndValidateJsonPrinterResult(backends);
}

BOOST_AUTO_TEST_SUITE_END()