blob: f74f0ece1ac2e55fa2703959e7a73836e5ba256a [file] [log] [blame]
Alex Gilday7da29b62018-03-23 14:16:00 +00001/*
2 * Copyright (c) 2017-2018 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef ARM_COMPUTE_TEST_DIRECTCONVOLUTIONLAYERFIXTURE
25#define ARM_COMPUTE_TEST_DIRECTCONVOLUTIONLAYERFIXTURE
26
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorShape.h"
29#include "arm_compute/core/Types.h"
30#include "tests/Globals.h"
31#include "tests/Utils.h"
32#include "tests/framework/Fixture.h"
33
34namespace arm_compute
35{
36namespace test
37{
38namespace benchmark
39{
40/** Fixture that can be used for NEON and CL */
41template <typename TensorType, typename Function, typename Accessor>
42class DirectConvolutionLayerFixture : public framework::Fixture
43{
44public:
45 template <typename...>
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000046 void setup(TensorShape src_shape, TensorShape weights_shape, TensorShape biases_shape, TensorShape dst_shape, PadStrideInfo info, Size2D dilation, ActivationLayerInfo act_info, DataType data_type,
47 int batches)
Alex Gilday7da29b62018-03-23 14:16:00 +000048 {
49 ARM_COMPUTE_UNUSED(dilation);
50
51 // Set batched in source and destination shapes
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010052
Alex Gilday7da29b62018-03-23 14:16:00 +000053 src_shape.set(3 /* batch */, batches);
54 dst_shape.set(3 /* batch */, batches);
55 DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
56
57 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010058 src = create_tensor<TensorType>(src_shape, data_type, 1);
59 weights = create_tensor<TensorType>(weights_shape, data_type, 1);
60 biases = create_tensor<TensorType>(biases_shape, bias_data_type, 1);
61 dst = create_tensor<TensorType>(dst_shape, data_type, 1);
Alex Gilday7da29b62018-03-23 14:16:00 +000062
63 // Create and configure function
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000064 conv_layer.configure(&src, &weights, &biases, &dst, info, act_info);
Alex Gilday7da29b62018-03-23 14:16:00 +000065
66 // Allocate tensors
67 src.allocator()->allocate();
68 weights.allocator()->allocate();
69 biases.allocator()->allocate();
70 dst.allocator()->allocate();
71 }
72
73 void run()
74 {
75 conv_layer.run();
76 }
77
78 void sync()
79 {
80 sync_if_necessary<TensorType>();
81 sync_tensor_if_necessary<TensorType>(dst);
82 }
83
84 void teardown()
85 {
86 src.allocator()->free();
87 weights.allocator()->free();
88 biases.allocator()->free();
89 dst.allocator()->free();
90 }
91
92private:
93 TensorType src{};
94 TensorType weights{};
95 TensorType biases{};
96 TensorType dst{};
97 Function conv_layer{};
98};
99} // namespace benchmark
100} // namespace test
101} // namespace arm_compute
102#endif /* ARM_COMPUTE_TEST_DIRECTCONVOLUTIONLAYERFIXTURE */