xref: /aosp_15_r20/external/ComputeLibrary/tests/validation/NEON/GEMMLowp.cpp (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1*c217d954SCole Faust /*
2*c217d954SCole Faust  * Copyright (c) 2017-2023 Arm Limited.
3*c217d954SCole Faust  *
4*c217d954SCole Faust  * SPDX-License-Identifier: MIT
5*c217d954SCole Faust  *
6*c217d954SCole Faust  * Permission is hereby granted, free of charge, to any person obtaining a copy
7*c217d954SCole Faust  * of this software and associated documentation files (the "Software"), to
8*c217d954SCole Faust  * deal in the Software without restriction, including without limitation the
9*c217d954SCole Faust  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10*c217d954SCole Faust  * sell copies of the Software, and to permit persons to whom the Software is
11*c217d954SCole Faust  * furnished to do so, subject to the following conditions:
12*c217d954SCole Faust  *
13*c217d954SCole Faust  * The above copyright notice and this permission notice shall be included in all
14*c217d954SCole Faust  * copies or substantial portions of the Software.
15*c217d954SCole Faust  *
16*c217d954SCole Faust  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17*c217d954SCole Faust  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18*c217d954SCole Faust  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19*c217d954SCole Faust  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20*c217d954SCole Faust  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21*c217d954SCole Faust  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22*c217d954SCole Faust  * SOFTWARE.
23*c217d954SCole Faust  */
24*c217d954SCole Faust #include "arm_compute/core/Types.h"
25*c217d954SCole Faust #include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
26*c217d954SCole Faust #include "arm_compute/runtime/NEON/functions/NEGEMMLowpOutputStage.h"
27*c217d954SCole Faust #include "arm_compute/runtime/Tensor.h"
28*c217d954SCole Faust #include "arm_compute/runtime/TensorAllocator.h"
29*c217d954SCole Faust #include "src/core/helpers/MemoryHelpers.h"
30*c217d954SCole Faust #include "src/cpu/operators/CpuGemmLowpMatrixMultiplyCore.h"
31*c217d954SCole Faust #include "tests/NEON/Accessor.h"
32*c217d954SCole Faust #include "tests/NEON/Helper.h"
33*c217d954SCole Faust #include "tests/PaddingCalculator.h"
34*c217d954SCole Faust #include "tests/datasets/GEMMLowpFusedOffsetOutputDataset.h"
35*c217d954SCole Faust #include "tests/datasets/LargeGEMMLowpDataset.h"
36*c217d954SCole Faust #include "tests/datasets/ShapeDatasets.h"
37*c217d954SCole Faust #include "tests/datasets/SmallGEMMLowpDataset.h"
38*c217d954SCole Faust #include "tests/framework/Asserts.h"
39*c217d954SCole Faust #include "tests/framework/Macros.h"
40*c217d954SCole Faust #include "tests/framework/datasets/Datasets.h"
41*c217d954SCole Faust #include "tests/validation/Validation.h"
42*c217d954SCole Faust #include "tests/validation/fixtures/GEMMLowpFixture.h"
43*c217d954SCole Faust 
44*c217d954SCole Faust namespace arm_compute
45*c217d954SCole Faust {
46*c217d954SCole Faust namespace test
47*c217d954SCole Faust {
48*c217d954SCole Faust namespace validation
49*c217d954SCole Faust {
50*c217d954SCole Faust TEST_SUITE(NEON)
51*c217d954SCole Faust TEST_SUITE(GEMMLowp)
52*c217d954SCole Faust TEST_SUITE(MatrixMultiplyCore)
53*c217d954SCole Faust using NEGEMMLowpMatrixMultiplyCoreFixture = GEMMLowpMatrixMultiplyCoreValidationFixture<Tensor, Accessor, NEGEMMLowpMatrixMultiplyCore>;
54*c217d954SCole Faust using NEGEMMLowpBatchedMatMulFixture      = GEMMLowpMatrixMultiplyCoreValidationFixture<Tensor, Accessor, NEGEMMLowpMatrixMultiplyCore, false, false, true>;
55*c217d954SCole Faust 
DATA_TEST_CASE(Configuration,framework::DatasetMode::ALL,framework::dataset::concat (datasets::SmallGEMMLowpDataset (),datasets::LargeGEMMLowpDataset ()),shape_a,shape_b,shape_c,a_offset,b_offset)56*c217d954SCole Faust DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, framework::dataset::concat(datasets::SmallGEMMLowpDataset(), datasets::LargeGEMMLowpDataset()),
57*c217d954SCole Faust                shape_a, shape_b, shape_c, a_offset, b_offset)
58*c217d954SCole Faust {
59*c217d954SCole Faust     // Create tensors
60*c217d954SCole Faust     Tensor a = create_tensor<Tensor>(shape_a, DataType::QASYMM8);
61*c217d954SCole Faust     Tensor b = create_tensor<Tensor>(shape_b, DataType::QASYMM8);
62*c217d954SCole Faust     Tensor c = create_tensor<Tensor>(shape_c, DataType::S32);
63*c217d954SCole Faust 
64*c217d954SCole Faust     a.info()->set_quantization_info(QuantizationInfo(1.0f / 255, a_offset));
65*c217d954SCole Faust     b.info()->set_quantization_info(QuantizationInfo(1.0f / 255, b_offset));
66*c217d954SCole Faust 
67*c217d954SCole Faust     ARM_COMPUTE_EXPECT(a.info()->is_resizable(), framework::LogLevel::ERRORS);
68*c217d954SCole Faust     ARM_COMPUTE_EXPECT(b.info()->is_resizable(), framework::LogLevel::ERRORS);
69*c217d954SCole Faust     ARM_COMPUTE_EXPECT(c.info()->is_resizable(), framework::LogLevel::ERRORS);
70*c217d954SCole Faust 
71*c217d954SCole Faust     // Create and configure function
72*c217d954SCole Faust     NEGEMMLowpMatrixMultiplyCore gemmlowp_mm;
73*c217d954SCole Faust     gemmlowp_mm.configure(&a, &b, nullptr, &c);
74*c217d954SCole Faust 
75*c217d954SCole Faust     // Validate padding is zero
76*c217d954SCole Faust     validate(a.info()->padding(), PaddingSize());
77*c217d954SCole Faust     validate(b.info()->padding(), PaddingSize());
78*c217d954SCole Faust     validate(c.info()->padding(), PaddingSize());
79*c217d954SCole Faust }
80*c217d954SCole Faust 
81*c217d954SCole Faust // *INDENT-OFF*
82*c217d954SCole Faust // clang-format off
83*c217d954SCole Faust DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
84*c217d954SCole Faust     framework::dataset::make("InputAInfo", { TensorInfo(TensorShape(21U, 13U), 1, DataType::QASYMM8, QuantizationInfo(1.f/255, 10)), // Input not a multiple of 4
85*c217d954SCole Faust                                              TensorInfo(TensorShape(21U, 13U), 1, DataType::S32),                                 // Mismatching data type
86*c217d954SCole Faust                                              TensorInfo(TensorShape(20U, 13U), 1, DataType::QASYMM8, QuantizationInfo(1.f/255, 10)), // Invalid dimensions
87*c217d954SCole Faust                                              TensorInfo(TensorShape(21U, 13U), 1, DataType::QASYMM8, QuantizationInfo(1.f/255, 10)), // Invalid dimensions
88*c217d954SCole Faust                                              TensorInfo(TensorShape(16U, 32U), 1, DataType::QASYMM8, QuantizationInfo(1.f/255, 10)),
89*c217d954SCole Faust                                           }),
90*c217d954SCole Faust     framework::dataset::make("InputBInfo",{ TensorInfo(TensorShape(33U, 21U), 1, DataType::QASYMM8, QuantizationInfo(1.f/256, 10)),
91*c217d954SCole Faust                                             TensorInfo(TensorShape(33U, 21U), 1, DataType::QASYMM8, QuantizationInfo(1.f/256, 10)),
92*c217d954SCole Faust                                             TensorInfo(TensorShape(33U, 21U), 1, DataType::QASYMM8, QuantizationInfo(1.f/256, 10)),
93*c217d954SCole Faust                                             TensorInfo(TensorShape(33U, 21U), 1, DataType::QASYMM8, QuantizationInfo(1.f/256, 10)),
94*c217d954SCole Faust                                             TensorInfo(TensorShape(64U, 16U), 1, DataType::QASYMM8, QuantizationInfo(1.f/256, 10)),
95*c217d954SCole Faust                                           })),
96*c217d954SCole Faust     framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(33U, 13U), 1, DataType::S32),
97*c217d954SCole Faust                                             TensorInfo(TensorShape(33U, 13U), 1, DataType::S32),
98*c217d954SCole Faust                                             TensorInfo(TensorShape(33U, 13U), 1, DataType::S32),
99*c217d954SCole Faust                                             TensorInfo(TensorShape(8U, 11U), 1, DataType::S32),
100*c217d954SCole Faust                                             TensorInfo(TensorShape(64U, 32U), 1, DataType::S32),
101*c217d954SCole Faust                                            })),
102*c217d954SCole Faust     framework::dataset::make("Expected", { true, false, false, false, true })),
103*c217d954SCole Faust     a_info, b_info, output_info, expected)
104*c217d954SCole Faust {
105*c217d954SCole Faust     // Lock tensors
106*c217d954SCole Faust     Status status =  NEGEMMLowpMatrixMultiplyCore::validate(&a_info.clone()->set_is_resizable(false),
107*c217d954SCole Faust                                                             &b_info.clone()->set_is_resizable(false),
108*c217d954SCole Faust                                                             nullptr,
109*c217d954SCole Faust                                                             &output_info.clone()->set_is_resizable(false));
110*c217d954SCole Faust     ARM_COMPUTE_EXPECT(bool(status) == expected, framework::LogLevel::ERRORS);
111*c217d954SCole Faust }
112*c217d954SCole Faust // clang-format on
113*c217d954SCole Faust // *INDENT-ON*
114*c217d954SCole Faust 
115*c217d954SCole Faust /** Test case for memory injection in @ref cpu::CpuGemmLowpMatrixMultiplyCore.
116*c217d954SCole Faust  *
117*c217d954SCole Faust  * Configure the operator once and inject memory at run-time in multiple executions.
118*c217d954SCole Faust  *
119*c217d954SCole Faust  * Checks performed in order:
120*c217d954SCole Faust  * - Both runs compute the same output
121*c217d954SCole Faust  */
TEST_CASE(MemoryInjection,framework::DatasetMode::ALL)122*c217d954SCole Faust TEST_CASE(MemoryInjection, framework::DatasetMode::ALL)
123*c217d954SCole Faust {
124*c217d954SCole Faust     auto gemm     = std::make_unique<cpu::CpuGemmLowpMatrixMultiplyCore>();
125*c217d954SCole Faust     auto a_info   = TensorInfo(TensorShape(32U, 72U), 1, DataType::QASYMM8);
126*c217d954SCole Faust     auto b_info   = TensorInfo(TensorShape(17U, 32U), 1, DataType::QASYMM8);
127*c217d954SCole Faust     auto dst_info = TensorInfo(TensorShape(17U, 72U), 1, DataType::S32);
128*c217d954SCole Faust     a_info.set_quantization_info(QuantizationInfo(1.0f / 255, -9));
129*c217d954SCole Faust     b_info.set_quantization_info(QuantizationInfo(1.0f / 255, 1));
130*c217d954SCole Faust     const auto gemm_info = GEMMInfo{};
131*c217d954SCole Faust     gemm->configure(&a_info, &b_info, nullptr, &dst_info, gemm_info);
132*c217d954SCole Faust 
133*c217d954SCole Faust     // telhs are newly created every call of this lambda function
134*c217d954SCole Faust     auto a   = create_tensor<Tensor>(a_info);
135*c217d954SCole Faust     auto b   = create_tensor<Tensor>(b_info);
136*c217d954SCole Faust     auto dst = create_tensor<Tensor>(dst_info);
137*c217d954SCole Faust     a.allocator()->allocate();
138*c217d954SCole Faust     b.allocator()->allocate();
139*c217d954SCole Faust     dst.allocator()->allocate();
140*c217d954SCole Faust 
141*c217d954SCole Faust     ITensorPack run_pack =
142*c217d954SCole Faust     {
143*c217d954SCole Faust         { TensorType::ACL_SRC_0, &a },
144*c217d954SCole Faust         { TensorType::ACL_SRC_1, &b },
145*c217d954SCole Faust         { TensorType::ACL_DST, &dst }
146*c217d954SCole Faust     };
147*c217d954SCole Faust     ITensorPack prep_pack =
148*c217d954SCole Faust     {
149*c217d954SCole Faust         { TensorType::ACL_SRC_1, &b },
150*c217d954SCole Faust     };
151*c217d954SCole Faust 
152*c217d954SCole Faust     auto mg = MemoryGroup{};
153*c217d954SCole Faust     auto ws = manage_workspace<Tensor>(gemm->workspace(), mg, run_pack, prep_pack);
154*c217d954SCole Faust 
155*c217d954SCole Faust     auto run_conv = [&]() -> Tensor
156*c217d954SCole Faust     {
157*c217d954SCole Faust         auto dst = create_tensor<Tensor>(dst_info);
158*c217d954SCole Faust         dst.allocator()->allocate();
159*c217d954SCole Faust         run_pack.add_tensor(TensorType::ACL_DST, &dst);
160*c217d954SCole Faust 
161*c217d954SCole Faust         library->fill_tensor_value(Accessor(a), static_cast<uint8_t>(1));
162*c217d954SCole Faust         library->fill_tensor_value(Accessor(b), static_cast<uint8_t>(2));
163*c217d954SCole Faust         // This operator is configured once and captured by this lambda.
164*c217d954SCole Faust         gemm->prepare(prep_pack);
165*c217d954SCole Faust         gemm->run(run_pack);
166*c217d954SCole Faust         return dst;
167*c217d954SCole Faust     };
168*c217d954SCole Faust     auto result_0 = run_conv();
169*c217d954SCole Faust     auto result_1 = run_conv();
170*c217d954SCole Faust     for(size_t i = 0; i < result_0.info()->tensor_shape().total_size(); ++i)
171*c217d954SCole Faust     {
172*c217d954SCole Faust         ARM_COMPUTE_EXPECT(((uint8_t *)result_0.buffer())[i] == ((uint8_t *)result_1.buffer())[i], framework::LogLevel::ERRORS);
173*c217d954SCole Faust     }
174*c217d954SCole Faust }
175*c217d954SCole Faust 
176*c217d954SCole Faust /** Test case for memory injection in @ref NEGEMMLowpMatrixMultiplyCore.
177*c217d954SCole Faust  *
178*c217d954SCole Faust  * Make sure @ref NEGEMMLowpMatrixMultiplyCore still works through injecting the memory at configure time using the old API.
179*c217d954SCole Faust  *
180*c217d954SCole Faust  * Checks performed in order:
181*c217d954SCole Faust  * - Both runs compute the same output
182*c217d954SCole Faust  */
TEST_CASE(MultipleExecutionWithConfigure,framework::DatasetMode::ALL)183*c217d954SCole Faust TEST_CASE(MultipleExecutionWithConfigure, framework::DatasetMode::ALL)
184*c217d954SCole Faust {
185*c217d954SCole Faust     auto gemm     = std::make_unique<NEGEMMLowpMatrixMultiplyCore>();
186*c217d954SCole Faust     auto a_info   = TensorInfo(TensorShape(32U, 72U), 1, DataType::QASYMM8);
187*c217d954SCole Faust     auto b_info   = TensorInfo(TensorShape(17U, 32U), 1, DataType::QASYMM8);
188*c217d954SCole Faust     auto dst_info = TensorInfo(TensorShape(17U, 72U), 1, DataType::S32);
189*c217d954SCole Faust     a_info.set_quantization_info(QuantizationInfo(1.0f / 255, -9));
190*c217d954SCole Faust     b_info.set_quantization_info(QuantizationInfo(1.0f / 255, 1));
191*c217d954SCole Faust     const auto gemm_info = GEMMInfo{};
192*c217d954SCole Faust     auto       run_conv  = [&]()
193*c217d954SCole Faust     {
194*c217d954SCole Faust         auto a   = create_tensor<Tensor>(a_info);
195*c217d954SCole Faust         auto b   = create_tensor<Tensor>(b_info);
196*c217d954SCole Faust         auto dst = create_tensor<Tensor>(dst_info);
197*c217d954SCole Faust         gemm->configure(&a, &b, nullptr, &dst, gemm_info);
198*c217d954SCole Faust         a.allocator()->allocate();
199*c217d954SCole Faust         b.allocator()->allocate();
200*c217d954SCole Faust         dst.allocator()->allocate();
201*c217d954SCole Faust         library->fill_tensor_value(Accessor(a), static_cast<uint8_t>(1));
202*c217d954SCole Faust         library->fill_tensor_value(Accessor(b), static_cast<uint8_t>(2));
203*c217d954SCole Faust         gemm->run();
204*c217d954SCole Faust         return dst;
205*c217d954SCole Faust     };
206*c217d954SCole Faust     auto result_0 = run_conv();
207*c217d954SCole Faust     auto result_1 = run_conv();
208*c217d954SCole Faust     for(size_t i = 0; i < result_0.info()->tensor_shape().total_size(); ++i)
209*c217d954SCole Faust     {
210*c217d954SCole Faust         ARM_COMPUTE_EXPECT(((uint8_t *)result_0.buffer())[i] == ((uint8_t *)result_1.buffer())[i], framework::LogLevel::ERRORS);
211*c217d954SCole Faust     }
212*c217d954SCole Faust }
213*c217d954SCole Faust 
FIXTURE_DATA_TEST_CASE(RunSmall,NEGEMMLowpMatrixMultiplyCoreFixture,framework::DatasetMode::ALL,datasets::SmallGEMMLowpDataset ())214*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMLowpMatrixMultiplyCoreFixture, framework::DatasetMode::ALL, datasets::SmallGEMMLowpDataset())
215*c217d954SCole Faust {
216*c217d954SCole Faust     // Validate output
217*c217d954SCole Faust     validate(Accessor(_target), _reference);
218*c217d954SCole Faust }
219*c217d954SCole Faust 
FIXTURE_DATA_TEST_CASE(RunLarge,NEGEMMLowpMatrixMultiplyCoreFixture,framework::DatasetMode::NIGHTLY,datasets::LargeGEMMLowpDataset ())220*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMLowpMatrixMultiplyCoreFixture, framework::DatasetMode::NIGHTLY, datasets::LargeGEMMLowpDataset())
221*c217d954SCole Faust {
222*c217d954SCole Faust     // Validate output
223*c217d954SCole Faust     validate(Accessor(_target), _reference);
224*c217d954SCole Faust }
225*c217d954SCole Faust 
226*c217d954SCole Faust constexpr AbsoluteTolerance<float> tolerance_batched(1);
227*c217d954SCole Faust 
228*c217d954SCole Faust using NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedUnsigned =
229*c217d954SCole Faust     GEMMLowpMatrixMultiplyCoreFusedOffsetOutputGenericValidationFixture<Tensor, Accessor, NEGEMMLowpMatrixMultiplyCore, false, false, uint8_t, uint8_t, true>;
230*c217d954SCole Faust 
231*c217d954SCole Faust TEST_SUITE(BatchedMatMul)
TEST_SUITE(QASYMM8)232*c217d954SCole Faust TEST_SUITE(QASYMM8)
233*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedUnsigned, framework::DatasetMode::ALL,
234*c217d954SCole Faust                        combine(combine(datasets::SmallGEMMLowpFusedBatchedMatMulDatasetUnsigned(),
235*c217d954SCole Faust                                        framework::dataset::make("DataType", { DataType::QASYMM8 })),
236*c217d954SCole Faust                                framework::dataset::make("bool", { false })))
237*c217d954SCole Faust {
238*c217d954SCole Faust     validate(Accessor(_target), _reference, tolerance_batched);
239*c217d954SCole Faust }
240*c217d954SCole Faust TEST_SUITE_END() // QASYMM8
241*c217d954SCole Faust 
242*c217d954SCole Faust using NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedSigned =
243*c217d954SCole Faust     GEMMLowpMatrixMultiplyCoreFusedOffsetOutputGenericValidationFixture<Tensor, Accessor, NEGEMMLowpMatrixMultiplyCore, false, false, int8_t, int8_t, true>;
244*c217d954SCole Faust TEST_SUITE(QASYMM8_SIGNED)
245*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedSigned, framework::DatasetMode::ALL,
246*c217d954SCole Faust                        combine(combine(datasets::SmallGEMMLowpFusedBatchedMatMulDatasetSigned(),
247*c217d954SCole Faust                                        framework::dataset::make("DataType", { DataType::QASYMM8_SIGNED })),
248*c217d954SCole Faust                                framework::dataset::make("bool", { false })))
249*c217d954SCole Faust {
250*c217d954SCole Faust     validate(Accessor(_target), _reference, tolerance_batched);
251*c217d954SCole Faust }
252*c217d954SCole Faust TEST_SUITE_END() // QASYMM8_SIGNED
253*c217d954SCole Faust TEST_SUITE_END() // BatchedMatMul
254*c217d954SCole Faust 
255*c217d954SCole Faust using NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixture = GEMMLowpMatrixMultiplyCoreFusedOffsetOutputValidationFixture<Tensor, Accessor, NEGEMMLowpMatrixMultiplyCore>;
256*c217d954SCole Faust constexpr AbsoluteTolerance<float> tolerance_quant(1);
257*c217d954SCole Faust 
258*c217d954SCole Faust TEST_SUITE(FusedOffsetOutput)
259*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixture, framework::DatasetMode::ALL, combine(datasets::SmallGEMMLowpFusedOffsetOutputUint8Dataset(),
260*c217d954SCole Faust                        framework::dataset::make("DataType", { DataType::QASYMM8 })))
261*c217d954SCole Faust {
262*c217d954SCole Faust     // Validate output
263*c217d954SCole Faust     validate(Accessor(_target), _reference, tolerance_quant);
264*c217d954SCole Faust }
265*c217d954SCole Faust 
266*c217d954SCole Faust FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixture, framework::DatasetMode::NIGHTLY, combine(datasets::LargeGEMMLowpFusedOffsetOutputUint8Dataset(),
267*c217d954SCole Faust                        framework::dataset::make("DataType", { DataType::QASYMM8 })))
268*c217d954SCole Faust {
269*c217d954SCole Faust     // Validate output
270*c217d954SCole Faust     validate(Accessor(_target), _reference, tolerance_quant);
271*c217d954SCole Faust }
272*c217d954SCole Faust TEST_SUITE_END() // FusedOffsetOutput
273*c217d954SCole Faust TEST_SUITE_END() // MatrixMultiplyCore
274*c217d954SCole Faust TEST_SUITE_END() // GEMMLowp
275*c217d954SCole Faust TEST_SUITE_END() // NEON
276*c217d954SCole Faust } // namespace validation
277*c217d954SCole Faust } // namespace test
278*c217d954SCole Faust } // namespace arm_compute
279