Lines Matching +full:make +full:- +full:test
2 * Copyright (c) 2019-2020 Arm Limited.
4 * SPDX-License-Identifier: MIT
37 namespace test namespace
54 // *INDENT-OFF*
55 // clang-format off
56 /** M values to test */
57 const auto m_values = framework::dataset::make("M", 37);
59 /** M_W values to test */
60 const auto m_w_values = framework::dataset::make("M_W", 5);
62 /** M_H values to test */
63 const auto m_h_values = framework::dataset::make("M_H", 7);
65 /** N values to test */
66 const auto n_values = framework::dataset::make("N", 51);
68 /** K values to test */
69 const auto k_values = framework::dataset::make("K", 23);
71 /** Batch size values to test */
72 const auto b_values = framework::dataset::make("batch_size", 1, 3);
74 /** M0 values to test - Precommit */
75 const auto m0_values_precommit = framework::dataset::make("M0", {4, 6});
77 /** N0 values to test - Precommit */
78 const auto n0_values_precommit = framework::dataset::make("N0", { 4 });
80 /** K0 values to test - Precommit */
81 const auto k0_values_precommit = framework::dataset::make("K0", { 16 });
83 /** M0 values to test - Nightly */
84 const auto m0_values_nightly = framework::dataset::make("M0", 1, 2, 7);
86 /** N0 values to test - Nightly */
87 const auto n0_values_nightly = framework::dataset::make("N0", { 1, 2, 3, 4, 8 });
89 /** K0 values to test - Nightly */
90 const auto k0_values_nightly = framework::dataset::make("K0", { 1, 2, 3, 4, 8, 16 });
151 } // namespace test