• Home
  • Raw
  • Download

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

2  * Copyright (c) 2019-2020 Arm Limited.
4 * SPDX-License-Identifier: MIT
39 namespace test namespace
63 // *INDENT-OFF*
64 // clang-format off
65 /** M values to test */
66 const auto m_values = framework::dataset::make("M", 37);
68 /** M_W values to test */
69 const auto m_w_values = framework::dataset::make("M_W", 5);
71 /** M_H values to test */
72 const auto m_h_values = framework::dataset::make("M_H", 7);
74 /** N values to test */
75 const auto n_values = framework::dataset::make("N", 51);
77 /** K values to test */
78 const auto k_values = framework::dataset::make("K", 23);
80 /** Batch size values to test */
81 const auto b_values = framework::dataset::make("batch_size", 1, 3);
83 /** M0 values to test - Precommit */
84 const auto m0_values_precommit_1 = framework::dataset::make("M0", { 4 });
85 const auto m0_values_precommit_2 = framework::dataset::make("M0", { 6 });
87 /** N0 values to test - Precommit */
88 const auto n0_values_precommit = framework::dataset::make("N0", { 4 });
90 /** K0 values to test - Precommit */
91 const auto k0_values_precommit = framework::dataset::make("K0", { 16 });
93 /** V0 values to test - Precommit */
94 const auto v0_values_precommit = framework::dataset::make("V0", 1, 3);
96 /** H0 values to test - Precommit */
97 const auto h0_values_precommit = framework::dataset::make("H0", 1, 3);
99 /** M0 values to test - Nightly */
100 const auto m0_values_nightly = framework::dataset::make("M0", 2, 7);
102 /** N0 values to test - Nightly */
103 const auto n0_values_nightly = framework::dataset::make("N0", { 2, 3, 4, 8 });
105 /** K0 values to test - Nightly */
106 const auto k0_values_nightly = framework::dataset::make("K0", { 2, 3, 4, 8, 16 });
108 /** V0 values to test - Nightly */
109 const auto v0_values_nightly = framework::dataset::make("V0", 1, 4);
111 /** H0 values to test - Nightly */
112 const auto h0_values_nightly = framework::dataset::make("H0", 1, 4);
114 /** Interleave values to test with LHS matrix */
115 const auto i_values_lhs = framework::dataset::make("interleave_lhs", { true, false });
117 /** Interleave values to test with RHS matrix */
118 const auto i_values_rhs = framework::dataset::make("interleave_rhs", { true, false });
140 … framework::dataset::make("DataType", { DataType::QASYMM8 }))) in TEST_SUITE()
159 … framework::dataset::make("DataType", { DataType::QASYMM8 })))
179 … framework::dataset::make("DataType", { DataType::QASYMM8 })))
199 … framework::dataset::make("DataType", { DataType::QASYMM8 })))
220 … framework::dataset::make("DataType", { DataType::QASYMM8_SIGNED }))) in TEST_SUITE()
239 … framework::dataset::make("DataType", { DataType::QASYMM8_SIGNED })))
250 } // namespace test