Skip to content
Draft
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
5 changes: 3 additions & 2 deletions .github/workflows/test_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,9 @@ jobs:
# An empty GPU_ENABLE_PAL is misread as ROCr on Windows (atoi("")==0),
# whose Windows memory path OOMs some tests (e.g. rocsparse bsr*0 graph_test).
# Default unset components to the platform backend, mirroring the runtime fix
# in ROCm/rocm-systems#8050 (Windows -> PAL, Linux -> ROCr).
GPU_ENABLE_PAL: ${{ fromJSON(inputs.component).gpu_enable_pal || (inputs.platform == 'windows' && '1' || '0') }}
# in ROCm/rocm-systems#8050 (Windows -> Rocr, Linux -> ROCr).
# Change default to Rocr backend on Windows
GPU_ENABLE_PAL: ${{ fromJSON(inputs.component).gpu_enable_pal || '0' }}
RETRY_THIS_STEP: "true"
RETRY_COUNT: "1"
RETRY_DELAY: "7"
Expand Down
3 changes: 2 additions & 1 deletion build_tools/github_actions/fetch_test_configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,7 @@ def run():
"total_shards": total_shards,
"test_type": test_type,
"shard_arr": shard_arr,
"expect_failure": True, # Non fatal- just for Info
"gpu_enable_pal": "1",
}
all_components.append(pal_entry)
Expand All @@ -844,7 +845,7 @@ def run():
"total_shards": total_shards,
"test_type": test_type,
"shard_arr": shard_arr,
"expect_failure": True,
"expect_failure": False, # Default and Fatal
"gpu_enable_pal": "0",
}
all_components.append(rocr_entry)
Expand Down
2 changes: 1 addition & 1 deletion rocm-systems
Submodule rocm-systems updated 322 files
Loading