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
7 changes: 4 additions & 3 deletions .github/workflows/rocm-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2024-2025, Advanced Micro Devices, Inc. All rights reserved.
# Copyright (c) 2024-2026, Advanced Micro Devices, Inc. All rights reserved.
#
# See LICENSE for license information.

Expand Down Expand Up @@ -252,9 +252,10 @@ jobs:
HIP_VISIBLE_DEVICES=2 ci/jax.sh > /workspace/jax_sgpu.log 2>&1 &
jax_pid=$!; echo JAX test pid $!

ci/core.sh > /workspace/core_sgpu.log 2>&1
core_rc=$?
HIP_VISIBLE_DEVICES=3 ci/core.sh > /workspace/core_sgpu.log 2>&1 &
core_pid=$!; echo Core test pid $!

wait $core_pid; core_rc=$?
wait $jax_pid; jax_rc=$?
wait $torch_pid; torch_rc=$?

Expand Down
4 changes: 2 additions & 2 deletions ci/core.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (c) 2024-2025, Advanced Micro Devices, Inc. All rights reserved.
# Copyright (c) 2024-2026, Advanced Micro Devices, Inc. All rights reserved.
#
# See LICENSE for license information.

Expand All @@ -13,7 +13,7 @@ if [ -z "$TEST_SGPU" ]; then
exit 0
fi

n_parallel_jobs=8
n_parallel_jobs=4

configure_omp_threads $n_parallel_jobs

Expand Down
4 changes: 3 additions & 1 deletion ci/pytorch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ run_test_config(){
run_default_fa 1 test_fused_router.py
run_default_fa 1 test_fusible_ops.py
run_default_fa 1 test_gemm_autotune.py
run_default_fa 1 test_gemm_sm_count.py
run 1 test_gqa.py
run 1 test_jit.py
run_default_fa 1 test_multi_tensor.py
Expand Down Expand Up @@ -88,6 +87,9 @@ run_test_config_mgpu(){
echo ==== Run mGPU with Fused attention backend: $_fus_attn ====
configure_omp_threads 8
run_default_fa 1 test_fused_optimizer.py
#this test is not really mGPU but time sensitive so run it here because sGPU tests
#run in parallel on CI and it affects timing
run_default_fa 1 test_gemm_sm_count.py
run_default_fa 3 test_sanity_import.py
run_default_fa 2 distributed/test_fusible_ops.py
run_default_fa 2 distributed/test_numerics.py
Expand Down