Include ROCm in the list of allowed versions

This commit is contained in:
cmdr2 2023-04-18 17:36:52 +05:30
parent f22ecc454a
commit becbef4fac

View File

@ -94,6 +94,7 @@ def include_cuda_versions(module_versions: tuple) -> tuple:
allowed_versions = tuple(module_versions)
allowed_versions += tuple(f"{v}+cu116" for v in module_versions)
allowed_versions += tuple(f"{v}+cu117" for v in module_versions)
allowed_versions += tuple(f"{v}+rocm5.4.2" for v in module_versions)
return allowed_versions