mirror of
https://github.com/ml-explore/mlx.git
synced 2025-09-18 18:28:12 +08:00
rebase
This commit is contained in:
6
docs/build/html/_sources/python/_autosummary/mlx.core.bitwise_invert.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.bitwise_invert.rst
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
mlx.core.bitwise\_invert
|
||||
========================
|
||||
|
||||
.. currentmodule:: mlx.core
|
||||
|
||||
.. autofunction:: bitwise_invert
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.lu.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.lu.rst
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
mlx.core.linalg.lu
|
||||
==================
|
||||
|
||||
.. currentmodule:: mlx.core.linalg
|
||||
|
||||
.. autofunction:: lu
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.lu_factor.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.lu_factor.rst
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
mlx.core.linalg.lu\_factor
|
||||
==========================
|
||||
|
||||
.. currentmodule:: mlx.core.linalg
|
||||
|
||||
.. autofunction:: lu_factor
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.solve.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.solve.rst
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
mlx.core.linalg.solve
|
||||
=====================
|
||||
|
||||
.. currentmodule:: mlx.core.linalg
|
||||
|
||||
.. autofunction:: solve
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.solve_triangular.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.linalg.solve_triangular.rst
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
mlx.core.linalg.solve\_triangular
|
||||
=================================
|
||||
|
||||
.. currentmodule:: mlx.core.linalg
|
||||
|
||||
.. autofunction:: solve_triangular
|
@@ -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.
|
||||
|
8
docs/build/html/_sources/python/linalg.rst
vendored
8
docs/build/html/_sources/python/linalg.rst
vendored
@@ -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
|
||||
|
1
docs/build/html/_sources/python/ops.rst
vendored
1
docs/build/html/_sources/python/ops.rst
vendored
@@ -32,6 +32,7 @@ Operations
|
||||
atleast_2d
|
||||
atleast_3d
|
||||
bitwise_and
|
||||
bitwise_invert
|
||||
bitwise_or
|
||||
bitwise_xor
|
||||
block_masked_mm
|
||||
|
Reference in New Issue
Block a user