Benchmarks: Fix Bug - Fix GPU scan logic in gpu_copy (#296)
Fix bug of GPU scan logic in bidirectional tests.
This commit is contained in:
Родитель
d03d110f55
Коммит
f3d05006d4
|
@ -695,7 +695,7 @@ int main(int argc, char **argv) {
|
|||
// Scan all peers
|
||||
for (int k = 0; k < gpu_count; k++) {
|
||||
// Skip second half for bidirectional test
|
||||
if (opts.bidirectional_enabled && j > k) {
|
||||
if (opts.bidirectional_enabled && k > j) {
|
||||
break;
|
||||
}
|
||||
// P2P write
|
||||
|
|
Загрузка…
Ссылка в новой задаче