aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/MagnitudeFixture.h
diff options
context:
space:
mode:
authorIoan-Cristian Szabo <ioan-cristian.szabo@arm.com>2017-12-20 16:27:37 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commit2c350181118ec9eca864432c5bd78a0cfc3ebc32 (patch)
tree8c65ff5200d3936b45cb4505cd94ab08b6134627 /tests/benchmark/fixtures/MagnitudeFixture.h
parent1250a5a259962514d31bb5f8148f1d0f0a82b946 (diff)
downloadComputeLibrary-2c350181118ec9eca864432c5bd78a0cfc3ebc32.tar.gz
COMPMID-761: Add CL/NEON Magnitude benchmark tests
Change-Id: I9ed3718679d4bc96300a23ce8063d5e12c201bf9 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/114166 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/benchmark/fixtures/MagnitudeFixture.h')
-rw-r--r--tests/benchmark/fixtures/MagnitudeFixture.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/tests/benchmark/fixtures/MagnitudeFixture.h b/tests/benchmark/fixtures/MagnitudeFixture.h
new file mode 100644
index 0000000000..d5fbb2b7f3
--- /dev/null
+++ b/tests/benchmark/fixtures/MagnitudeFixture.h
@@ -0,0 +1,91 @@
+/*
+ * Copyright (c) 2017 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_MAGNITUDE_FIXTURE
+#define ARM_COMPUTE_TEST_MAGNITUDE_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 <typename TensorType, typename Function, typename Accessor>
+class MagnitudeFixture : public framework::Fixture
+{
+public:
+ template <typename...>
+ void setup(const TensorShape &shape, Format format, MagnitudeType magnitude_type, bool use_fp16)
+ {
+ // Create tensors
+ src1 = create_tensor<TensorType>(shape, format);
+ src2 = create_tensor<TensorType>(shape, format);
+ dst = create_tensor<TensorType>(shape, format);
+
+ // Create and configure function
+ magnitude_func.configure(&src1, &src2, &dst, magnitude_type, use_fp16);
+
+ // Allocate tensors
+ src1.allocator()->allocate();
+ src2.allocator()->allocate();
+ dst.allocator()->allocate();
+
+ // Fill tensors
+ library->fill_tensor_uniform(Accessor(src1), 0);
+ library->fill_tensor_uniform(Accessor(src2), 1);
+ }
+
+ void run()
+ {
+ magnitude_func.run();
+ }
+
+ void sync()
+ {
+ sync_if_necessary<TensorType>();
+ sync_tensor_if_necessary<TensorType>(dst);
+ }
+
+ void teardown()
+ {
+ src1.allocator()->free();
+ src2.allocator()->free();
+ dst.allocator()->free();
+ }
+
+private:
+ TensorType src1{};
+ TensorType src2{};
+ TensorType dst{};
+ Function magnitude_func{};
+};
+} // namespace benchmark
+} // namespace test
+} // namespace arm_compute
+#endif /* ARM_COMPUTE_TEST_MAGNITUDE_FIXTURE */