aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures
diff options
context:
space:
mode:
authorJohn Richardson <john.richardson@arm.com>2018-06-06 14:08:58 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:52:54 +0000
commitd226d8dd6599b16ebbb22f4930abb49798ec811b (patch)
treed27cb357b2a36a8eff8494b2fe5762946b97dba2 /tests/benchmark/fixtures
parent6eb19b944949438d8c960c73d68ac9b224d626ef (diff)
downloadComputeLibrary-d226d8dd6599b16ebbb22f4930abb49798ec811b.tar.gz
COMPMID-761: Add CL/NEON LaplacianReconstruct benchmark tests
Change-Id: I21d94d83e2bcde6c992c2425a1b8cc6f60a1d12a Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/134757 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/benchmark/fixtures')
-rw-r--r--tests/benchmark/fixtures/LaplacianPyramidFixture.h12
-rw-r--r--tests/benchmark/fixtures/LaplacianReconstructFixture.h80
2 files changed, 88 insertions, 4 deletions
diff --git a/tests/benchmark/fixtures/LaplacianPyramidFixture.h b/tests/benchmark/fixtures/LaplacianPyramidFixture.h
index 3d594b7f80..7bc3370312 100644
--- a/tests/benchmark/fixtures/LaplacianPyramidFixture.h
+++ b/tests/benchmark/fixtures/LaplacianPyramidFixture.h
@@ -47,7 +47,9 @@ public:
// Initialize pyramid
PyramidInfo pyramid_info(num_levels, SCALE_PYRAMID_HALF, input_shape, format_out);
- pyramid.init(pyramid_info);
+
+ // Use conservative padding strategy to fit all subsequent kernels
+ pyramid.init_auto_padding(pyramid_info);
// Create tensor
src = create_tensor<TensorType>(input_shape, format_in);
@@ -84,11 +86,13 @@ public:
sync_tensor_if_necessary<TensorType>(dst);
}
-private:
- TensorType src{};
+protected:
TensorType dst{};
PyramidType pyramid{};
- Function laplacian_pyramid_func{};
+
+private:
+ TensorType src{};
+ Function laplacian_pyramid_func{};
};
} // namespace benchmark
} // namespace test
diff --git a/tests/benchmark/fixtures/LaplacianReconstructFixture.h b/tests/benchmark/fixtures/LaplacianReconstructFixture.h
new file mode 100644
index 0000000000..39906977a1
--- /dev/null
+++ b/tests/benchmark/fixtures/LaplacianReconstructFixture.h
@@ -0,0 +1,80 @@
+/*
+ * 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_LAPLACIAN_RECONSTRUCT_FIXTURE
+#define ARM_COMPUTE_TEST_LAPLACIAN_RECONSTRUCT_FIXTURE
+
+#include "arm_compute/core/TensorShape.h"
+#include "arm_compute/core/Types.h"
+#include "tests/Globals.h"
+#include "tests/Utils.h"
+#include "tests/benchmark/fixtures/LaplacianPyramidFixture.h"
+#include "tests/framework/Fixture.h"
+
+namespace arm_compute
+{
+namespace test
+{
+namespace benchmark
+{
+template <typename TensorType, typename Function, typename Accessor, typename LaplacianPyramidFunc, typename PyramidType>
+class LaplacianReconstructFixture : public LaplacianPyramidFixture<TensorType, LaplacianPyramidFunc, Accessor, PyramidType>
+{
+public:
+ template <typename...>
+ void setup(TensorShape input_shape, BorderMode border_mode, size_t num_levels, Format format_in, Format format_out)
+ {
+ const uint8_t constant_border_value = 0;
+
+ LPF::setup(input_shape, border_mode, num_levels, format_out, format_in);
+ LPF::run();
+
+ // Create tensor
+ dst = create_tensor<TensorType>(input_shape, DataType::U8);
+
+ laplacian_reconstruct_func.configure(&(LPF::pyramid), &(LPF::dst), &dst, border_mode, constant_border_value);
+
+ dst.allocator()->allocate();
+ }
+
+ void run()
+ {
+ laplacian_reconstruct_func.run();
+ }
+
+ void sync()
+ {
+ sync_if_necessary<TensorType>();
+ sync_tensor_if_necessary<TensorType>(dst);
+ }
+
+private:
+ TensorType dst{};
+ Function laplacian_reconstruct_func{};
+
+ using LPF = LaplacianPyramidFixture<TensorType, LaplacianPyramidFunc, Accessor, PyramidType>;
+};
+} // namespace benchmark
+} // namespace test
+} // namespace arm_compute
+#endif /* ARM_COMPUTE_TEST_LAPLACIAN_RECONSTRUCT_FIXTURE */