Skip to content

Commit

Permalink
Start: Override ROCm env variables
Browse files Browse the repository at this point in the history
These are used for supporting GPUs that are not on the "officially
supported list".

Signed-off-by: kingbri <[email protected]>
  • Loading branch information
bdashore3 committed Jan 3, 2024
1 parent c980f35 commit fc27ba4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ def get_requirements_file():
# TODO: Check if the user has an AMD gpu on windows
if ROCM_PATH:
requirements_name = "requirements-amd"

# Also override env vars for ROCm support on non-supported GPUs
os.environ["ROCM_PATH"] = '/opt/rocm'
os.environ["HSA_OVERRIDE_GFX_VERSION"] = '10.3.0'
os.environ["HCC_AMDGPU_TARGET"] = 'gfx1030'
elif CUDA_PATH:
cuda_version = pathlib.Path(CUDA_PATH).name
if "12" in cuda_version:
Expand Down

0 comments on commit fc27ba4

Please sign in to comment.