Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions test/smoke-fort/milestone-3-babel-drop-1/doit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would limit it to gfx1200 and gfx1201

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 ]] ||
Expand Down
4 changes: 4 additions & 0 deletions test/smoke-fort/milestone-3-babel/doit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ save_status

$PRECMD ./milestone-3-babel -n 20 -s 100000000 # 2400.0 MB
save_status
if [[ "$AOMP_GPU" =~ ^gfx12.* ]]; then
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto

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 ]] ||
Expand Down