We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b191d14 commit a2157faCopy full SHA for a2157fa
sycl/plugins/hip/pi_hip.hpp
@@ -515,7 +515,7 @@ struct _pi_queue {
515
} else {
516
start %= size;
517
end %= size;
518
- if (start <= end) {
+ if (start < end) {
519
sync_compute(start, end);
520
521
sync_compute(start, size);
@@ -537,7 +537,7 @@ struct _pi_queue {
537
538
539
540
541
sync_transfer(start, end);
542
543
sync_transfer(start, size);
0 commit comments