This commit is contained in:
CircleCI Docs
2025-02-14 21:44:39 +00:00
parent cc43b2d401
commit 81f84f87d1
748 changed files with 24254 additions and 13906 deletions

View File

@@ -0,0 +1,6 @@
mlx.core.bitwise\_invert
========================
.. currentmodule:: mlx.core
.. autofunction:: bitwise_invert

View File

@@ -0,0 +1,6 @@
mlx.core.linalg.lu
==================
.. currentmodule:: mlx.core.linalg
.. autofunction:: lu

View File

@@ -0,0 +1,6 @@
mlx.core.linalg.lu\_factor
==========================
.. currentmodule:: mlx.core.linalg
.. autofunction:: lu_factor

View File

@@ -0,0 +1,6 @@
mlx.core.linalg.solve
=====================
.. currentmodule:: mlx.core.linalg
.. autofunction:: solve

View File

@@ -0,0 +1,6 @@
mlx.core.linalg.solve\_triangular
=================================
.. currentmodule:: mlx.core.linalg
.. autofunction:: solve_triangular

View File

@@ -51,11 +51,20 @@ The default floating point type is ``float32`` and the default integer type is
* - ``float32``
- 4
- 32-bit float
* - ``float64``
- 4
- 64-bit double
* - ``complex64``
- 8
- 64-bit complex float
.. note::
Arrays with type ``float64`` only work with CPU operations. Using
``float64`` arrays on the GPU will result in an exception.
Data type are aranged in a hierarchy. See the :obj:`DtypeCategory` object
documentation for more information. Use :func:`issubdtype` to determine if one
``dtype`` (or category) is a subtype of another category.

View File

@@ -5,8 +5,8 @@ Linear Algebra
.. currentmodule:: mlx.core.linalg
.. autosummary::
:toctree: _autosummary
.. autosummary::
:toctree: _autosummary
inv
tri_inv
@@ -18,3 +18,7 @@ Linear Algebra
svd
eigvalsh
eigh
lu
lu_factor
solve
solve_triangular

View File

@@ -32,6 +32,7 @@ Operations
atleast_2d
atleast_3d
bitwise_and
bitwise_invert
bitwise_or
bitwise_xor
block_masked_mm