From b0ab86824a8c5f99f1c1fc501fb71fc557ca035b Mon Sep 17 00:00:00 2001 From: Ron Lieberman Date: Wed, 5 Nov 2025 18:30:05 -0600 Subject: [PATCH] gfx1200 memory limits milestone3-babel swdev-565113 Please enter the commit message for your changes. Lines starting --- test/smoke-fort/milestone-3-babel-drop-1/doit.sh | 4 ++++ test/smoke-fort/milestone-3-babel/doit.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/test/smoke-fort/milestone-3-babel-drop-1/doit.sh b/test/smoke-fort/milestone-3-babel-drop-1/doit.sh index 27a5d0fb7..bd21d0bdf 100755 --- a/test/smoke-fort/milestone-3-babel-drop-1/doit.sh +++ b/test/smoke-fort/milestone-3-babel-drop-1/doit.sh @@ -6,6 +6,10 @@ set -x save_status ./milestone-3-babel -n 20 -s 100000000 # 2400.0 MB save_status +if [[ "$AOMP_GPU" =~ ^gfx12.* ]]; then + echo "$AOMP_GPU: Skipping remaining larger memory tests" + exit $rval +fi ./milestone-3-babel -n 20 -s 200000000 # 4800.0 MB save_status if [[ "$AOMP_GPU" =~ ^gfx900 ]] || diff --git a/test/smoke-fort/milestone-3-babel/doit.sh b/test/smoke-fort/milestone-3-babel/doit.sh index 7a186e7ca..b9a320877 100755 --- a/test/smoke-fort/milestone-3-babel/doit.sh +++ b/test/smoke-fort/milestone-3-babel/doit.sh @@ -11,6 +11,10 @@ save_status $PRECMD ./milestone-3-babel -n 20 -s 100000000 # 2400.0 MB save_status +if [[ "$AOMP_GPU" =~ ^gfx12.* ]]; then + echo "$AOMP_GPU: Skipping remaining larger memory tests" + exit $rval +fi $PRECMD ./milestone-3-babel -n 20 -s 200000000 # 4800.0 MB save_status if [[ "$AOMP_GPU" =~ ^gfx900 ]] ||