Skip to content
Merged
Changes from 4 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
5 changes: 3 additions & 2 deletions scripts/test-triton.sh
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,9 @@ run_triton_kernels_tests() {

# available after `capture_runtime_env` call
gpu_file="$TRITON_TEST_REPORTS_DIR/gpu.txt"
if [[ -f "$gpu_file" ]] && grep -q "B580" "$gpu_file"; then
# Using any other number of processes results in an error on the BMG due to insufficient resources.
# BMG, LNL, ARLs, A770
if [[ -f "$gpu_file" ]] && grep -Eq "(B580|64a0|7d6|7d5|A770)" "$gpu_file"; then
# Using any other number of processes results in an error on small GPUs due to insufficient resources.
# FIXME: reconsider in the future
max_procs=1
else
Expand Down
Loading