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

#include <armnn/BackendId.hpp>

#include <backends/test/JsonPrinterTestImpl.hpp>

#include <boost/test/unit_test.hpp>

#include <vector>

BOOST_AUTO_TEST_SUITE(NeonJsonPrinter)

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

BOOST_AUTO_TEST_SUITE_END()