Skip to content

Commit 4ad5341

Browse files
authored
fix cuda pypi package (#2423)
* fix cuda pypi package * patch bump
1 parent d1165b2 commit 4ad5341

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

mlx/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define MLX_VERSION_MAJOR 0
66
#define MLX_VERSION_MINOR 27
7-
#define MLX_VERSION_PATCH 0
7+
#define MLX_VERSION_PATCH 1
88
#define MLX_VERSION_NUMERIC \
99
(100000 * MLX_VERSION_MAJOR + 1000 * MLX_VERSION_MINOR + MLX_VERSION_PATCH)
1010

python/scripts/repair_cuda.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ auditwheel repair dist/* \
55
--exclude libcublas* \
66
--exclude libnvrtc* \
77
--exclude libcuda* \
8+
--exclude libcudnn* \
89
-w wheel_tmp
910

1011

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def get_tag(self) -> tuple[str, str, str]:
289289
install_requires += [
290290
"nvidia-cublas-cu12==12.9.*",
291291
"nvidia-cuda-nvrtc-cu12==12.9.*",
292-
"nvidia-cudnn-cu12==12.9.*",
292+
"nvidia-cudnn-cu12==9.*",
293293
]
294294
else:
295295
name = "mlx-cpu"

0 commit comments

Comments
 (0)