File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -150,16 +150,8 @@ def main(args: list[str]) -> None:
150150 options .limit_pr_builds == "true" ,
151151 ):
152152 print (f"[DEBUG] passed filter - adding to build matrix" , file = sys .stderr )
153- filtered_includes .append (item )
154-
155- # NEW: Create distributed variant for specific configs
156- # Only Python 3.10 + CUDA 13.0 for now
157- if item ["python_version" ] == "3.10" and item ["desired_cuda" ] == "cu130" :
158- print (
159- f"[DEBUG] Creating distributed config for py3.10+cu130" ,
160- file = sys .stderr ,
161- )
162- distributed_includes .append (create_distributed_config (item ))
153+ filtered_includes .append (item )
154+ distributed_includes .append (create_distributed_config (item ))
163155 else :
164156 print (f"[DEBUG] FILTERED OUT" , file = sys .stderr )
165157
You can’t perform that action at this time.
0 commit comments