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

#include <armnn/BackendId.hpp>

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

#include <doctest/doctest.h>

#include <vector>

TEST_CASE_FIXTURE(ClProfilingContextControlFixture, "SoftmaxProfilerJsonPrinterGpuAccTest")
{
    std::vector<armnn::BackendId> backends = {armnn::Compute::GpuAcc};
    RunSoftmaxProfilerJsonPrinterTest(backends);

}