Skip to content

Commit 3b4d548

Browse files
authored
Bump extension MLX version (#1350)
* Bump extension MLX version * fix some docs nits
1 parent 684e11c commit 3b4d548

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/src/python/ops.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Operations
4444
convolve
4545
conv1d
4646
conv2d
47+
conv3d
4748
conv_general
4849
cos
4950
cosh

examples/extensions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires = [
33
"setuptools>=42",
44
"cmake>=3.24",
5-
"mlx>=0.16.2",
5+
"mlx>=0.17.0",
66
"nanobind==2.1.0",
77
]
88
build-backend = "setuptools.build_meta"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
setuptools>=42
22
cmake>=3.24
3-
mlx>=0.16.2
3+
mlx>=0.17.0
44
nanobind==2.1.0

python/src/fast.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,12 @@ void init_fast(nb::module_& parent_module) {
102102
implementation which rotates consecutive dimensions.
103103
base (float, optional): The base used to compute angular frequency for
104104
each dimension in the positional encodings. Exactly one of ``base`` and
105-
``freqs`` must be ``None``.
105+
``freqs`` must be ``None``.
106106
scale (float): The scale used to scale the positions.
107107
offset (int): The position offset to start at.
108108
freqs (array, optional): Optional frequencies to use with RoPE.
109-
If set, the ``base`` parameter must be ``None``. ``Default: None``.
109+
If set, the ``base`` parameter must be ``None``. Default: ``None``.
110+
110111
Returns:
111112
array: The output array.
112113
)pbdoc");

0 commit comments

Comments
 (0)