ArmNN
 21.02
BackendIdTests.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include <armnn/BackendId.hpp>
7 #include <armnn/Types.hpp>
8 
9 #include <boost/test/unit_test.hpp>
10 
11 using namespace armnn;
12 
13 BOOST_AUTO_TEST_SUITE(BackendIdTests)
14 
15 BOOST_AUTO_TEST_CASE(CreateBackendIdFromCompute)
16 {
17  BackendId fromCompute{Compute::GpuAcc};
18  BOOST_TEST(fromCompute.Get() == GetComputeDeviceAsCString(Compute::GpuAcc));
19 }
20 
21 BOOST_AUTO_TEST_CASE(CreateBackendIdVectorFromCompute)
22 {
23  std::vector<BackendId> fromComputes = {Compute::GpuAcc, Compute::CpuRef};
24  BOOST_TEST(fromComputes[0].Get() == GetComputeDeviceAsCString(Compute::GpuAcc));
25  BOOST_TEST(fromComputes[1].Get() == GetComputeDeviceAsCString(Compute::CpuRef));
26 }
27 
BOOST_AUTO_TEST_SUITE(TensorflowLiteParser)
CPU Execution: Reference C++ kernels.
Copyright (c) 2021 ARM Limited and Contributors.
constexpr char const * GetComputeDeviceAsCString(Compute compute)
Deprecated function that will be removed together with the Compute enum.
Definition: BackendId.hpp:34
GPU Execution: OpenCL: ArmCompute.
BOOST_AUTO_TEST_CASE(CheckConvolution2dLayer)
BOOST_AUTO_TEST_SUITE_END()