From dd715f2a88827241a3fb9e4a2d8be82455f649f7 Mon Sep 17 00:00:00 2001 From: John Richardson Date: Mon, 18 Sep 2017 16:10:48 +0100 Subject: COMPMID-505: Move PixelWiseMultiplication to new validation Change-Id: I4daff53f5ee7f0393451425ba20aee1013466954 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/89200 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- .../FixedPointPixelWiseMultiplicationFixture.h | 119 +++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 tests/validation/fixtures/FixedPointPixelWiseMultiplicationFixture.h (limited to 'tests/validation/fixtures/FixedPointPixelWiseMultiplicationFixture.h') diff --git a/tests/validation/fixtures/FixedPointPixelWiseMultiplicationFixture.h b/tests/validation/fixtures/FixedPointPixelWiseMultiplicationFixture.h new file mode 100644 index 0000000000..d090d8583d --- /dev/null +++ b/tests/validation/fixtures/FixedPointPixelWiseMultiplicationFixture.h @@ -0,0 +1,119 @@ +/* + * 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_FIXED_POINT_PIXEL_WISE_MULTIPLICATION_FIXTURE +#define ARM_COMPUTE_TEST_FIXED_POINT_PIXEL_WISE_MULTIPLICATION_FIXTURE + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" +#include "tests/AssetsLibrary.h" +#include "tests/Globals.h" +#include "tests/IAccessor.h" +#include "tests/framework/Asserts.h" +#include "tests/framework/Fixture.h" +#include "tests/validation/CPP/FixedPointPixelWiseMultiplication.h" + +namespace arm_compute +{ +namespace test +{ +namespace validation +{ +template +class FixedPointPixelWiseMultiplicationValidationFixture : public framework::Fixture +{ +public: + template + void setup(TensorShape shape, + DataType dt_in1, + DataType dt_in2, + float scale, + ConvertPolicy convert_policy, + RoundingPolicy rounding_policy, + int fixed_point_position) + { + _target = compute_target(shape, dt_in1, dt_in2, scale, convert_policy, rounding_policy, fixed_point_position); + _reference = compute_reference(shape, dt_in1, dt_in2, scale, convert_policy, fixed_point_position); + } + +protected: + template + void fill(U &&tensor, unsigned int seed_offset) + { + library->fill_tensor_uniform(tensor, seed_offset); + } + + TensorType compute_target(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy, int fixed_point_position) + { + // Create tensors + TensorType src1 = create_tensor(shape, dt_in1, 1, fixed_point_position); + TensorType src2 = create_tensor(shape, dt_in2, 1, fixed_point_position); + TensorType dst = create_tensor(shape, dt_in2, 1, fixed_point_position); + + // Create and configure function + FunctionType multiply; + multiply.configure(&src1, &src2, &dst, scale, convert_policy, rounding_policy); + + ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS); + + // Allocate tensors + src1.allocator()->allocate(); + src2.allocator()->allocate(); + dst.allocator()->allocate(); + + ARM_COMPUTE_EXPECT(!src1.info()->is_resizable(), framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(!src2.info()->is_resizable(), framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS); + + // Fill tensors + fill(AccessorType(src1), 0); + fill(AccessorType(src2), 1); + + // Compute function + multiply.run(); + + return dst; + } + + SimpleTensor compute_reference(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, int fixed_point_position) + { + // Create reference + SimpleTensor src1{ shape, dt_in1, 1, fixed_point_position }; + SimpleTensor src2{ shape, dt_in2, 1, fixed_point_position }; + + // Fill reference + fill(src1, 0); + fill(src2, 1); + + return reference::fixed_point_pixel_wise_multiplication(src1, src2, scale, convert_policy); + } + + TensorType _target{}; + SimpleTensor _reference{}; +}; +} // namespace validation +} // namespace test +} // namespace arm_compute +#endif /* ARM_COMPUTE_TEST_FIXED_POINT_PIXEL_WISE_MULTIPLICATION_FIXTURE */ -- cgit v1.2.1