From cc727261de88d1b14b5b134f0989c30619cc291f Mon Sep 17 00:00:00 2001 From: Edgar Gabriel Date: Tue, 6 Jan 2026 08:10:46 -0600 Subject: [PATCH] disable the putmem_signal_on_stream on RO (#376) it fails in about 50% of the cases. Will revisit later why it fails, but RO is at the moment lower priority, so disabling the test for now. [ROCm/rocshmem commit: ed2f75f1de054c76ae89463fb9dde7d93a9ed824] --- projects/rocshmem/scripts/functional_tests/driver.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/projects/rocshmem/scripts/functional_tests/driver.sh b/projects/rocshmem/scripts/functional_tests/driver.sh index ff200c76af..53aa28b71b 100755 --- a/projects/rocshmem/scripts/functional_tests/driver.sh +++ b/projects/rocshmem/scripts/functional_tests/driver.sh @@ -373,7 +373,7 @@ TestAMO() { ExecTest "amo_add" 2 32 128 } -TestSigOps() { +TestSigOpsRO() { ############################################################################## # | Name | Ranks | Workgroups | Threads | Max Message Size # ############################################################################## @@ -394,10 +394,14 @@ TestSigOps() { ExecTest "wavesignalfetch" 2 1 32 ExecTest "wavesignalfetch" 2 1 64 - ExecTest "putmem_signal_on_stream" 2 1 1 1048576 ExecTest "signal_wait_until_on_stream" 2 1 1 } +TestSigOps() { + TestSigOpsRO + ExecTest "putmem_signal_on_stream" 2 1 1 1048576 +} + TestColl() { ############################################################################## # | Name | Ranks | Workgroups | Threads | Max Message Size # @@ -709,7 +713,7 @@ case $TEST in *"all-ro") TestRMAPut TestAMORO - TestSigOps + TestSigOpsRO TestColl TestOther ;;