From 6eb19b944949438d8c960c73d68ac9b224d626ef Mon Sep 17 00:00:00 2001 From: John Richardson Date: Wed, 6 Jun 2018 11:28:18 +0100 Subject: COMPMID-761: Add CL/NEON GaussianPyramid benchmark tests Change-Id: I5111d5c54ed72c31cb948081596aa3d4b0541d7d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/134625 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- tests/benchmark/CL/GaussianPyramid.cpp | 66 ++++++++++++++++++ tests/benchmark/NEON/GaussianPyramid.cpp | 66 ++++++++++++++++++ tests/benchmark/fixtures/GaussianPyramidFixture.h | 82 +++++++++++++++++++++++ 3 files changed, 214 insertions(+) create mode 100644 tests/benchmark/CL/GaussianPyramid.cpp create mode 100644 tests/benchmark/NEON/GaussianPyramid.cpp create mode 100644 tests/benchmark/fixtures/GaussianPyramidFixture.h (limited to 'tests/benchmark') diff --git a/tests/benchmark/CL/GaussianPyramid.cpp b/tests/benchmark/CL/GaussianPyramid.cpp new file mode 100644 index 0000000000..2689847767 --- /dev/null +++ b/tests/benchmark/CL/GaussianPyramid.cpp @@ -0,0 +1,66 @@ +/* + * 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. + */ +#include "arm_compute/core/Types.h" +#include "arm_compute/runtime/CL/CLTensor.h" +#include "arm_compute/runtime/CL/functions/CLGaussianPyramid.h" +#include "tests/CL/CLAccessor.h" +#include "tests/benchmark/fixtures/GaussianPyramidFixture.h" +#include "tests/datasets/BorderModeDataset.h" +#include "tests/datasets/ShapeDatasets.h" +#include "tests/framework/Macros.h" +#include "tests/framework/datasets/Datasets.h" +#include "utils/TypePrinter.h" + +namespace arm_compute +{ +namespace test +{ +namespace benchmark +{ +TEST_SUITE(CL) +TEST_SUITE(GaussianPyramid) +TEST_SUITE(Half) + +using CLGaussianPyramidFixture = GaussianPyramidHalfFixture; + +// *INDENT-OFF* +// clang-format off +REGISTER_FIXTURE_DATA_TEST_CASE(RunSmall, CLGaussianPyramidFixture, framework::DatasetMode::PRECOMMIT, + combine( + datasets::Medium2DShapes(), + datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 4)); + +REGISTER_FIXTURE_DATA_TEST_CASE(RunLarge, CLGaussianPyramidFixture, framework::DatasetMode::NIGHTLY, + combine( + datasets::Large2DShapes(), + datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 5)); +// clang-format on +// *INDENT-ON* + +TEST_SUITE_END() // Half +TEST_SUITE_END() // GaussianPyramid +TEST_SUITE_END() // CL +} // namespace benchmark +} // namespace test +} // namespace arm_compute diff --git a/tests/benchmark/NEON/GaussianPyramid.cpp b/tests/benchmark/NEON/GaussianPyramid.cpp new file mode 100644 index 0000000000..a62819f25f --- /dev/null +++ b/tests/benchmark/NEON/GaussianPyramid.cpp @@ -0,0 +1,66 @@ +/* + * 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. + */ +#include "arm_compute/core/Types.h" +#include "arm_compute/runtime/NEON/functions/NEGaussianPyramid.h" +#include "arm_compute/runtime/Tensor.h" +#include "tests/NEON/Accessor.h" +#include "tests/benchmark/fixtures/GaussianPyramidFixture.h" +#include "tests/datasets/BorderModeDataset.h" +#include "tests/datasets/ShapeDatasets.h" +#include "tests/framework/Macros.h" +#include "tests/framework/datasets/Datasets.h" +#include "utils/TypePrinter.h" + +namespace arm_compute +{ +namespace test +{ +namespace benchmark +{ +TEST_SUITE(NEON) +TEST_SUITE(GaussianPyramid) +TEST_SUITE(Half) + +using NEGaussianPyramidFixture = GaussianPyramidHalfFixture; + +// *INDENT-OFF* +// clang-format off +REGISTER_FIXTURE_DATA_TEST_CASE(RunSmall, NEGaussianPyramidFixture, framework::DatasetMode::PRECOMMIT, + combine( + datasets::Medium2DShapes(), + datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 4)); + +REGISTER_FIXTURE_DATA_TEST_CASE(RunLarge, NEGaussianPyramidFixture, framework::DatasetMode::NIGHTLY, + combine( + datasets::Large2DShapes(), + datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 5)); +// clang-format on +// *INDENT-ON* + +TEST_SUITE_END() // Half +TEST_SUITE_END() // GaussianPyramid +TEST_SUITE_END() // NEON +} // namespace benchmark +} // namespace test +} // namespace arm_compute diff --git a/tests/benchmark/fixtures/GaussianPyramidFixture.h b/tests/benchmark/fixtures/GaussianPyramidFixture.h new file mode 100644 index 0000000000..0df7c1afb3 --- /dev/null +++ b/tests/benchmark/fixtures/GaussianPyramidFixture.h @@ -0,0 +1,82 @@ +/* + * 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_GAUSSIAN_PYRAMID_HALF_FIXTURE +#define ARM_COMPUTE_GAUSSIAN_PYRAMID_HALF_FIXTURE + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" +#include "tests/Globals.h" +#include "tests/Utils.h" +#include "tests/framework/Fixture.h" + +namespace arm_compute +{ +namespace test +{ +namespace benchmark +{ +template +class GaussianPyramidHalfFixture : public framework::Fixture +{ +public: + template + void setup(TensorShape shape, BorderMode border_mode, size_t num_levels) + { + const uint8_t constant_border_value = 0; + + // Create tensors + src = create_tensor(shape, DataType::U8); + PyramidInfo pyramid_info(num_levels, SCALE_PYRAMID_HALF, shape, Format::U8); + pyramid.init(pyramid_info); + + // Configure function + gaussian_pyramid_func.configure(&src, &pyramid, border_mode, constant_border_value); + + // Allocate input tensor and pyramid + src.allocator()->allocate(); + pyramid.allocate(); + + // Fill tensor + library->fill_tensor_uniform(Accessor(src), 0); + } + + void run() + { + gaussian_pyramid_func.run(); + } + + void sync() + { + sync_if_necessary(); + } + +private: + TensorType src{}; + PyramidType pyramid{}; + Function gaussian_pyramid_func{}; +}; +} // namespace benchmark +} // namespace test +} // namespace arm_compute +#endif /* ARM_COMPUTE_GAUSSIAN_PYRAMID_HALF_FIXTURE */ -- cgit v1.2.1