Test various odd input lengths to exercise boundary cases for full and partial batches of 32.
| 158 | // Test various odd input lengths to exercise boundary cases for full and partial |
| 159 | // batches of 32. |
| 160 | std::vector<int> GetLengths() { |
| 161 | vector<int> lengths{NUM_IN_VALUES, NUM_IN_VALUES - 1, NUM_IN_VALUES - 16, |
| 162 | NUM_IN_VALUES - 19, NUM_IN_VALUES - 31}; |
| 163 | for (int i = 0; i < 32; ++i) { |
| 164 | lengths.push_back(i); |
| 165 | } |
| 166 | |
| 167 | return lengths; |
| 168 | } |
| 169 | |
| 170 | template <typename UINT_T> |
| 171 | void RandomUnpackTest() { |
no test coverage detected