aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/tests/UtilsTest.hpp
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2023-07-07 11:25:57 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-07-20 08:48:15 +0000
commitebfdb5a1ea73c2269eec5af492970c2174ab7d0f (patch)
tree5c60d083100118f0a40e629dfa69b7a7373dd7fd /compute_kernel_writer/validation/tests/UtilsTest.hpp
parent29dc9fc1d3d6e90746ba1173e3318b774dcf7bed (diff)
downloadComputeLibrary-ebfdb5a1ea73c2269eec5af492970c2174ab7d0f.tar.gz
Integrate CLTensorArgument
- Add CLTensorArgument to query the components and storages as OpenCL variables (or by values when possible) - Add caching mechanism in CLTensorArgument to keep track of the components and storages used - Add unit tests Resolves COMPMID-5787 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Change-Id: Ib39e1f77b097e5b907a296fe6b0d41bb4bcd4ffc Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9908 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Reviewed-by: Jakub Sujak <jakub.sujak@arm.com>
Diffstat (limited to 'compute_kernel_writer/validation/tests/UtilsTest.hpp')
-rw-r--r--compute_kernel_writer/validation/tests/UtilsTest.hpp103
1 files changed, 0 insertions, 103 deletions
diff --git a/compute_kernel_writer/validation/tests/UtilsTest.hpp b/compute_kernel_writer/validation/tests/UtilsTest.hpp
deleted file mode 100644
index db1c8fd4ae..0000000000
--- a/compute_kernel_writer/validation/tests/UtilsTest.hpp
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * Copyright (c) 2023 Arm Limited.
- *
- * SPDX-License-Identifier: MIT
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-#ifndef COMPUTE_KERNEL_WRITER_TESTS_UTILSTEST_HPP
-#define COMPUTE_KERNEL_WRITER_TESTS_UTILSTEST_HPP
-
-#include "ckw/TensorInfo.h"
-#include "common/Common.h"
-#include "src/TensorUtils.h"
-
-#include <vector>
-
-namespace ckw
-{
-class UtilsTest : public ITest
-{
-public:
- UtilsTest()
- {
- _layout.push_back(TensorDataLayout::Nhwc);
- _layout.push_back(TensorDataLayout::Nhwc);
- _layout.push_back(TensorDataLayout::Nhwc);
- _layout.push_back(TensorDataLayout::Nhwc);
- _layout.push_back(TensorDataLayout::Ndhwc);
- _layout.push_back(TensorDataLayout::Ndhwc);
- _layout.push_back(TensorDataLayout::Ndhwc);
- _layout.push_back(TensorDataLayout::Ndhwc);
- _layout.push_back(TensorDataLayout::Ndhwc);
-
- _component.push_back(TensorDataLayoutComponent::N);
- _component.push_back(TensorDataLayoutComponent::H);
- _component.push_back(TensorDataLayoutComponent::W);
- _component.push_back(TensorDataLayoutComponent::C);
- _component.push_back(TensorDataLayoutComponent::N);
- _component.push_back(TensorDataLayoutComponent::D);
- _component.push_back(TensorDataLayoutComponent::H);
- _component.push_back(TensorDataLayoutComponent::W);
- _component.push_back(TensorDataLayoutComponent::C);
-
- _expected.push_back(TensorComponent::Dim3);
- _expected.push_back(TensorComponent::Dim2);
- _expected.push_back(TensorComponent::Dim1);
- _expected.push_back(TensorComponent::Dim0);
- _expected.push_back(TensorComponent::Dim4);
- _expected.push_back(TensorComponent::Dim3);
- _expected.push_back(TensorComponent::Dim2);
- _expected.push_back(TensorComponent::Dim1);
- _expected.push_back(TensorComponent::Dim0);
- }
-
- bool run() override
- {
- // The status of this variable can change in VALIDATE_TEST()
- bool all_tests_passed = true;
-
- VALIDATE_ON_MSG(_layout.size() == _component.size(), "The number of layouts and components does not match");
- VALIDATE_ON_MSG(_layout.size() == _expected.size(),
- "The number of layouts and expected outputs does not match");
- const size_t num_tests = _layout.size();
- for(size_t i = 0; i < num_tests; ++i)
- {
- const TensorDataLayout layout = _layout[i];
- const TensorDataLayoutComponent component = _component[i];
- const TensorComponent expected = _expected[i];
- const TensorComponent out = get_tensor_dimension(layout, component);
- VALIDATE_TEST(out == expected, all_tests_passed, i);
- }
- return all_tests_passed;
- }
-
- std::string name() override
- {
- return "UtilsTest";
- }
-
-private:
- std::vector<TensorDataLayout> _layout{};
- std::vector<TensorDataLayoutComponent> _component{};
- std::vector<TensorComponent> _expected{};
-};
-} // namespace ckw
-
-#endif /* COMPUTE_KERNEL_WRITER_TESTS_UTILSTEST_HPP */