File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change 68
68
USE_NIGHTLY = True # whether to use nightly or stable libtpu and jax
69
69
70
70
_date = '20250406'
71
+
71
72
_libtpu_version = '0.0.13'
72
73
_jax_version = '0.5.4'
73
74
_jaxlib_version = '0.5.4'
74
75
75
- _libtpu_wheel_name = f'libtpu-{ _libtpu_version } '
76
- _libtpu_storage_directory = 'libtpu-lts-releases'
77
-
78
76
if USE_NIGHTLY :
79
- _libtpu_version += f".dev{ _date } "
80
- _jax_version += f".dev{ _date } "
81
- _jaxlib_version += f".dev{ _date } "
82
- _libtpu_wheel_name += f".dev{ _date } +nightly"
77
+ _jax_version += f'.dev{ _date } '
78
+ _jaxlib_version += f'.dev{ _date } '
79
+ _libtpu_wheel_name = f'libtpu-{ _libtpu_version } .dev{ _date } +nightly-py3-none-linux_x86_64'
83
80
_libtpu_storage_directory = 'libtpu-nightly-releases'
84
-
85
- _libtpu_storage_path = f'https://storage.googleapis.com/{ _libtpu_storage_directory } /wheels/libtpu/{ _libtpu_wheel_name } -py3-none-linux_x86_64.whl'
81
+ else :
82
+ # The postfix can be changed when the version is updated. Check
83
+ # https://storage.googleapis.com/libtpu-wheels/index.html for correct
84
+ # versioning.
85
+ _libtpu_wheel_name = f'libtpu-{ _libtpu_version } -py3-none-manylinux_2_31_x86_64'
86
+ _libtpu_storage_directory = 'libtpu-lts-releases'
87
+
88
+ _libtpu_storage_path = f'https://storage.googleapis.com/{ _libtpu_storage_directory } /wheels/libtpu/{ _libtpu_wheel_name } .whl'
86
89
87
90
88
91
def _get_build_mode ():
You can’t perform that action at this time.
0 commit comments