• Home
  • Raw
  • Download

Lines Matching +full:make +full:- +full:test

2  * Copyright (c) 2019-2020 Arm Limited.
4 * SPDX-License-Identifier: MIT
42 namespace test namespace
57 // *INDENT-OFF*
58 // clang-format off
65 /** Width values to test - Precommit */
66 const auto width_values_precommit = framework::dataset::make("width", { 37U } );
68 /** Width values to test - Nightly */
69 const auto width_values_nightly = framework::dataset::make("width", { 53U, 47U } );
71 /** Height values to test - Precommit */
72 const auto height_values_precommit = framework::dataset::make("height", { 19U } );
74 /** Height values to test - Nightly */
75 const auto height_values_nightly = framework::dataset::make("height", { 39U, 43U } );
77 /** Channel values to test - Precommit */
78 const auto channel_values_precommit = framework::dataset::make("channels", { 15U });
80 /** Channel values to test - Nightly */
81 const auto channel_values_nightly = framework::dataset::make("channels", { 33U, 19U });
83 /** Batch values to test - Precommit */
84 const auto batch_values_precommit = framework::dataset::make("batch", { 1U, 2U });
86 /** Batch values to test - Nightly */
87 const auto batch_values_nightly = framework::dataset::make("batch", { 1U, 3U });
89 /** Kernel size values to test - Precommit */
90 const auto kernel_sz_values_precommit = framework::dataset::make("kernel_size", { Size2D(1U, 1U), S…
92 /** Kernel size values to test - Nightly */
93 const auto kernel_sz_values_nightly = framework::dataset::make("kernel_size", { Size2D(3U, 5U), Siz…
95 /** Depth multiplier values to test - All */
96 const auto depth_multiplier_values = framework::dataset::make("depth_multiplier", {3U});
98 /** Dilation values to test - All */
99 const auto dilation_values = framework::dataset::make("dilation", { Size2D(1U, 1U), Size2D(3U, 3U) …
101 /** Stride values to test - All */
102 const auto stride_values = framework::dataset::make("stride", { Size2D(1U, 1U), Size2D(3U, 2U) });
104 /** Padding values to test - All */
105 const auto padding_valid_values = framework::dataset::make("padding_valid", { true, false });
107 /** Data type values to test - All */
108 const auto data_type_values = framework::dataset::make("data_type", { DataType::F32, DataType::F16 …
110 /** Data layout values to test - All */
111 const auto data_layout_values = framework::dataset::make("data_layout", { DataLayout::NHWC });
113 /** N0 values to test - Precommit */
114 const auto n0_values_precommit = framework::dataset::make("N0", {2, 4});
116 /** N0 values to test - Nightly */
117 const auto n0_values_nightly = framework::dataset::make("N0", {3, 8});
119 /** Activation values to test */
120 const auto act_values = framework::dataset::make("Activation",
139 … framework::dataset::make("depth_multiplier", 1)), in TEST_SUITE()
143 … framework::dataset::make("DataType", DataType::F32)), in TEST_SUITE()
159 … framework::dataset::make("depth_multiplier", 1)),
163 … framework::dataset::make("DataType", DataType::F32)),
181 … framework::dataset::make("depth_multiplier", 1)), in TEST_SUITE()
185 … framework::dataset::make("DataType", DataType::F16)), in TEST_SUITE()
201 … framework::dataset::make("depth_multiplier", 1)),
205 … framework::dataset::make("DataType", DataType::F16)),
229 … framework::dataset::make("DataType", DataType::F32)), in TEST_SUITE_END()
232 … framework::dataset::make("N0", 1))) in TEST_SUITE_END()
249 … framework::dataset::make("DataType", DataType::F32)),
252 … framework::dataset::make("N0", 1)))
271 … framework::dataset::make("DataType", DataType::F16)), in TEST_SUITE()
274 … framework::dataset::make("N0", 1))) in TEST_SUITE()
291 … framework::dataset::make("DataType", DataType::F16)),
294 … framework::dataset::make("N0", 1)))
305 } // namespace test