File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,15 @@ def main(args: List[str]) -> None:
28
28
if all (
29
29
[
30
30
item ["python_version" ] not in disabled_python_versions ,
31
- # only test cu128 for aarch64 for now for quick CI
32
- item ["desired_cuda" ] == "cu128" ,
33
31
]
34
32
):
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 )
36
40
filtered_matrix_dict = {}
37
41
filtered_matrix_dict ["include" ] = filtered_includes
38
42
print (json .dumps (filtered_matrix_dict ))
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ pytest>=8.2.1
8
8
pytest-xdist >= 3.6.1
9
9
pyyaml
10
10
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'
13
13
--extra-index-url https://pypi.nvidia.com
You can’t perform that action at this time.
0 commit comments