From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/_backend_id_tests_8cpp_source.xhtml | 123 ++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 21.02/_backend_id_tests_8cpp_source.xhtml (limited to '21.02/_backend_id_tests_8cpp_source.xhtml') diff --git a/21.02/_backend_id_tests_8cpp_source.xhtml b/21.02/_backend_id_tests_8cpp_source.xhtml new file mode 100644 index 0000000000..b5e09a9939 --- /dev/null +++ b/21.02/_backend_id_tests_8cpp_source.xhtml @@ -0,0 +1,123 @@ + + + + + + + + + + + + + +ArmNN: src/backends/backendsCommon/test/BackendIdTests.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + 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()
+ +
+
+ + + + -- cgit v1.2.1