From f9fd5d3cdd39d3e185740001dfa7f633e97eb50a Mon Sep 17 00:00:00 2001 From: Edgar Gabriel Date: Mon, 15 Dec 2025 08:14:18 -0600 Subject: [PATCH] use 64 threads for reduction test (#360) * use 64 threads for reduction test much faster with IPC backend. * change all relevant collective tests. [ROCm/rocshmem commit: c35210f1744f3d5945d31e9143a0355e79378ba3] --- .../rocshmem/scripts/functional_tests/driver.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/rocshmem/scripts/functional_tests/driver.sh b/projects/rocshmem/scripts/functional_tests/driver.sh index 0da1aa8b08..865b2fb78f 100755 --- a/projects/rocshmem/scripts/functional_tests/driver.sh +++ b/projects/rocshmem/scripts/functional_tests/driver.sh @@ -443,17 +443,17 @@ TestColl() { ExecTest "wgsyncall" 2 1 1 - ExecTest "alltoall" 2 1 1 512 + ExecTest "alltoall" 2 1 64 512 - ExecTest "teambroadcast" 2 1 1 32768 + ExecTest "teambroadcast" 2 1 64 32768 - ExecTest "fcollect" 2 1 1 512 - ExecTest "fcollect" 2 1 1 32768 + ExecTest "fcollect" 2 1 64 512 + ExecTest "fcollect" 2 1 64 32768 - ExecTest "teamreduction" 2 1 1 32768 + ExecTest "teamreduction" 2 1 64 32768 - ExecTest "alltoallmem_on_stream" 2 1 1 1048576 - ExecTest "broadcastmem_on_stream" 2 1 1 1048576 + ExecTest "alltoallmem_on_stream" 2 1 64 1048576 + ExecTest "broadcastmem_on_stream" 2 1 64 1048576 ExecTest "barrier_all_on_stream" 2 1 1 }