From 247f52cfe337f7b2542b900e3d8cf122e9d4f11c Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Thu, 22 Mar 2018 11:24:56 +0000 Subject: COMPMID-1013 - Create WinogradInfo data structure COMPMID-1014 - Refactoring Winograd's dataset Change-Id: I6abdcbf9a90d663f4db666cd410afece9f1d034d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/125899 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- tests/datasets/WinogradFilterTransformDataset.h | 128 ------------------------ 1 file changed, 128 deletions(-) delete mode 100644 tests/datasets/WinogradFilterTransformDataset.h (limited to 'tests/datasets/WinogradFilterTransformDataset.h') diff --git a/tests/datasets/WinogradFilterTransformDataset.h b/tests/datasets/WinogradFilterTransformDataset.h deleted file mode 100644 index 07d0283b55..0000000000 --- a/tests/datasets/WinogradFilterTransformDataset.h +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Copyright (c) 2018 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 ARM_COMPUTE_TEST_WINOGRAD_FILTER_TRANSFORM_DATASET -#define ARM_COMPUTE_TEST_WINOGRAD_FILTER_TRANSFORM_DATASET - -#include "utils/TypePrinter.h" - -#include "arm_compute/core/TensorShape.h" - -namespace arm_compute -{ -namespace test -{ -namespace datasets -{ -class WinogradFilterTransformDataset -{ -public: - using type = std::tuple; - - struct iterator - { - iterator(std::vector::const_iterator a_it, - std::vector::const_iterator is_nchw_it) - : _a_it{ std::move(a_it) }, - _is_nchw_it{ std::move(is_nchw_it) } - { - } - - std::string description() const - { - std::stringstream description; - description << "Input=" << *_a_it << ":"; - description << "IsNCHW=" << *_is_nchw_it << ":"; - return description.str(); - } - - WinogradFilterTransformDataset::type operator*() const - { - return std::make_tuple(*_a_it, *_is_nchw_it); - } - - iterator &operator++() - { - ++_a_it; - ++_is_nchw_it; - - return *this; - } - - private: - std::vector::const_iterator _a_it; - std::vector::const_iterator _is_nchw_it; - }; - - iterator begin() const - { - return iterator(_a_shapes.begin(), _is_nchw.begin()); - } - - int size() const - { - return std::min(_a_shapes.size(), _is_nchw.size()); - } - - void add_config(TensorShape a, bool is_nchw) - { - _a_shapes.emplace_back(std::move(a)); - _is_nchw.emplace_back(std::move(is_nchw)); - } - -protected: - WinogradFilterTransformDataset() = default; - WinogradFilterTransformDataset(WinogradFilterTransformDataset &&) = default; - -private: - std::vector _a_shapes{}; - std::vector _is_nchw{}; -}; - -class SmallWinogradFilterTransformDataset final : public WinogradFilterTransformDataset -{ -public: - SmallWinogradFilterTransformDataset() - { - add_config(TensorShape(3U, 3U, 7U, 4U), true); - add_config(TensorShape(3U, 3U, 4U, 13U), true); - add_config(TensorShape(3U, 3U, 9U, 2U), true); - add_config(TensorShape(3U, 3U, 3U, 5U), true); - } -}; - -class LargeWinogradFilterTransformDataset final : public WinogradFilterTransformDataset -{ -public: - LargeWinogradFilterTransformDataset() - { - add_config(TensorShape(3U, 3U, 32U, 64U), true); - add_config(TensorShape(3U, 3U, 51U, 13U), true); - add_config(TensorShape(3U, 3U, 53U, 47U), true); - add_config(TensorShape(3U, 3U, 128U, 384U), true); - } -}; -} // namespace datasets -} // namespace test -} // namespace arm_compute -#endif /* ARM_COMPUTE_TEST_WINOGRAD_FILTER_TRANSFORM_DATASET */ -- cgit v1.2.1