Skip to content

Commit 33e668f

Browse files
committed
Make nvidia version data optional for ROCm builds
(cherry picked from commit 730790a)
1 parent 08fcdb7 commit 33e668f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jaxlib/tools/build_gpu_kernels_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
parser.add_argument(
6868
"--nvidia_wheel_versions_data",
6969
default=None,
70-
required=True,
70+
required=False,
7171
help="NVIDIA wheel versions data",
7272
)
7373
args = parser.parse_args()

jaxlib/tools/build_gpu_plugin_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
parser.add_argument(
7474
"--nvidia_wheel_versions_data",
7575
default=None,
76-
required=True,
76+
required=False,
7777
help="NVIDIA wheel versions data",
7878
)
7979
args = parser.parse_args()

0 commit comments

Comments
 (0)