Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit c4b7121

Browse files
authored
Fix batching test for PR 5977 (#978)
Signed-off-by: Arvind Sudarsanam <[email protected]>
1 parent 6ce8f20 commit c4b7121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SYCL/Plugin/level_zero_dynamic_batch_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// raise the batch size up 3 times.
1515
//
1616
// Then the test starts enqueueing only 4 kernels before doing a wait, and
17-
// it does that 20 times. That should cause the batch size to
17+
// it does that 25 times. That should cause the batch size to
1818
// be lowered to be less than 4.
1919
//
2020
// CKDYN: Raising QueueBatchSize to 5
@@ -166,7 +166,7 @@ int main(int argc, char *argv[]) {
166166
validate(Y1, Z7, M * N);
167167
validate(Y1, Z8, M * N);
168168

169-
for (size_t i = 0; i < 20; i++) {
169+
for (size_t i = 0; i < 25; i++) {
170170
q.submit([&](sycl::handler &h) {
171171
h.parallel_for<class u32_copy9>(sycl::range<2>{M, N},
172172
[=](sycl::id<2> it) {

0 commit comments

Comments
 (0)