Skip to content

Commit bf3554c

Browse files
committed
change base image
1 parent d3a3bb2 commit bf3554c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/scripts/filter-matrix.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,15 @@ def main(args: List[str]) -> None:
2828
if all(
2929
[
3030
item["python_version"] not in disabled_python_versions,
31-
# only test cu128 for aarch64 for now for quick CI
32-
item["desired_cuda"] == "cu128",
3331
]
3432
):
35-
filtered_includes.append(item)
33+
if item["gpu_arch_type"] == "cuda-aarch64":
34+
# for aarch64 only test cu128 for now for quick CI
35+
if item["desired_cuda"] == "cu128":
36+
item["container_image"] = "sameli/manylinux_2_34_x86_64_cuda_12.8"
37+
filtered_includes.append(item)
38+
else:
39+
filtered_includes.append(item)
3640
filtered_matrix_dict = {}
3741
filtered_matrix_dict["include"] = filtered_includes
3842
print(json.dumps(filtered_matrix_dict))

tests/py/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ pytest>=8.2.1
88
pytest-xdist>=3.6.1
99
pyyaml
1010
timm>=1.0.3
11-
transformers==4.40.2
12-
nvidia-modelopt[deploy,hf,torch]~=0.17.0
11+
transformers==4.49.0
12+
nvidia-modelopt[all]~=0.27.0; python_version >'3.9' and python_version <'3.13'
1313
--extra-index-url https://pypi.nvidia.com

0 commit comments

Comments
 (0)