mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-16 22:11:15 +08:00
docs update
This commit is contained in:
parent
26a558640a
commit
6c95d8a378
2
docs/build/html/.buildinfo
vendored
2
docs/build/html/.buildinfo
vendored
@ -1,4 +1,4 @@
|
|||||||
# Sphinx build info version 1
|
# Sphinx build info version 1
|
||||||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
||||||
config: 70a05ae046265db2aef951be8fa0072d
|
config: 0404ad38f8b7b0d4bcdda401dd97c652
|
||||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||||
|
BIN
docs/build/html/_images/capture.png
vendored
Normal file
BIN
docs/build/html/_images/capture.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
BIN
docs/build/html/_images/schema.png
vendored
Normal file
BIN
docs/build/html/_images/schema.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 746 KiB |
2
docs/build/html/_sources/dev/extensions.rst
vendored
2
docs/build/html/_sources/dev/extensions.rst
vendored
@ -223,7 +223,7 @@ Let's re-implement our operation now in terms of our :class:`Axpby` primitive.
|
|||||||
/* const std::vector<int>& shape = */ out_shape,
|
/* const std::vector<int>& shape = */ out_shape,
|
||||||
/* Dtype dtype = */ out_dtype,
|
/* Dtype dtype = */ out_dtype,
|
||||||
/* std::unique_ptr<Primitive> primitive = */
|
/* std::unique_ptr<Primitive> primitive = */
|
||||||
std::make_unique<Axpby>(to_stream(s), alpha, beta),
|
std::make_shared<Axpby>(to_stream(s), alpha, beta),
|
||||||
/* const std::vector<array>& inputs = */ broadcasted_inputs);
|
/* const std::vector<array>& inputs = */ broadcasted_inputs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
52
docs/build/html/_sources/dev/metal_debugger.rst
vendored
Normal file
52
docs/build/html/_sources/dev/metal_debugger.rst
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
Metal Debugger
|
||||||
|
==============
|
||||||
|
|
||||||
|
Profiling is a key step for performance optimization. You can build MLX with
|
||||||
|
the ``MLX_METAL_DEBUG`` option to improve the Metal debugging and optimization
|
||||||
|
workflow. The ``MLX_METAL_DEBUG`` debug option:
|
||||||
|
|
||||||
|
* Records source during Metal compilation, for later inspection while
|
||||||
|
debugging.
|
||||||
|
* Labels Metal objects such as command queues, improving capture readability.
|
||||||
|
|
||||||
|
The ``metal::start_capture`` function initiates a capture of all MLX GPU work.
|
||||||
|
|
||||||
|
.. code-block:: C++
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
metal::start_capture("/Users/Jane/Developer/MLX.gputrace");
|
||||||
|
|
||||||
|
auto a = arange(10.f, 20.f, 1.f, float32);
|
||||||
|
auto b = arange(30.f, 40.f, 1.f, float32);
|
||||||
|
auto c = add(a, b);
|
||||||
|
|
||||||
|
eval(c);
|
||||||
|
|
||||||
|
metal::stop_capture();
|
||||||
|
}
|
||||||
|
|
||||||
|
You can open and replay the GPU trace in Xcode. The ``Dependencies`` view
|
||||||
|
has a great overview of all operations. Checkout the `Metal debugger
|
||||||
|
documentation`_ for more information.
|
||||||
|
|
||||||
|
.. image:: ../_static/metal_debugger/capture.png
|
||||||
|
:class: dark-light
|
||||||
|
|
||||||
|
Xcode Workflow
|
||||||
|
--------------
|
||||||
|
|
||||||
|
You can skip saving to a path by running within Xcode. First, generate an Xcode
|
||||||
|
project using CMake.
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake .. -DMLX_METAL_DEBUG=ON -G Xcode
|
||||||
|
open mlx.xcodeproj
|
||||||
|
|
||||||
|
Select the ``metal_capture`` example schema and run.
|
||||||
|
|
||||||
|
.. image:: ../_static/metal_debugger/schema.png
|
||||||
|
:class: dark-light
|
||||||
|
|
||||||
|
.. _`Metal debugger documentation`: https://developer.apple.com/documentation/xcode/metal-debugger
|
3
docs/build/html/_sources/index.rst
vendored
3
docs/build/html/_sources/index.rst
vendored
@ -58,10 +58,12 @@ are the CPU and GPU.
|
|||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
python/array
|
python/array
|
||||||
|
python/data_types
|
||||||
python/devices_and_streams
|
python/devices_and_streams
|
||||||
python/ops
|
python/ops
|
||||||
python/random
|
python/random
|
||||||
python/transforms
|
python/transforms
|
||||||
|
python/fast
|
||||||
python/fft
|
python/fft
|
||||||
python/linalg
|
python/linalg
|
||||||
python/metal
|
python/metal
|
||||||
@ -80,3 +82,4 @@ are the CPU and GPU.
|
|||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
dev/extensions
|
dev/extensions
|
||||||
|
dev/metal_debugger
|
||||||
|
11
docs/build/html/_sources/install.rst
vendored
11
docs/build/html/_sources/install.rst
vendored
@ -70,16 +70,13 @@ To build and install the MLX python library from source, first, clone MLX from
|
|||||||
|
|
||||||
git clone git@github.com:ml-explore/mlx.git mlx && cd mlx
|
git clone git@github.com:ml-explore/mlx.git mlx && cd mlx
|
||||||
|
|
||||||
Make sure that you have `pybind11 <https://pybind11.readthedocs.io/en/stable/index.html>`_
|
Install `nanobind <https://nanobind.readthedocs.io/en/latest/>`_ with:
|
||||||
installed. You can install ``pybind11`` with ``pip``, ``brew`` or ``conda`` as follows:
|
|
||||||
|
|
||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
||||||
pip install "pybind11[global]"
|
pip install git+https://github.com/wjakob/nanobind.git
|
||||||
conda install pybind11
|
|
||||||
brew install pybind11
|
|
||||||
|
|
||||||
Then simply build and install it using pip:
|
Then simply build and install MLX using pip:
|
||||||
|
|
||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
||||||
@ -158,6 +155,8 @@ should point to the path to the built metal library.
|
|||||||
- ON
|
- ON
|
||||||
* - MLX_BUILD_PYTHON_BINDINGS
|
* - MLX_BUILD_PYTHON_BINDINGS
|
||||||
- OFF
|
- OFF
|
||||||
|
* - MLX_METAL_DEBUG
|
||||||
|
- OFF
|
||||||
|
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
22
docs/build/html/_sources/python/_autosummary/mlx.core.DtypeCategory.rst
vendored
Normal file
22
docs/build/html/_sources/python/_autosummary/mlx.core.DtypeCategory.rst
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
mlx.core.DtypeCategory
|
||||||
|
======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autoclass:: DtypeCategory
|
||||||
|
|
||||||
|
|
||||||
|
.. automethod:: __init__
|
||||||
|
|
||||||
|
|
||||||
|
.. rubric:: Methods
|
||||||
|
|
||||||
|
.. autosummary::
|
||||||
|
|
||||||
|
~DtypeCategory.__init__
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.at.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.at.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.at
|
||||||
|
=================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autoproperty:: array.at
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cummax.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cummax.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.cummax
|
||||||
|
=====================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.cummax
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cummin.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cummin.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.cummin
|
||||||
|
=====================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.cummin
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cumprod.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cumprod.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.cumprod
|
||||||
|
======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.cumprod
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cumsum.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.cumsum.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.cumsum
|
||||||
|
=====================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.cumsum
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.diag.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.diag.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.diag
|
||||||
|
===================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.diag
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.diagonal.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.diagonal.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.diagonal
|
||||||
|
=======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.diagonal
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.flatten.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.flatten.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.flatten
|
||||||
|
======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.flatten
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.itemsize.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.itemsize.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.itemsize
|
||||||
|
=======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autoproperty:: array.itemsize
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.log10.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.log10.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.log10
|
||||||
|
====================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.log10
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.log2.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.log2.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.log2
|
||||||
|
===================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.log2
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.moveaxis.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.moveaxis.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.moveaxis
|
||||||
|
=======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.moveaxis
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.nbytes.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.nbytes.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.nbytes
|
||||||
|
=====================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autoproperty:: array.nbytes
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.squeeze.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.squeeze.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.squeeze
|
||||||
|
======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.squeeze
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.swapaxes.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.array.swapaxes.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.array.swapaxes
|
||||||
|
=======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. automethod:: array.swapaxes
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.cummax.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.cummax.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.cummax
|
||||||
|
===============
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autofunction:: cummax
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.cummin.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.cummin.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.cummin
|
||||||
|
===============
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autofunction:: cummin
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.cumprod.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.cumprod.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.cumprod
|
||||||
|
================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autofunction:: cumprod
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.cumsum.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.cumsum.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.cumsum
|
||||||
|
===============
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autofunction:: cumsum
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.layer_norm.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.layer_norm.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.fast.layer\_norm
|
||||||
|
=========================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core.fast
|
||||||
|
|
||||||
|
.. autofunction:: layer_norm
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.rms_norm.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.rms_norm.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.fast.rms\_norm
|
||||||
|
=======================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core.fast
|
||||||
|
|
||||||
|
.. autofunction:: rms_norm
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.rope.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.rope.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.fast.rope
|
||||||
|
==================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core.fast
|
||||||
|
|
||||||
|
.. autofunction:: rope
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.scaled_dot_product_attention.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.fast.scaled_dot_product_attention.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.fast.scaled\_dot\_product\_attention
|
||||||
|
=============================================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core.fast
|
||||||
|
|
||||||
|
.. autofunction:: scaled_dot_product_attention
|
6
docs/build/html/_sources/python/_autosummary/mlx.core.issubdtype.rst
vendored
Normal file
6
docs/build/html/_sources/python/_autosummary/mlx.core.issubdtype.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.core.issubdtype
|
||||||
|
===================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core
|
||||||
|
|
||||||
|
.. autofunction:: issubdtype
|
17
docs/build/html/_sources/python/array.rst
vendored
17
docs/build/html/_sources/python/array.rst
vendored
@ -10,27 +10,38 @@ Array
|
|||||||
|
|
||||||
array
|
array
|
||||||
array.astype
|
array.astype
|
||||||
|
array.at
|
||||||
array.item
|
array.item
|
||||||
array.tolist
|
array.tolist
|
||||||
array.dtype
|
array.dtype
|
||||||
|
array.itemsize
|
||||||
|
array.nbytes
|
||||||
array.ndim
|
array.ndim
|
||||||
array.shape
|
array.shape
|
||||||
array.size
|
array.size
|
||||||
Dtype
|
|
||||||
array.abs
|
array.abs
|
||||||
array.all
|
array.all
|
||||||
array.any
|
array.any
|
||||||
array.argmax
|
array.argmax
|
||||||
array.argmin
|
array.argmin
|
||||||
array.cos
|
array.cos
|
||||||
array.dtype
|
array.cummax
|
||||||
|
array.cummin
|
||||||
|
array.cumprod
|
||||||
|
array.cumsum
|
||||||
|
array.diag
|
||||||
|
array.diagonal
|
||||||
array.exp
|
array.exp
|
||||||
|
array.flatten
|
||||||
array.log
|
array.log
|
||||||
|
array.log10
|
||||||
array.log1p
|
array.log1p
|
||||||
|
array.log2
|
||||||
array.logsumexp
|
array.logsumexp
|
||||||
array.max
|
array.max
|
||||||
array.mean
|
array.mean
|
||||||
array.min
|
array.min
|
||||||
|
array.moveaxis
|
||||||
array.prod
|
array.prod
|
||||||
array.reciprocal
|
array.reciprocal
|
||||||
array.reshape
|
array.reshape
|
||||||
@ -40,6 +51,8 @@ Array
|
|||||||
array.split
|
array.split
|
||||||
array.sqrt
|
array.sqrt
|
||||||
array.square
|
array.square
|
||||||
|
array.squeeze
|
||||||
|
array.swapaxes
|
||||||
array.sum
|
array.sum
|
||||||
array.transpose
|
array.transpose
|
||||||
array.T
|
array.T
|
||||||
|
22
docs/build/html/_sources/python/data_types.rst
vendored
22
docs/build/html/_sources/python/data_types.rst
vendored
@ -1,7 +1,5 @@
|
|||||||
.. _data_types:
|
.. _data_types:
|
||||||
|
|
||||||
:orphan:
|
|
||||||
|
|
||||||
Data Types
|
Data Types
|
||||||
==========
|
==========
|
||||||
|
|
||||||
@ -44,9 +42,27 @@ The default floating point type is ``float32`` and the default integer type is
|
|||||||
* - ``int64``
|
* - ``int64``
|
||||||
- 8
|
- 8
|
||||||
- 64-bit signed integer
|
- 64-bit signed integer
|
||||||
|
* - ``bfloat16``
|
||||||
|
- 2
|
||||||
|
- 16-bit brain float (e8, m7)
|
||||||
* - ``float16``
|
* - ``float16``
|
||||||
- 2
|
- 2
|
||||||
- 16-bit float, only available with `ARM C language extensions <https://developer.arm.com/documentation/101028/0012/3--C-language-extensions?lang=en>`_
|
- 16-bit IEEE float (e5, m10)
|
||||||
* - ``float32``
|
* - ``float32``
|
||||||
- 4
|
- 4
|
||||||
- 32-bit float
|
- 32-bit float
|
||||||
|
* - ``complex64``
|
||||||
|
- 8
|
||||||
|
- 64-bit complex float
|
||||||
|
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
.. autosummary::
|
||||||
|
:toctree: _autosummary
|
||||||
|
|
||||||
|
Dtype
|
||||||
|
DtypeCategory
|
||||||
|
issubdtype
|
||||||
|
14
docs/build/html/_sources/python/fast.rst
vendored
Normal file
14
docs/build/html/_sources/python/fast.rst
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
.. _fast:
|
||||||
|
|
||||||
|
Fast
|
||||||
|
====
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.core.fast
|
||||||
|
|
||||||
|
.. autosummary::
|
||||||
|
:toctree: _autosummary
|
||||||
|
|
||||||
|
rms_norm
|
||||||
|
layer_norm
|
||||||
|
rope
|
||||||
|
scaled_dot_product_attention
|
6
docs/build/html/_sources/python/nn/_autosummary/mlx.nn.Module.set_dtype.rst
vendored
Normal file
6
docs/build/html/_sources/python/nn/_autosummary/mlx.nn.Module.set_dtype.rst
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
mlx.nn.Module.set\_dtype
|
||||||
|
========================
|
||||||
|
|
||||||
|
.. currentmodule:: mlx.nn
|
||||||
|
|
||||||
|
.. automethod:: Module.set_dtype
|
@ -30,6 +30,7 @@ Module
|
|||||||
Module.named_modules
|
Module.named_modules
|
||||||
Module.parameters
|
Module.parameters
|
||||||
Module.save_weights
|
Module.save_weights
|
||||||
|
Module.set_dtype
|
||||||
Module.train
|
Module.train
|
||||||
Module.trainable_parameters
|
Module.trainable_parameters
|
||||||
Module.unfreeze
|
Module.unfreeze
|
||||||
|
10
docs/build/html/_sources/python/ops.rst
vendored
10
docs/build/html/_sources/python/ops.rst
vendored
@ -38,6 +38,10 @@ Operations
|
|||||||
conv_general
|
conv_general
|
||||||
cos
|
cos
|
||||||
cosh
|
cosh
|
||||||
|
cummax
|
||||||
|
cummin
|
||||||
|
cumprod
|
||||||
|
cumsum
|
||||||
dequantize
|
dequantize
|
||||||
diag
|
diag
|
||||||
diagonal
|
diagonal
|
||||||
@ -58,10 +62,10 @@ Operations
|
|||||||
identity
|
identity
|
||||||
inner
|
inner
|
||||||
isclose
|
isclose
|
||||||
isnan
|
|
||||||
isposinf
|
|
||||||
isneginf
|
|
||||||
isinf
|
isinf
|
||||||
|
isnan
|
||||||
|
isneginf
|
||||||
|
isposinf
|
||||||
less
|
less
|
||||||
less_equal
|
less_equal
|
||||||
linspace
|
linspace
|
||||||
|
@ -49,7 +49,7 @@ it will be added. You can load the array with:
|
|||||||
|
|
||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
||||||
>>> mx.load("array.npy", a)
|
>>> mx.load("array.npy")
|
||||||
array([1], dtype=float32)
|
array([1], dtype=float32)
|
||||||
|
|
||||||
Here's an example of saving several arrays to a single file:
|
Here's an example of saving several arrays to a single file:
|
||||||
|
55
docs/build/html/_static/basic.css
vendored
55
docs/build/html/_static/basic.css
vendored
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Sphinx stylesheet -- basic theme.
|
* Sphinx stylesheet -- basic theme.
|
||||||
*
|
*
|
||||||
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
|
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
|
||||||
* :license: BSD, see LICENSE for details.
|
* :license: BSD, see LICENSE for details.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -237,6 +237,10 @@ a.headerlink {
|
|||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #551A8B;
|
||||||
|
}
|
||||||
|
|
||||||
h1:hover > a.headerlink,
|
h1:hover > a.headerlink,
|
||||||
h2:hover > a.headerlink,
|
h2:hover > a.headerlink,
|
||||||
h3:hover > a.headerlink,
|
h3:hover > a.headerlink,
|
||||||
@ -324,17 +328,17 @@ aside.sidebar {
|
|||||||
p.sidebar-title {
|
p.sidebar-title {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav.contents,
|
nav.contents,
|
||||||
aside.topic,
|
aside.topic,
|
||||||
|
|
||||||
div.admonition, div.topic, blockquote {
|
div.admonition, div.topic, blockquote {
|
||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -- topics ---------------------------------------------------------------- */
|
/* -- topics ---------------------------------------------------------------- */
|
||||||
|
|
||||||
nav.contents,
|
nav.contents,
|
||||||
aside.topic,
|
aside.topic,
|
||||||
|
|
||||||
div.topic {
|
div.topic {
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
@ -375,7 +379,6 @@ div.sidebar > :last-child,
|
|||||||
aside.sidebar > :last-child,
|
aside.sidebar > :last-child,
|
||||||
nav.contents > :last-child,
|
nav.contents > :last-child,
|
||||||
aside.topic > :last-child,
|
aside.topic > :last-child,
|
||||||
|
|
||||||
div.topic > :last-child,
|
div.topic > :last-child,
|
||||||
div.admonition > :last-child {
|
div.admonition > :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
@ -385,7 +388,6 @@ div.sidebar::after,
|
|||||||
aside.sidebar::after,
|
aside.sidebar::after,
|
||||||
nav.contents::after,
|
nav.contents::after,
|
||||||
aside.topic::after,
|
aside.topic::after,
|
||||||
|
|
||||||
div.topic::after,
|
div.topic::after,
|
||||||
div.admonition::after,
|
div.admonition::after,
|
||||||
blockquote::after {
|
blockquote::after {
|
||||||
@ -611,25 +613,6 @@ ul.simple p {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Docutils 0.17 and older (footnotes & citations) */
|
|
||||||
dl.footnote > dt,
|
|
||||||
dl.citation > dt {
|
|
||||||
float: left;
|
|
||||||
margin-right: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
dl.footnote > dd,
|
|
||||||
dl.citation > dd {
|
|
||||||
margin-bottom: 0em;
|
|
||||||
}
|
|
||||||
|
|
||||||
dl.footnote > dd:after,
|
|
||||||
dl.citation > dd:after {
|
|
||||||
content: "";
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Docutils 0.18+ (footnotes & citations) */
|
|
||||||
aside.footnote > span,
|
aside.footnote > span,
|
||||||
div.citation > span {
|
div.citation > span {
|
||||||
float: left;
|
float: left;
|
||||||
@ -654,8 +637,6 @@ div.citation > p:last-of-type:after {
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Footnotes & citations ends */
|
|
||||||
|
|
||||||
dl.field-list {
|
dl.field-list {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: fit-content(30%) auto;
|
grid-template-columns: fit-content(30%) auto;
|
||||||
@ -668,10 +649,6 @@ dl.field-list > dt {
|
|||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl.field-list > dt:after {
|
|
||||||
content: ":";
|
|
||||||
}
|
|
||||||
|
|
||||||
dl.field-list > dd {
|
dl.field-list > dd {
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
margin-top: 0em;
|
margin-top: 0em;
|
||||||
@ -697,6 +674,16 @@ dd {
|
|||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sig dd {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sig dl {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
dl > dd:last-child,
|
dl > dd:last-child,
|
||||||
dl > dd:last-child > :last-child {
|
dl > dd:last-child > :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
@ -765,6 +752,14 @@ abbr, acronym {
|
|||||||
cursor: help;
|
cursor: help;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.translated {
|
||||||
|
background-color: rgba(207, 255, 207, 0.2)
|
||||||
|
}
|
||||||
|
|
||||||
|
.untranslated {
|
||||||
|
background-color: rgba(255, 207, 207, 0.2)
|
||||||
|
}
|
||||||
|
|
||||||
/* -- code displays --------------------------------------------------------- */
|
/* -- code displays --------------------------------------------------------- */
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
132
docs/build/html/_static/doctools.js
vendored
132
docs/build/html/_static/doctools.js
vendored
@ -4,12 +4,19 @@
|
|||||||
*
|
*
|
||||||
* Base JavaScript utilities for all Sphinx HTML documentation.
|
* Base JavaScript utilities for all Sphinx HTML documentation.
|
||||||
*
|
*
|
||||||
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
|
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
|
||||||
* :license: BSD, see LICENSE for details.
|
* :license: BSD, see LICENSE for details.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([
|
||||||
|
"TEXTAREA",
|
||||||
|
"INPUT",
|
||||||
|
"SELECT",
|
||||||
|
"BUTTON",
|
||||||
|
]);
|
||||||
|
|
||||||
const _ready = (callback) => {
|
const _ready = (callback) => {
|
||||||
if (document.readyState !== "loading") {
|
if (document.readyState !== "loading") {
|
||||||
callback();
|
callback();
|
||||||
@ -18,73 +25,11 @@ const _ready = (callback) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* highlight a given string on a node by wrapping it in
|
|
||||||
* span elements with the given class name.
|
|
||||||
*/
|
|
||||||
const _highlight = (node, addItems, text, className) => {
|
|
||||||
if (node.nodeType === Node.TEXT_NODE) {
|
|
||||||
const val = node.nodeValue;
|
|
||||||
const parent = node.parentNode;
|
|
||||||
const pos = val.toLowerCase().indexOf(text);
|
|
||||||
if (
|
|
||||||
pos >= 0 &&
|
|
||||||
!parent.classList.contains(className) &&
|
|
||||||
!parent.classList.contains("nohighlight")
|
|
||||||
) {
|
|
||||||
let span;
|
|
||||||
|
|
||||||
const closestNode = parent.closest("body, svg, foreignObject");
|
|
||||||
const isInSVG = closestNode && closestNode.matches("svg");
|
|
||||||
if (isInSVG) {
|
|
||||||
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
|
|
||||||
} else {
|
|
||||||
span = document.createElement("span");
|
|
||||||
span.classList.add(className);
|
|
||||||
}
|
|
||||||
|
|
||||||
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
|
|
||||||
parent.insertBefore(
|
|
||||||
span,
|
|
||||||
parent.insertBefore(
|
|
||||||
document.createTextNode(val.substr(pos + text.length)),
|
|
||||||
node.nextSibling
|
|
||||||
)
|
|
||||||
);
|
|
||||||
node.nodeValue = val.substr(0, pos);
|
|
||||||
|
|
||||||
if (isInSVG) {
|
|
||||||
const rect = document.createElementNS(
|
|
||||||
"http://www.w3.org/2000/svg",
|
|
||||||
"rect"
|
|
||||||
);
|
|
||||||
const bbox = parent.getBBox();
|
|
||||||
rect.x.baseVal.value = bbox.x;
|
|
||||||
rect.y.baseVal.value = bbox.y;
|
|
||||||
rect.width.baseVal.value = bbox.width;
|
|
||||||
rect.height.baseVal.value = bbox.height;
|
|
||||||
rect.setAttribute("class", className);
|
|
||||||
addItems.push({ parent: parent, target: rect });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (node.matches && !node.matches("button, select, textarea")) {
|
|
||||||
node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const _highlightText = (thisNode, text, className) => {
|
|
||||||
let addItems = [];
|
|
||||||
_highlight(thisNode, addItems, text, className);
|
|
||||||
addItems.forEach((obj) =>
|
|
||||||
obj.parent.insertAdjacentElement("beforebegin", obj.target)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Small JavaScript module for the documentation.
|
* Small JavaScript module for the documentation.
|
||||||
*/
|
*/
|
||||||
const Documentation = {
|
const Documentation = {
|
||||||
init: () => {
|
init: () => {
|
||||||
Documentation.highlightSearchWords();
|
|
||||||
Documentation.initDomainIndexTable();
|
Documentation.initDomainIndexTable();
|
||||||
Documentation.initOnKeyListeners();
|
Documentation.initOnKeyListeners();
|
||||||
},
|
},
|
||||||
@ -126,51 +71,6 @@ const Documentation = {
|
|||||||
Documentation.LOCALE = catalog.locale;
|
Documentation.LOCALE = catalog.locale;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* highlight the search words provided in the url in the text
|
|
||||||
*/
|
|
||||||
highlightSearchWords: () => {
|
|
||||||
const highlight =
|
|
||||||
new URLSearchParams(window.location.search).get("highlight") || "";
|
|
||||||
const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
|
|
||||||
if (terms.length === 0) return; // nothing to do
|
|
||||||
|
|
||||||
// There should never be more than one element matching "div.body"
|
|
||||||
const divBody = document.querySelectorAll("div.body");
|
|
||||||
const body = divBody.length ? divBody[0] : document.querySelector("body");
|
|
||||||
window.setTimeout(() => {
|
|
||||||
terms.forEach((term) => _highlightText(body, term, "highlighted"));
|
|
||||||
}, 10);
|
|
||||||
|
|
||||||
const searchBox = document.getElementById("searchbox");
|
|
||||||
if (searchBox === null) return;
|
|
||||||
searchBox.appendChild(
|
|
||||||
document
|
|
||||||
.createRange()
|
|
||||||
.createContextualFragment(
|
|
||||||
'<p class="highlight-link">' +
|
|
||||||
'<a href="javascript:Documentation.hideSearchWords()">' +
|
|
||||||
Documentation.gettext("Hide Search Matches") +
|
|
||||||
"</a></p>"
|
|
||||||
)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* helper function to hide the search marks again
|
|
||||||
*/
|
|
||||||
hideSearchWords: () => {
|
|
||||||
document
|
|
||||||
.querySelectorAll("#searchbox .highlight-link")
|
|
||||||
.forEach((el) => el.remove());
|
|
||||||
document
|
|
||||||
.querySelectorAll("span.highlighted")
|
|
||||||
.forEach((el) => el.classList.remove("highlighted"));
|
|
||||||
const url = new URL(window.location);
|
|
||||||
url.searchParams.delete("highlight");
|
|
||||||
window.history.replaceState({}, "", url);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* helper function to focus on search bar
|
* helper function to focus on search bar
|
||||||
*/
|
*/
|
||||||
@ -210,15 +110,11 @@ const Documentation = {
|
|||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const blacklistedElements = new Set([
|
|
||||||
"TEXTAREA",
|
|
||||||
"INPUT",
|
|
||||||
"SELECT",
|
|
||||||
"BUTTON",
|
|
||||||
]);
|
|
||||||
document.addEventListener("keydown", (event) => {
|
document.addEventListener("keydown", (event) => {
|
||||||
if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements
|
// bail for input elements
|
||||||
if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys
|
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
|
||||||
|
// bail with special keys
|
||||||
|
if (event.altKey || event.ctrlKey || event.metaKey) return;
|
||||||
|
|
||||||
if (!event.shiftKey) {
|
if (!event.shiftKey) {
|
||||||
switch (event.key) {
|
switch (event.key) {
|
||||||
@ -240,10 +136,6 @@ const Documentation = {
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "Escape":
|
|
||||||
if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
|
|
||||||
Documentation.hideSearchWords();
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
var DOCUMENTATION_OPTIONS = {
|
const DOCUMENTATION_OPTIONS = {
|
||||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
VERSION: '0.9.0',
|
||||||
VERSION: '0.7.0',
|
|
||||||
LANGUAGE: 'en',
|
LANGUAGE: 'en',
|
||||||
COLLAPSE_INDEX: false,
|
COLLAPSE_INDEX: false,
|
||||||
BUILDER: 'html',
|
BUILDER: 'html',
|
||||||
@ -10,5 +9,5 @@ var DOCUMENTATION_OPTIONS = {
|
|||||||
SOURCELINK_SUFFIX: '',
|
SOURCELINK_SUFFIX: '',
|
||||||
NAVIGATION_WITH_KEYS: false,
|
NAVIGATION_WITH_KEYS: false,
|
||||||
SHOW_SEARCH_SUMMARY: true,
|
SHOW_SEARCH_SUMMARY: true,
|
||||||
ENABLE_SEARCH_SHORTCUTS: false,
|
ENABLE_SEARCH_SHORTCUTS: true,
|
||||||
};
|
};
|
2
docs/build/html/_static/language_data.js
vendored
2
docs/build/html/_static/language_data.js
vendored
@ -5,7 +5,7 @@
|
|||||||
* This script contains the language-specific data used by searchtools.js,
|
* This script contains the language-specific data used by searchtools.js,
|
||||||
* namely the list of stopwords, stemmer, scorer and splitter.
|
* namely the list of stopwords, stemmer, scorer and splitter.
|
||||||
*
|
*
|
||||||
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
|
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
|
||||||
* :license: BSD, see LICENSE for details.
|
* :license: BSD, see LICENSE for details.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "أقترح تحرير"
|
msgstr "موضوع بواسطة"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "آخر تحديث في"
|
msgstr "افتح قضية"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "قم بتحرير هذه الصفحة"
|
msgstr "محتويات"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "إطلاق"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "طباعة إلى PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "قضية مفتوحة"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "تنزيل ملف دفتر الملاحظات"
|
msgstr "تنزيل ملف دفتر الملاحظات"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "تبديل التنقل"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "مستودع المصدر"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "بواسطة"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "الصفحة التالية"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "مخزن"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "موضوع كتاب أبو الهول"
|
msgstr "موضوع كتاب أبو الهول"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "تنزيل ملف المصدر"
|
msgstr "وضع ملء الشاشة"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "محتويات"
|
msgstr "قم بتحرير هذه الصفحة"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "بواسطة"
|
msgstr "بواسطة"
|
||||||
@ -59,17 +35,41 @@ msgstr "بواسطة"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "حقوق النشر"
|
msgstr "حقوق النشر"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "وضع ملء الشاشة"
|
msgstr "مستودع المصدر"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "افتح قضية"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "الصفحة السابقة"
|
msgstr "الصفحة السابقة"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "الصفحة التالية"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "تبديل التنقل"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "مخزن"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "أقترح تحرير"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "قضية مفتوحة"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "إطلاق"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "طباعة إلى PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "بواسطة"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "آخر تحديث في"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "تنزيل ملف المصدر"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "قم بتنزيل هذه الصفحة"
|
msgstr "قم بتنزيل هذه الصفحة"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "موضوع بواسطة"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "предложи редактиране"
|
msgstr "Тема от"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Последна актуализация на"
|
msgstr "Отворете проблем"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Редактирайте тази страница"
|
msgstr "Съдържание"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Стартиране"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Печат в PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "отворен брой"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Изтеглете файла на бележника"
|
msgstr "Изтеглете файла на бележника"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Превключване на навигацията"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Хранилище на източника"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "По"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Следваща страница"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "хранилище"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Тема на книгата Sphinx"
|
msgstr "Тема на книгата Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Изтеглете изходния файл"
|
msgstr "Режим на цял екран"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Съдържание"
|
msgstr "Редактирайте тази страница"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "От"
|
msgstr "От"
|
||||||
@ -59,17 +35,41 @@ msgstr "От"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Авторско право"
|
msgstr "Авторско право"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Режим на цял екран"
|
msgstr "Хранилище на източника"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Отворете проблем"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "предишна страница"
|
msgstr "предишна страница"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Следваща страница"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Превключване на навигацията"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "хранилище"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "предложи редактиране"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "отворен брой"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Стартиране"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Печат в PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "По"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Последна актуализация на"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Изтеглете изходния файл"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Изтеглете тази страница"
|
msgstr "Изтеглете тази страница"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Тема от"
|
|
||||||
|
@ -8,41 +8,20 @@ msgstr ""
|
|||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Theme by the"
|
||||||
msgstr "সর্বশেষ আপডেট"
|
msgstr "থিম দ্বারা"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Open an issue"
|
||||||
msgstr "এই পৃষ্ঠাটি সম্পাদনা করুন"
|
msgstr "একটি সমস্যা খুলুন"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "শুরু করা"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "পিডিএফ প্রিন্ট করুন"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "খোলা সমস্যা"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "নোটবুক ফাইল ডাউনলোড করুন"
|
msgstr "নোটবুক ফাইল ডাউনলোড করুন"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "নেভিগেশন টগল করুন"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "উত্স সংগ্রহস্থল"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "দ্বারা"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "পরবর্তী পৃষ্ঠা"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "স্পিনিক্স বুক থিম"
|
msgstr "স্পিনিক্স বুক থিম"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "উত্স ফাইল ডাউনলোড করুন"
|
msgstr "এই পৃষ্ঠাটি সম্পাদনা করুন"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "দ্বারা"
|
msgstr "দ্বারা"
|
||||||
@ -50,14 +29,35 @@ msgstr "দ্বারা"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "কপিরাইট"
|
msgstr "কপিরাইট"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "একটি সমস্যা খুলুন"
|
msgstr "উত্স সংগ্রহস্থল"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "আগের পৃষ্ঠা"
|
msgstr "আগের পৃষ্ঠা"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "পরবর্তী পৃষ্ঠা"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "নেভিগেশন টগল করুন"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "খোলা সমস্যা"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "শুরু করা"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "পিডিএফ প্রিন্ট করুন"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "দ্বারা"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "সর্বশেষ আপডেট"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "উত্স ফাইল ডাউনলোড করুন"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "এই পৃষ্ঠাটি ডাউনলোড করুন"
|
msgstr "এই পৃষ্ঠাটি ডাউনলোড করুন"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "থিম দ্বারা"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "suggerir edició"
|
msgstr "Tema del"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Darrera actualització el"
|
msgstr "Obriu un número"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "Editeu aquesta pàgina"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Llançament"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Imprimeix a PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "número obert"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Descarregar fitxer de quadern"
|
msgstr "Descarregar fitxer de quadern"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Commuta la navegació"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Dipòsit de fonts"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Per la"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "pàgina següent"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema del llibre Esfinx"
|
msgstr "Tema del llibre Esfinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "Baixeu el fitxer font"
|
msgstr "Editeu aquesta pàgina"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Per"
|
msgstr "Per"
|
||||||
@ -53,14 +29,38 @@ msgstr "Per"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Copyright"
|
msgstr "Copyright"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "Obriu un número"
|
msgstr "Dipòsit de fonts"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Pàgina anterior"
|
msgstr "Pàgina anterior"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "pàgina següent"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Commuta la navegació"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "suggerir edició"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "número obert"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Llançament"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Imprimeix a PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Per la"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Darrera actualització el"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Baixeu el fitxer font"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Descarregueu aquesta pàgina"
|
msgstr "Descarregueu aquesta pàgina"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema del"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "navrhnout úpravy"
|
msgstr "Téma od"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Naposledy aktualizováno"
|
msgstr "Otevřete problém"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Upravit tuto stránku"
|
msgstr "Obsah"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Zahájení"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Tisk do PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "otevřené číslo"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Stáhnout soubor poznámkového bloku"
|
msgstr "Stáhnout soubor poznámkového bloku"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Přepnout navigaci"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Zdrojové úložiště"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Podle"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "další strana"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "úložiště"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Téma knihy Sfinga"
|
msgstr "Téma knihy Sfinga"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Stáhněte si zdrojový soubor"
|
msgstr "Režim celé obrazovky"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Obsah"
|
msgstr "Upravit tuto stránku"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Podle"
|
msgstr "Podle"
|
||||||
@ -59,17 +35,41 @@ msgstr "Podle"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "autorská práva"
|
msgstr "autorská práva"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Režim celé obrazovky"
|
msgstr "Zdrojové úložiště"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Otevřete problém"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "předchozí stránka"
|
msgstr "předchozí stránka"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "další strana"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Přepnout navigaci"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "úložiště"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "navrhnout úpravy"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "otevřené číslo"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Zahájení"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Tisk do PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Podle"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Naposledy aktualizováno"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Stáhněte si zdrojový soubor"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Stáhněte si tuto stránku"
|
msgstr "Stáhněte si tuto stránku"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Téma od"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "foreslå redigering"
|
msgstr "Tema af"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Sidst opdateret den"
|
msgstr "Åbn et problem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Rediger denne side"
|
msgstr "Indhold"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Start"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Udskriv til PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "åbent nummer"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Download notesbog-fil"
|
msgstr "Download notesbog-fil"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Skift navigation"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Kildelager"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Ved"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Næste side"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "lager"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx bogtema"
|
msgstr "Sphinx bogtema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Download kildefil"
|
msgstr "Fuldskærmstilstand"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Indhold"
|
msgstr "Rediger denne side"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Ved"
|
msgstr "Ved"
|
||||||
@ -59,17 +35,41 @@ msgstr "Ved"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "ophavsret"
|
msgstr "ophavsret"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Fuldskærmstilstand"
|
msgstr "Kildelager"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Åbn et problem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "forrige side"
|
msgstr "forrige side"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Næste side"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Skift navigation"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "lager"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "foreslå redigering"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "åbent nummer"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Start"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Udskriv til PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Ved"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Sidst opdateret den"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Download kildefil"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Download denne side"
|
msgstr "Download denne side"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema af"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "vorschlagen zu bearbeiten"
|
msgstr "Thema von der"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Zuletzt aktualisiert am"
|
msgstr "Öffnen Sie ein Problem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Bearbeite diese Seite"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Starten"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "In PDF drucken"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "offenes Thema"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Notebook-Datei herunterladen"
|
msgstr "Notebook-Datei herunterladen"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Navigation umschalten"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Quell-Repository"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Bis zum"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Nächste Seite"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "Repository"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx-Buch-Thema"
|
msgstr "Sphinx-Buch-Thema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Quelldatei herunterladen"
|
msgstr "Vollbildmodus"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Inhalt"
|
msgstr "Bearbeite diese Seite"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Durch"
|
msgstr "Durch"
|
||||||
@ -59,17 +35,41 @@ msgstr "Durch"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Urheberrechte ©"
|
msgstr "Urheberrechte ©"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Vollbildmodus"
|
msgstr "Quell-Repository"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Öffnen Sie ein Problem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "vorherige Seite"
|
msgstr "vorherige Seite"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Nächste Seite"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Navigation umschalten"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "Repository"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "vorschlagen zu bearbeiten"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "offenes Thema"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Starten"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "In PDF drucken"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Bis zum"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Zuletzt aktualisiert am"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Quelldatei herunterladen"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Laden Sie diese Seite herunter"
|
msgstr "Laden Sie diese Seite herunter"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Thema von der"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "προτείνω επεξεργασία"
|
msgstr "Θέμα από το"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Τελευταία ενημέρωση στις"
|
msgstr "Ανοίξτε ένα ζήτημα"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Επεξεργαστείτε αυτήν τη σελίδα"
|
msgstr "Περιεχόμενα"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Εκτόξευση"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Εκτύπωση σε PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "ανοιχτό ζήτημα"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Λήψη αρχείου σημειωματάριου"
|
msgstr "Λήψη αρχείου σημειωματάριου"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Εναλλαγή πλοήγησης"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Αποθήκη πηγής"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Από το"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "επόμενη σελίδα"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "αποθήκη"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Θέμα βιβλίου Sphinx"
|
msgstr "Θέμα βιβλίου Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Λήψη αρχείου προέλευσης"
|
msgstr "ΛΕΙΤΟΥΡΓΙΑ ΠΛΗΡΟΥΣ ΟΘΟΝΗΣ"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Περιεχόμενα"
|
msgstr "Επεξεργαστείτε αυτήν τη σελίδα"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Με"
|
msgstr "Με"
|
||||||
@ -59,17 +35,41 @@ msgstr "Με"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Πνευματική ιδιοκτησία"
|
msgstr "Πνευματική ιδιοκτησία"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "ΛΕΙΤΟΥΡΓΙΑ ΠΛΗΡΟΥΣ ΟΘΟΝΗΣ"
|
msgstr "Αποθήκη πηγής"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Ανοίξτε ένα ζήτημα"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "προηγούμενη σελίδα"
|
msgstr "προηγούμενη σελίδα"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "επόμενη σελίδα"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Εναλλαγή πλοήγησης"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "αποθήκη"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "προτείνω επεξεργασία"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "ανοιχτό ζήτημα"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Εκτόξευση"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Εκτύπωση σε PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Από το"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Τελευταία ενημέρωση στις"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Λήψη αρχείου προέλευσης"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Λήψη αυτής της σελίδας"
|
msgstr "Λήψη αυτής της σελίδας"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Θέμα από το"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "sugesti redaktadon"
|
msgstr "Temo de la"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Laste ĝisdatigita la"
|
msgstr "Malfermu numeron"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Redaktu ĉi tiun paĝon"
|
msgstr "Enhavo"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lanĉo"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Presi al PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "malferma numero"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Elŝutu kajeran dosieron"
|
msgstr "Elŝutu kajeran dosieron"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Ŝalti navigadon"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Fonto-deponejo"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Per la"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "sekva paĝo"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "deponejo"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sfinksa Libro-Temo"
|
msgstr "Sfinksa Libro-Temo"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Elŝutu fontodosieron"
|
msgstr "Plenekrana reĝimo"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Enhavo"
|
msgstr "Redaktu ĉi tiun paĝon"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "De"
|
msgstr "De"
|
||||||
@ -59,17 +35,41 @@ msgstr "De"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Kopirajto"
|
msgstr "Kopirajto"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Plenekrana reĝimo"
|
msgstr "Fonto-deponejo"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Malfermu numeron"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "antaŭa paĝo"
|
msgstr "antaŭa paĝo"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "sekva paĝo"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Ŝalti navigadon"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "deponejo"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "sugesti redaktadon"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "malferma numero"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lanĉo"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Presi al PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Per la"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Laste ĝisdatigita la"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Elŝutu fontodosieron"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Elŝutu ĉi tiun paĝon"
|
msgstr "Elŝutu ĉi tiun paĝon"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Temo de la"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "sugerir editar"
|
msgstr "Tema por el"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Ultima actualización en"
|
msgstr "Abrir un problema"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Edita esta página"
|
msgstr "Contenido"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lanzamiento"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Imprimir en PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "Tema abierto"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Descargar archivo de cuaderno"
|
msgstr "Descargar archivo de cuaderno"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Navegación de palanca"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repositorio de origen"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Por el"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "siguiente página"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "repositorio"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema del libro de la esfinge"
|
msgstr "Tema del libro de la esfinge"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Descargar archivo fuente"
|
msgstr "Modo de pantalla completa"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Contenido"
|
msgstr "Edita esta página"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Por"
|
msgstr "Por"
|
||||||
@ -59,17 +35,41 @@ msgstr "Por"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Derechos de autor"
|
msgstr "Derechos de autor"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Modo de pantalla completa"
|
msgstr "Repositorio de origen"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Abrir un problema"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "pagina anterior"
|
msgstr "pagina anterior"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "siguiente página"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Navegación de palanca"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repositorio"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "sugerir editar"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "Tema abierto"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lanzamiento"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Imprimir en PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Por el"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Descargar archivo fuente"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Descarga esta pagina"
|
msgstr "Descarga esta pagina"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema por el"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "soovita muuta"
|
msgstr "Teema"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Viimati uuendatud"
|
msgstr "Avage probleem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Muutke seda lehte"
|
msgstr "Sisu"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Käivitage"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Prindi PDF-i"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "avatud küsimus"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Laadige sülearvuti fail alla"
|
msgstr "Laadige sülearvuti fail alla"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Lülita navigeerimine sisse"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Allikahoidla"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Autor"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "järgmine leht"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "hoidla"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sfinksiraamatu teema"
|
msgstr "Sfinksiraamatu teema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Laadige alla lähtefail"
|
msgstr "Täisekraanirežiim"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Sisu"
|
msgstr "Muutke seda lehte"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Kõrval"
|
msgstr "Kõrval"
|
||||||
@ -59,17 +35,41 @@ msgstr "Kõrval"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Autoriõigus"
|
msgstr "Autoriõigus"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Täisekraanirežiim"
|
msgstr "Allikahoidla"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Avage probleem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "eelmine leht"
|
msgstr "eelmine leht"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "järgmine leht"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Lülita navigeerimine sisse"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "hoidla"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "soovita muuta"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "avatud küsimus"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Käivitage"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Prindi PDF-i"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Autor"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Viimati uuendatud"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Laadige alla lähtefail"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Laadige see leht alla"
|
msgstr "Laadige see leht alla"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Teema"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "ehdottaa muokkausta"
|
msgstr "Teeman tekijä"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Viimeksi päivitetty"
|
msgstr "Avaa ongelma"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Muokkaa tätä sivua"
|
msgstr "Sisällys"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Tuoda markkinoille"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Tulosta PDF-tiedostoon"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "avoin ongelma"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Lataa muistikirjatiedosto"
|
msgstr "Lataa muistikirjatiedosto"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Vaihda navigointia"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Lähteen arkisto"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Mukaan"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "seuraava sivu"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "arkisto"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx-kirjan teema"
|
msgstr "Sphinx-kirjan teema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Lataa lähdetiedosto"
|
msgstr "Koko näytön tila"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Sisällys"
|
msgstr "Muokkaa tätä sivua"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Tekijä"
|
msgstr "Tekijä"
|
||||||
@ -59,17 +35,41 @@ msgstr "Tekijä"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Tekijänoikeus"
|
msgstr "Tekijänoikeus"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Koko näytön tila"
|
msgstr "Lähteen arkisto"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Avaa ongelma"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Edellinen sivu"
|
msgstr "Edellinen sivu"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "seuraava sivu"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Vaihda navigointia"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "arkisto"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "ehdottaa muokkausta"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "avoin ongelma"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Tuoda markkinoille"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Tulosta PDF-tiedostoon"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Mukaan"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Viimeksi päivitetty"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Lataa lähdetiedosto"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Lataa tämä sivu"
|
msgstr "Lataa tämä sivu"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Teeman tekijä"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "suggestion de modification"
|
msgstr "Thème par le"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Dernière mise à jour le"
|
msgstr "Ouvrez un problème"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Modifier cette page"
|
msgstr "Contenu"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "lancement"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Imprimer au format PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "signaler un problème"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Télécharger le fichier notebook"
|
msgstr "Télécharger le fichier notebook"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Basculer la navigation"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Dépôt source"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Par le"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "page suivante"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "dépôt"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Thème du livre Sphinx"
|
msgstr "Thème du livre Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Télécharger le fichier source"
|
msgstr "Mode plein écran"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Contenu"
|
msgstr "Modifier cette page"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Par"
|
msgstr "Par"
|
||||||
@ -59,17 +35,41 @@ msgstr "Par"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "droits d'auteur"
|
msgstr "droits d'auteur"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Mode plein écran"
|
msgstr "Dépôt source"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Ouvrez un problème"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "page précédente"
|
msgstr "page précédente"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "page suivante"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Basculer la navigation"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "dépôt"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "suggestion de modification"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "signaler un problème"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "lancement"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Imprimer au format PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Par le"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Télécharger le fichier source"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Téléchargez cette page"
|
msgstr "Téléchargez cette page"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Thème par le"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "predloži uređivanje"
|
msgstr "Tema autora"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Posljednje ažuriranje:"
|
msgstr "Otvorite izdanje"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Uredite ovu stranicu"
|
msgstr "Sadržaj"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Pokrenite"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Ispis u PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "otvoreno izdanje"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Preuzmi datoteku bilježnice"
|
msgstr "Preuzmi datoteku bilježnice"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Uključi / isključi navigaciju"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Izvorno spremište"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Od strane"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "sljedeća stranica"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "spremište"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema knjige Sphinx"
|
msgstr "Tema knjige Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Preuzmi izvornu datoteku"
|
msgstr "Način preko cijelog zaslona"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Sadržaj"
|
msgstr "Uredite ovu stranicu"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Po"
|
msgstr "Po"
|
||||||
@ -59,17 +35,41 @@ msgstr "Po"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Autorska prava"
|
msgstr "Autorska prava"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Način preko cijelog zaslona"
|
msgstr "Izvorno spremište"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Otvorite izdanje"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Prethodna stranica"
|
msgstr "Prethodna stranica"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "sljedeća stranica"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Uključi / isključi navigaciju"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "spremište"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "predloži uređivanje"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "otvoreno izdanje"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Pokrenite"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Ispis u PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Od strane"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Posljednje ažuriranje:"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Preuzmi izvornu datoteku"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Preuzmite ovu stranicu"
|
msgstr "Preuzmite ovu stranicu"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema autora"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "menyarankan edit"
|
msgstr "Tema oleh"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Terakhir diperbarui saat"
|
msgstr "Buka masalah"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Edit halaman ini"
|
msgstr "Isi"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Meluncurkan"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Cetak ke PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "masalah terbuka"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Unduh file notebook"
|
msgstr "Unduh file notebook"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Alihkan navigasi"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repositori sumber"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Oleh"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "halaman selanjutnya"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "gudang"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema Buku Sphinx"
|
msgstr "Tema Buku Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Unduh file sumber"
|
msgstr "Mode layar penuh"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Isi"
|
msgstr "Edit halaman ini"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Oleh"
|
msgstr "Oleh"
|
||||||
@ -59,17 +35,41 @@ msgstr "Oleh"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "hak cipta"
|
msgstr "hak cipta"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Mode layar penuh"
|
msgstr "Repositori sumber"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Buka masalah"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "halaman sebelumnya"
|
msgstr "halaman sebelumnya"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "halaman selanjutnya"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Alihkan navigasi"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "gudang"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "menyarankan edit"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "masalah terbuka"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Meluncurkan"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Cetak ke PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Oleh"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Terakhir diperbarui saat"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Unduh file sumber"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Unduh halaman ini"
|
msgstr "Unduh halaman ini"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema oleh"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "suggerisci modifica"
|
msgstr "Tema di"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Ultimo aggiornamento il"
|
msgstr "Apri un problema"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Modifica questa pagina"
|
msgstr "Contenuti"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lanciare"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Stampa in PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "questione aperta"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Scarica il file del taccuino"
|
msgstr "Scarica il file del taccuino"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Attiva / disattiva la navigazione"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repository di origine"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Dal"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "pagina successiva"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "repository"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema del libro della Sfinge"
|
msgstr "Tema del libro della Sfinge"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Scarica il file sorgente"
|
msgstr "Modalità schermo intero"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Contenuti"
|
msgstr "Modifica questa pagina"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Di"
|
msgstr "Di"
|
||||||
@ -59,17 +35,41 @@ msgstr "Di"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Diritto d'autore"
|
msgstr "Diritto d'autore"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Modalità schermo intero"
|
msgstr "Repository di origine"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Apri un problema"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "pagina precedente"
|
msgstr "pagina precedente"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "pagina successiva"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Attiva / disattiva la navigazione"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repository"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "suggerisci modifica"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "questione aperta"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lanciare"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Stampa in PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Dal"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Ultimo aggiornamento il"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Scarica il file sorgente"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Scarica questa pagina"
|
msgstr "Scarica questa pagina"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema di"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: iw\n"
|
"Language: iw\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "מציע לערוך"
|
msgstr "נושא מאת"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "עודכן לאחרונה ב"
|
msgstr "פתח גיליון"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "ערוך דף זה"
|
msgstr "תוכן"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "לְהַשִׁיק"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "הדפס לקובץ PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "בעיה פתוחה"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "הורד קובץ מחברת"
|
msgstr "הורד קובץ מחברת"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "החלף ניווט"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "מאגר המקורות"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "דרך"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "עמוד הבא"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "מאגר"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "נושא ספר ספינקס"
|
msgstr "נושא ספר ספינקס"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "הורד את קובץ המקור"
|
msgstr "מצב מסך מלא"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "תוכן"
|
msgstr "ערוך דף זה"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "על ידי"
|
msgstr "על ידי"
|
||||||
@ -59,17 +35,41 @@ msgstr "על ידי"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "זכויות יוצרים"
|
msgstr "זכויות יוצרים"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "מצב מסך מלא"
|
msgstr "מאגר המקורות"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "פתח גיליון"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "עמוד קודם"
|
msgstr "עמוד קודם"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "עמוד הבא"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "החלף ניווט"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "מאגר"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "מציע לערוך"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "בעיה פתוחה"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "לְהַשִׁיק"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "הדפס לקובץ PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "דרך"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "עודכן לאחרונה ב"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "הורד את קובץ המקור"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "הורד דף זה"
|
msgstr "הורד דף זה"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "נושא מאת"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "編集を提案する"
|
msgstr "のテーマ"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "最終更新日"
|
msgstr "問題を報告"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "このページを編集"
|
msgstr "目次"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "起動"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDFに印刷"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "未解決の問題"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "ノートブックファイルをダウンロード"
|
msgstr "ノートブックファイルをダウンロード"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "ナビゲーションを切り替え"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "ソースリポジトリ"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "によって"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "次のページ"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "リポジトリ"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "スフィンクスの本のテーマ"
|
msgstr "スフィンクスの本のテーマ"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "ソースファイルをダウンロード"
|
msgstr "全画面モード"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "目次"
|
msgstr "このページを編集"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "著者"
|
msgstr "著者"
|
||||||
@ -59,17 +35,41 @@ msgstr "著者"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Copyright"
|
msgstr "Copyright"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "全画面モード"
|
msgstr "ソースリポジトリ"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "問題を報告"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "前のページ"
|
msgstr "前のページ"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "次のページ"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "ナビゲーションを切り替え"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "リポジトリ"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "編集を提案する"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "未解決の問題"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "起動"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDFに印刷"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "によって"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "最終更新日"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "ソースファイルをダウンロード"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "このページをダウンロード"
|
msgstr "このページをダウンロード"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "のテーマ"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "편집 제안"
|
msgstr "테마별"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "마지막 업데이트"
|
msgstr "이슈 열기"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "이 페이지 편집"
|
msgstr "내용"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "시작하다"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDF로 인쇄"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "열린 문제"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "노트북 파일 다운로드"
|
msgstr "노트북 파일 다운로드"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "탐색 전환"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "소스 저장소"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "에 의해"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "다음 페이지"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "저장소"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "스핑크스 도서 테마"
|
msgstr "스핑크스 도서 테마"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "소스 파일 다운로드"
|
msgstr "전체 화면으로보기"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "내용"
|
msgstr "이 페이지 편집"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "으로"
|
msgstr "으로"
|
||||||
@ -59,17 +35,41 @@ msgstr "으로"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "저작권"
|
msgstr "저작권"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "전체 화면으로보기"
|
msgstr "소스 저장소"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "이슈 열기"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "이전 페이지"
|
msgstr "이전 페이지"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "다음 페이지"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "탐색 전환"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "저장소"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "편집 제안"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "열린 문제"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "시작하다"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDF로 인쇄"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "에 의해"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "마지막 업데이트"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "소스 파일 다운로드"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "이 페이지 다운로드"
|
msgstr "이 페이지 다운로드"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "테마별"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "pasiūlyti redaguoti"
|
msgstr "Tema"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Paskutinį kartą atnaujinta"
|
msgstr "Atidarykite problemą"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Redaguoti šį puslapį"
|
msgstr "Turinys"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Paleiskite"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Spausdinti į PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "atviras klausimas"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Atsisiųsti nešiojamojo kompiuterio failą"
|
msgstr "Atsisiųsti nešiojamojo kompiuterio failą"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Perjungti naršymą"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Šaltinio saugykla"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Prie"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Kitas puslapis"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "saugykla"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sfinkso knygos tema"
|
msgstr "Sfinkso knygos tema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Atsisiųsti šaltinio failą"
|
msgstr "Pilno ekrano režimas"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Turinys"
|
msgstr "Redaguoti šį puslapį"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Iki"
|
msgstr "Iki"
|
||||||
@ -59,17 +35,41 @@ msgstr "Iki"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Autorių teisės"
|
msgstr "Autorių teisės"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Pilno ekrano režimas"
|
msgstr "Šaltinio saugykla"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Atidarykite problemą"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Ankstesnis puslapis"
|
msgstr "Ankstesnis puslapis"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Kitas puslapis"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Perjungti naršymą"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "saugykla"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "pasiūlyti redaguoti"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "atviras klausimas"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Paleiskite"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Spausdinti į PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Prie"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Paskutinį kartą atnaujinta"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Atsisiųsti šaltinio failą"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Atsisiųskite šį puslapį"
|
msgstr "Atsisiųskite šį puslapį"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "ieteikt rediģēt"
|
msgstr "Autora tēma"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Pēdējoreiz atjaunināts"
|
msgstr "Atveriet problēmu"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Rediģēt šo lapu"
|
msgstr "Saturs"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Uzsākt"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Drukāt PDF formātā"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "atklāts jautājums"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Lejupielādēt piezīmju grāmatiņu"
|
msgstr "Lejupielādēt piezīmju grāmatiņu"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Pārslēgt navigāciju"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Avota krātuve"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Ar"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "nākamā lapaspuse"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "krātuve"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sfinksa grāmatas tēma"
|
msgstr "Sfinksa grāmatas tēma"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Lejupielādēt avota failu"
|
msgstr "Pilnekrāna režīms"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Saturs"
|
msgstr "Rediģēt šo lapu"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Autors"
|
msgstr "Autors"
|
||||||
@ -59,17 +35,41 @@ msgstr "Autors"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Autortiesības"
|
msgstr "Autortiesības"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Pilnekrāna režīms"
|
msgstr "Avota krātuve"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Atveriet problēmu"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "iepriekšējā lapa"
|
msgstr "iepriekšējā lapa"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "nākamā lapaspuse"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Pārslēgt navigāciju"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "krātuve"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "ieteikt rediģēt"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "atklāts jautājums"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Uzsākt"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Drukāt PDF formātā"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Ar"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Pēdējoreiz atjaunināts"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Lejupielādēt avota failu"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Lejupielādējiet šo lapu"
|
msgstr "Lejupielādējiet šo lapu"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Autora tēma"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: ml\n"
|
"Language: ml\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "എഡിറ്റുചെയ്യാൻ നിർദ്ദേശിക്കുക"
|
msgstr "പ്രമേയം"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "അവസാനം അപ്ഡേറ്റുചെയ്തത്"
|
msgstr "ഒരു പ്രശ്നം തുറക്കുക"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "ഈ പേജ് എഡിറ്റുചെയ്യുക"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "സമാരംഭിക്കുക"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDF- ലേക്ക് പ്രിന്റുചെയ്യുക"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "തുറന്ന പ്രശ്നം"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "നോട്ട്ബുക്ക് ഫയൽ ഡൺലോഡ് ചെയ്യുക"
|
msgstr "നോട്ട്ബുക്ക് ഫയൽ ഡൺലോഡ് ചെയ്യുക"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "ഉറവിട ശേഖരം"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "എഴുതിയത്"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "അടുത്ത പേജ്"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "സ്ഫിങ്ക്സ് പുസ്തക തീം"
|
msgstr "സ്ഫിങ്ക്സ് പുസ്തക തീം"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "ഉറവിട ഫയൽ ഡൗൺലോഡുചെയ്യുക"
|
msgstr "ഈ പേജ് എഡിറ്റുചെയ്യുക"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "എഴുതിയത്"
|
msgstr "എഴുതിയത്"
|
||||||
@ -53,14 +29,38 @@ msgstr "എഴുതിയത്"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "പകർപ്പവകാശം"
|
msgstr "പകർപ്പവകാശം"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "ഒരു പ്രശ്നം തുറക്കുക"
|
msgstr "ഉറവിട ശേഖരം"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "മുൻപത്തെ താൾ"
|
msgstr "മുൻപത്തെ താൾ"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "അടുത്ത പേജ്"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "എഡിറ്റുചെയ്യാൻ നിർദ്ദേശിക്കുക"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "തുറന്ന പ്രശ്നം"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "സമാരംഭിക്കുക"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDF- ലേക്ക് പ്രിന്റുചെയ്യുക"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "എഴുതിയത്"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "അവസാനം അപ്ഡേറ്റുചെയ്തത്"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "ഉറവിട ഫയൽ ഡൗൺലോഡുചെയ്യുക"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "ഈ പേജ് ഡൗൺലോഡുചെയ്യുക"
|
msgstr "ഈ പേജ് ഡൗൺലോഡുചെയ്യുക"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "പ്രമേയം"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: mr\n"
|
"Language: mr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "संपादन सुचवा"
|
msgstr "द्वारा थीम"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "अखेरचे अद्यतनित"
|
msgstr "एक मुद्दा उघडा"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "हे पृष्ठ संपादित करा"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "लाँच करा"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "पीडीएफवर मुद्रित करा"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "खुला मुद्दा"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "नोटबुक फाईल डाउनलोड करा"
|
msgstr "नोटबुक फाईल डाउनलोड करा"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "नेव्हिगेशन टॉगल करा"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "स्त्रोत भांडार"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "द्वारा"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "पुढील पृष्ठ"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "स्फिंक्स बुक थीम"
|
msgstr "स्फिंक्स बुक थीम"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "स्त्रोत फाइल डाउनलोड करा"
|
msgstr "हे पृष्ठ संपादित करा"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "द्वारा"
|
msgstr "द्वारा"
|
||||||
@ -53,14 +29,38 @@ msgstr "द्वारा"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "कॉपीराइट"
|
msgstr "कॉपीराइट"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "एक मुद्दा उघडा"
|
msgstr "स्त्रोत भांडार"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "मागील पान"
|
msgstr "मागील पान"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "पुढील पृष्ठ"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "नेव्हिगेशन टॉगल करा"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "संपादन सुचवा"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "खुला मुद्दा"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "लाँच करा"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "पीडीएफवर मुद्रित करा"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "द्वारा"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "अखेरचे अद्यतनित"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "स्त्रोत फाइल डाउनलोड करा"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "हे पृष्ठ डाउनलोड करा"
|
msgstr "हे पृष्ठ डाउनलोड करा"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "द्वारा थीम"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "cadangkan edit"
|
msgstr "Tema oleh"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Terakhir dikemas kini pada"
|
msgstr "Buka masalah"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "Edit halaman ini"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lancarkan"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Cetak ke PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "isu terbuka"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Muat turun fail buku nota"
|
msgstr "Muat turun fail buku nota"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Togol navigasi"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repositori sumber"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Oleh"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "muka surat seterusnya"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema Buku Sphinx"
|
msgstr "Tema Buku Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "Muat turun fail sumber"
|
msgstr "Edit halaman ini"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Oleh"
|
msgstr "Oleh"
|
||||||
@ -53,14 +29,38 @@ msgstr "Oleh"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "hak cipta"
|
msgstr "hak cipta"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "Buka masalah"
|
msgstr "Repositori sumber"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "halaman sebelumnya"
|
msgstr "halaman sebelumnya"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "muka surat seterusnya"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Togol navigasi"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "cadangkan edit"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "isu terbuka"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lancarkan"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Cetak ke PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Oleh"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Terakhir dikemas kini pada"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Muat turun fail sumber"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Muat turun halaman ini"
|
msgstr "Muat turun halaman ini"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema oleh"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "suggereren bewerken"
|
msgstr "Thema door de"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Laatst geupdate op"
|
msgstr "Open een probleem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "bewerk deze pagina"
|
msgstr "Inhoud"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lancering"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Afdrukken naar pdf"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "open probleem"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Download notebookbestand"
|
msgstr "Download notebookbestand"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Schakel navigatie"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Bronopslagplaats"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Door de"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "volgende bladzijde"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "repository"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx-boekthema"
|
msgstr "Sphinx-boekthema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Download het bronbestand"
|
msgstr "Volledig scherm"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Inhoud"
|
msgstr "bewerk deze pagina"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Door"
|
msgstr "Door"
|
||||||
@ -59,17 +35,41 @@ msgstr "Door"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "auteursrechten"
|
msgstr "auteursrechten"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Volledig scherm"
|
msgstr "Bronopslagplaats"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Open een probleem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "vorige pagina"
|
msgstr "vorige pagina"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "volgende bladzijde"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Schakel navigatie"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repository"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "suggereren bewerken"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "open probleem"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lancering"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Afdrukken naar pdf"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Door de"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Laatst geupdate op"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Download het bronbestand"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Download deze pagina"
|
msgstr "Download deze pagina"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Thema door de"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "foreslå redigering"
|
msgstr "Tema av"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Sist oppdatert den"
|
msgstr "Åpne et problem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Rediger denne siden"
|
msgstr "Innhold"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Start"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Skriv ut til PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "åpent nummer"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Last ned notatbokfilen"
|
msgstr "Last ned notatbokfilen"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Bytt navigasjon"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Kildedepot"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Ved"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "neste side"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "oppbevaringssted"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx boktema"
|
msgstr "Sphinx boktema"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Last ned kildefilen"
|
msgstr "Fullskjerm-modus"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Innhold"
|
msgstr "Rediger denne siden"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Av"
|
msgstr "Av"
|
||||||
@ -59,17 +35,41 @@ msgstr "Av"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "opphavsrett"
|
msgstr "opphavsrett"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Fullskjerm-modus"
|
msgstr "Kildedepot"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Åpne et problem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "forrige side"
|
msgstr "forrige side"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "neste side"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Bytt navigasjon"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "oppbevaringssted"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "foreslå redigering"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "åpent nummer"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Start"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Skriv ut til PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Ved"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Sist oppdatert den"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Last ned kildefilen"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Last ned denne siden"
|
msgstr "Last ned denne siden"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema av"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "zaproponuj edycję"
|
msgstr "Motyw autorstwa"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Ostatnia aktualizacja"
|
msgstr "Otwórz problem"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Edytuj tę strone"
|
msgstr "Zawartość"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Uruchomić"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Drukuj do PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "otwarty problem"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Pobierz plik notatnika"
|
msgstr "Pobierz plik notatnika"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Przełącz nawigację"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repozytorium źródłowe"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Przez"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Następna strona"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "magazyn"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Motyw książki Sphinx"
|
msgstr "Motyw książki Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Pobierz plik źródłowy"
|
msgstr "Pełny ekran"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Zawartość"
|
msgstr "Edytuj tę strone"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Przez"
|
msgstr "Przez"
|
||||||
@ -59,17 +35,41 @@ msgstr "Przez"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "prawa autorskie"
|
msgstr "prawa autorskie"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Pełny ekran"
|
msgstr "Repozytorium źródłowe"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Otwórz problem"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Poprzednia strona"
|
msgstr "Poprzednia strona"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Następna strona"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Przełącz nawigację"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "magazyn"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "zaproponuj edycję"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "otwarty problem"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Uruchomić"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Drukuj do PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Przez"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Ostatnia aktualizacja"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Pobierz plik źródłowy"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Pobierz tę stronę"
|
msgstr "Pobierz tę stronę"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Motyw autorstwa"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "sugerir edição"
|
msgstr "Tema por"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Última atualização em"
|
msgstr "Abra um problema"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Edite essa página"
|
msgstr "Conteúdo"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lançamento"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Imprimir em PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "questão aberta"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Baixar arquivo de notebook"
|
msgstr "Baixar arquivo de notebook"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Alternar de navegação"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Repositório fonte"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Pelo"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "próxima página"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "repositório"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema do livro Sphinx"
|
msgstr "Tema do livro Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Baixar arquivo fonte"
|
msgstr "Modo tela cheia"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Conteúdo"
|
msgstr "Edite essa página"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "De"
|
msgstr "De"
|
||||||
@ -59,17 +35,41 @@ msgstr "De"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "direito autoral"
|
msgstr "direito autoral"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Modo tela cheia"
|
msgstr "Repositório fonte"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Abra um problema"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "página anterior"
|
msgstr "página anterior"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "próxima página"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Alternar de navegação"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repositório"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "sugerir edição"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "questão aberta"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lançamento"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Imprimir em PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Pelo"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Última atualização em"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Baixar arquivo fonte"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Baixe esta página"
|
msgstr "Baixe esta página"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema por"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "sugerează editare"
|
msgstr "Tema de"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Ultima actualizare la"
|
msgstr "Deschideți o problemă"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Editați această pagină"
|
msgstr "Cuprins"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lansa"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Imprimați în PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "problema deschisă"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Descărcați fișierul notebook"
|
msgstr "Descărcați fișierul notebook"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Comutare navigare"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Depozit sursă"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Langa"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "pagina următoare"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "repertoriu"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema Sphinx Book"
|
msgstr "Tema Sphinx Book"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Descărcați fișierul sursă"
|
msgstr "Modul ecran întreg"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Cuprins"
|
msgstr "Editați această pagină"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "De"
|
msgstr "De"
|
||||||
@ -59,17 +35,41 @@ msgstr "De"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Drepturi de autor"
|
msgstr "Drepturi de autor"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Modul ecran întreg"
|
msgstr "Depozit sursă"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Deschideți o problemă"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "pagina anterioară"
|
msgstr "pagina anterioară"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "pagina următoare"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Comutare navigare"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repertoriu"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "sugerează editare"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "problema deschisă"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Lansa"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Imprimați în PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Langa"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Ultima actualizare la"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Descărcați fișierul sursă"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Descarcă această pagină"
|
msgstr "Descarcă această pagină"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema de"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "предложить редактировать"
|
msgstr "Тема от"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Последнее обновление"
|
msgstr "Открыть вопрос"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Редактировать эту страницу"
|
msgstr "Содержание"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Запуск"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Распечатать в PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "открытый вопрос"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Скачать файл записной книжки"
|
msgstr "Скачать файл записной книжки"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Переключить навигацию"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Исходный репозиторий"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Посредством"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Следующая страница"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "хранилище"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Тема книги Сфинкс"
|
msgstr "Тема книги Сфинкс"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Скачать исходный файл"
|
msgstr "Полноэкранный режим"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Содержание"
|
msgstr "Редактировать эту страницу"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "По"
|
msgstr "По"
|
||||||
@ -59,17 +35,41 @@ msgstr "По"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "авторское право"
|
msgstr "авторское право"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Полноэкранный режим"
|
msgstr "Исходный репозиторий"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Открыть вопрос"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Предыдущая страница"
|
msgstr "Предыдущая страница"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Следующая страница"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Переключить навигацию"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "хранилище"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "предложить редактировать"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "открытый вопрос"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Запуск"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Распечатать в PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Посредством"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Последнее обновление"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Скачать исходный файл"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Загрузите эту страницу"
|
msgstr "Загрузите эту страницу"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Тема от"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "navrhnúť úpravu"
|
msgstr "Téma od"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Posledná aktualizácia dňa"
|
msgstr "Otvorte problém"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Upraviť túto stránku"
|
msgstr "Obsah"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Spustiť"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Tlač do PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "otvorené vydanie"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Stiahnite si zošit"
|
msgstr "Stiahnite si zošit"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Prepnúť navigáciu"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Zdrojové úložisko"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Podľa"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "ďalšia strana"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "Úložisko"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Téma knihy Sfinga"
|
msgstr "Téma knihy Sfinga"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Stiahnite si zdrojový súbor"
|
msgstr "Režim celej obrazovky"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Obsah"
|
msgstr "Upraviť túto stránku"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Autor:"
|
msgstr "Autor:"
|
||||||
@ -59,17 +35,41 @@ msgstr "Autor:"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Autorské práva"
|
msgstr "Autorské práva"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Režim celej obrazovky"
|
msgstr "Zdrojové úložisko"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Otvorte problém"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "predchádzajúca strana"
|
msgstr "predchádzajúca strana"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "ďalšia strana"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Prepnúť navigáciu"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "Úložisko"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "navrhnúť úpravu"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "otvorené vydanie"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Spustiť"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Tlač do PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Podľa"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Posledná aktualizácia dňa"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Stiahnite si zdrojový súbor"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Stiahnite si túto stránku"
|
msgstr "Stiahnite si túto stránku"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Téma od"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: sl\n"
|
"Language: sl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "predlagajte urejanje"
|
msgstr "Tema avtorja"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Nazadnje posodobljeno dne"
|
msgstr "Odprite številko"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Uredite to stran"
|
msgstr "Vsebina"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Kosilo"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Natisni v PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "odprto vprašanje"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Prenesite datoteko zvezka"
|
msgstr "Prenesite datoteko zvezka"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Preklopi navigacijo"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Izvorno skladišče"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Avtor"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Naslednja stran"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "odlagališče"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema knjige Sphinx"
|
msgstr "Tema knjige Sphinx"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Prenesite izvorno datoteko"
|
msgstr "Celozaslonski način"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Vsebina"
|
msgstr "Uredite to stran"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Avtor"
|
msgstr "Avtor"
|
||||||
@ -59,17 +35,41 @@ msgstr "Avtor"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "avtorske pravice"
|
msgstr "avtorske pravice"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Celozaslonski način"
|
msgstr "Izvorno skladišče"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Odprite številko"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Prejšnja stran"
|
msgstr "Prejšnja stran"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Naslednja stran"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Preklopi navigacijo"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "odlagališče"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "predlagajte urejanje"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "odprto vprašanje"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Kosilo"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Natisni v PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Avtor"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Nazadnje posodobljeno dne"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Prenesite izvorno datoteko"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Prenesite to stran"
|
msgstr "Prenesite to stran"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema avtorja"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: sr\n"
|
"Language: sr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "предложи уређивање"
|
msgstr "Тхеме би"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Последње ажурирање"
|
msgstr "Отворите издање"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Уредите ову страницу"
|
msgstr "Садржај"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Лансирање"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Испис у ПДФ"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "отворено издање"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Преузмите датотеку бележнице"
|
msgstr "Преузмите датотеку бележнице"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Укључи / искључи навигацију"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Изворно спремиште"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Од"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Следећа страна"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "спремиште"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Тема књиге Спхинк"
|
msgstr "Тема књиге Спхинк"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Преузми изворну датотеку"
|
msgstr "Режим целог екрана"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Садржај"
|
msgstr "Уредите ову страницу"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Од стране"
|
msgstr "Од стране"
|
||||||
@ -59,17 +35,41 @@ msgstr "Од стране"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Ауторско право"
|
msgstr "Ауторско право"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Режим целог екрана"
|
msgstr "Изворно спремиште"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Отворите издање"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Претходна страница"
|
msgstr "Претходна страница"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Следећа страна"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Укључи / искључи навигацију"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "спремиште"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "предложи уређивање"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "отворено издање"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Лансирање"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Испис у ПДФ"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Од"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Последње ажурирање"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Преузми изворну датотеку"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Преузмите ову страницу"
|
msgstr "Преузмите ову страницу"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Тхеме би"
|
|
||||||
|
Binary file not shown.
@ -8,68 +8,68 @@ msgstr ""
|
|||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "föreslå redigering"
|
msgstr "Tema av"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Senast uppdaterad den"
|
msgstr "Öppna en problemrapport"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "Redigera den här sidan"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Lansera"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Skriv ut till PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "öppet problem"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
|
||||||
msgstr "Ladda ner anteckningsbokfilen"
|
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Växla navigering"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Källförvar"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Vid"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "nästa sida"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "förvar"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
|
||||||
msgstr "Sphinx boktema"
|
|
||||||
|
|
||||||
msgid "Download source file"
|
|
||||||
msgstr "Ladda ner källfil"
|
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Innehåll"
|
msgstr "Innehåll"
|
||||||
|
|
||||||
msgid "By"
|
msgid "Download notebook file"
|
||||||
msgstr "Förbi"
|
msgstr "Ladda ner notebook-fil"
|
||||||
|
|
||||||
msgid "Copyright"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "upphovsrätt"
|
msgstr "Sphinx Boktema"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Fullskärmsläge"
|
msgstr "Fullskärmsläge"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Edit this page"
|
||||||
msgstr "Öppna ett problem"
|
msgstr "Redigera den här sidan"
|
||||||
|
|
||||||
|
msgid "By"
|
||||||
|
msgstr "Av"
|
||||||
|
|
||||||
|
msgid "Copyright"
|
||||||
|
msgstr "Upphovsrätt"
|
||||||
|
|
||||||
|
msgid "Source repository"
|
||||||
|
msgstr "Källkodsrepositorium"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "föregående sida"
|
msgstr "föregående sida"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "nästa sida"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Växla navigering"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "repositorium"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "föreslå ändring"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "öppna problemrapport"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Öppna"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Skriv ut till PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Av den"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Senast uppdaterad den"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Ladda ner källfil"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Ladda ner den här sidan"
|
msgstr "Ladda ner den här sidan"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema av"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: ta\n"
|
"Language: ta\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "திருத்த பரிந்துரைக்கவும்"
|
msgstr "வழங்கிய தீம்"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
msgstr "சிக்கலைத் திறக்கவும்"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "இந்தப் பக்கத்தைத் திருத்தவும்"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "தொடங்க"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDF இல் அச்சிடுக"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "திறந்த பிரச்சினை"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "நோட்புக் கோப்பைப் பதிவிறக்கவும்"
|
msgstr "நோட்புக் கோப்பைப் பதிவிறக்கவும்"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "வழிசெலுத்தலை நிலைமாற்று"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "மூல களஞ்சியம்"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "மூலம்"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "அடுத்த பக்கம்"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "ஸ்பிங்க்ஸ் புத்தக தீம்"
|
msgstr "ஸ்பிங்க்ஸ் புத்தக தீம்"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "மூல கோப்பைப் பதிவிறக்குக"
|
msgstr "இந்தப் பக்கத்தைத் திருத்தவும்"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "வழங்கியவர்"
|
msgstr "வழங்கியவர்"
|
||||||
@ -53,14 +29,38 @@ msgstr "வழங்கியவர்"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "பதிப்புரிமை"
|
msgstr "பதிப்புரிமை"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "சிக்கலைத் திறக்கவும்"
|
msgstr "மூல களஞ்சியம்"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "முந்தைய பக்கம்"
|
msgstr "முந்தைய பக்கம்"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "அடுத்த பக்கம்"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "வழிசெலுத்தலை நிலைமாற்று"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "திருத்த பரிந்துரைக்கவும்"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "திறந்த பிரச்சினை"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "தொடங்க"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDF இல் அச்சிடுக"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "மூலம்"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "மூல கோப்பைப் பதிவிறக்குக"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "இந்தப் பக்கத்தைப் பதிவிறக்கவும்"
|
msgstr "இந்தப் பக்கத்தைப் பதிவிறக்கவும்"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "வழங்கிய தீம்"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: te\n"
|
"Language: te\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "సవరించమని సూచించండి"
|
msgstr "ద్వారా థీమ్"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "చివరిగా నవీకరించబడింది"
|
msgstr "సమస్యను తెరవండి"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "ఈ పేజీని సవరించండి"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "ప్రారంభించండి"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDF కి ముద్రించండి"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "ఓపెన్ ఇష్యూ"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "నోట్బుక్ ఫైల్ను డౌన్లోడ్ చేయండి"
|
msgstr "నోట్బుక్ ఫైల్ను డౌన్లోడ్ చేయండి"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "నావిగేషన్ను టోగుల్ చేయండి"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "మూల రిపోజిటరీ"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "ద్వారా"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "తరువాతి పేజీ"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "సింహిక పుస్తక థీమ్"
|
msgstr "సింహిక పుస్తక థీమ్"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "మూల ఫైల్ను డౌన్లోడ్ చేయండి"
|
msgstr "ఈ పేజీని సవరించండి"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "ద్వారా"
|
msgstr "ద్వారా"
|
||||||
@ -53,14 +29,38 @@ msgstr "ద్వారా"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "కాపీరైట్"
|
msgstr "కాపీరైట్"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "సమస్యను తెరవండి"
|
msgstr "మూల రిపోజిటరీ"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "ముందు పేజి"
|
msgstr "ముందు పేజి"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "తరువాతి పేజీ"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "నావిగేషన్ను టోగుల్ చేయండి"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "సవరించమని సూచించండి"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "ఓపెన్ ఇష్యూ"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "ప్రారంభించండి"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDF కి ముద్రించండి"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "ద్వారా"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "చివరిగా నవీకరించబడింది"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "మూల ఫైల్ను డౌన్లోడ్ చేయండి"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "ఈ పేజీని డౌన్లోడ్ చేయండి"
|
msgstr "ఈ పేజీని డౌన్లోడ్ చేయండి"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "ద్వారా థీమ్"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: tg\n"
|
"Language: tg\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "пешниҳод вироиш"
|
msgstr "Мавзӯъи аз"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Last навсозӣ дар"
|
msgstr "Масъаларо кушоед"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Ин саҳифаро таҳрир кунед"
|
msgstr "Мундариҷа"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Оғоз"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Чоп ба PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "барориши кушод"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Файли дафтарро зеркашӣ кунед"
|
msgstr "Файли дафтарро зеркашӣ кунед"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Гузаришро иваз кунед"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Анбори манбаъ"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Бо"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "саҳифаи оянда"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "анбор"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Сфинкс Мавзӯи китоб"
|
msgstr "Сфинкс Мавзӯи китоб"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Файли манбаъро зеркашӣ кунед"
|
msgstr "Ҳолати экрани пурра"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Мундариҷа"
|
msgstr "Ин саҳифаро таҳрир кунед"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Бо"
|
msgstr "Бо"
|
||||||
@ -59,17 +35,41 @@ msgstr "Бо"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Ҳуқуқи муаллиф"
|
msgstr "Ҳуқуқи муаллиф"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Ҳолати экрани пурра"
|
msgstr "Анбори манбаъ"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Масъаларо кушоед"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "саҳифаи қаблӣ"
|
msgstr "саҳифаи қаблӣ"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "саҳифаи оянда"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Гузаришро иваз кунед"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "анбор"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "пешниҳод вироиш"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "барориши кушод"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Оғоз"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Чоп ба PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Бо"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Last навсозӣ дар"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Файли манбаъро зеркашӣ кунед"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Ин саҳифаро зеркашӣ кунед"
|
msgstr "Ин саҳифаро зеркашӣ кунед"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Мавзӯъи аз"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "แนะนำแก้ไข"
|
msgstr "ธีมโดย"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "ปรับปรุงล่าสุดเมื่อ"
|
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "แก้ไขหน้านี้"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "เปิด"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "พิมพ์เป็น PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "เปิดปัญหา"
|
msgstr "เปิดปัญหา"
|
||||||
|
|
||||||
|
msgid "Contents"
|
||||||
|
msgstr "สารบัญ"
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "ดาวน์โหลดไฟล์สมุดบันทึก"
|
msgstr "ดาวน์โหลดไฟล์สมุดบันทึก"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "ไม่ต้องสลับช่องทาง"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "ที่เก็บซอร์ส"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "โดย"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "หน้าต่อไป"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "ที่เก็บ"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "ธีมหนังสือสฟิงซ์"
|
msgstr "ธีมหนังสือสฟิงซ์"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "ดาวน์โหลดไฟล์ต้นฉบับ"
|
msgstr "โหมดเต็มหน้าจอ"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "สารบัญ"
|
msgstr "แก้ไขหน้านี้"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "โดย"
|
msgstr "โดย"
|
||||||
@ -59,17 +35,41 @@ msgstr "โดย"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "ลิขสิทธิ์"
|
msgstr "ลิขสิทธิ์"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "โหมดเต็มหน้าจอ"
|
msgstr "ที่เก็บซอร์ส"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "เปิดปัญหา"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "หน้าที่แล้ว"
|
msgstr "หน้าที่แล้ว"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "หน้าต่อไป"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "ไม่ต้องสลับช่องทาง"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "ที่เก็บ"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "แนะนำแก้ไข"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "เปิดปัญหา"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "เปิด"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "พิมพ์เป็น PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "โดย"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "ปรับปรุงล่าสุดเมื่อ"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "ดาวน์โหลดไฟล์ต้นฉบับ"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "ดาวน์โหลดหน้านี้"
|
msgstr "ดาวน์โหลดหน้านี้"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "ธีมโดย"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: tl\n"
|
"Language: tl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "iminumungkahi i-edit"
|
msgstr "Tema ng"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Huling na-update noong"
|
msgstr "Magbukas ng isyu"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "I-edit ang pahinang ito"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Ilunsad"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "I-print sa PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "bukas na isyu"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Mag-download ng file ng notebook"
|
msgstr "Mag-download ng file ng notebook"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "I-toggle ang pag-navigate"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Pinagmulan ng imbakan"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Sa pamamagitan ng"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Susunod na pahina"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Tema ng Sphinx Book"
|
msgstr "Tema ng Sphinx Book"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "Mag-download ng file ng pinagmulan"
|
msgstr "I-edit ang pahinang ito"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Ni"
|
msgstr "Ni"
|
||||||
@ -53,14 +29,38 @@ msgstr "Ni"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Copyright"
|
msgstr "Copyright"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "Magbukas ng isyu"
|
msgstr "Pinagmulan ng imbakan"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Nakaraang pahina"
|
msgstr "Nakaraang pahina"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Susunod na pahina"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "I-toggle ang pag-navigate"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "iminumungkahi i-edit"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "bukas na isyu"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Ilunsad"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "I-print sa PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Sa pamamagitan ng"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Huling na-update noong"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Mag-download ng file ng pinagmulan"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "I-download ang pahinang ito"
|
msgstr "I-download ang pahinang ito"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tema ng"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "düzenleme öner"
|
msgstr "Tarafından tema"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Son güncelleme tarihi"
|
msgstr "Bir sorunu açın"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Bu sayfayı düzenle"
|
msgstr "İçindekiler"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Başlatmak"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "PDF olarak yazdır"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "Açık konu"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Defter dosyasını indirin"
|
msgstr "Defter dosyasını indirin"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Gezinmeyi değiştir"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Kaynak kod deposu"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Tarafından"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "sonraki Sayfa"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "depo"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sfenks Kitap Teması"
|
msgstr "Sfenks Kitap Teması"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Kaynak dosyayı indirin"
|
msgstr "Tam ekran modu"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "İçindekiler"
|
msgstr "Bu sayfayı düzenle"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Tarafından"
|
msgstr "Tarafından"
|
||||||
@ -59,17 +35,41 @@ msgstr "Tarafından"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Telif hakkı"
|
msgstr "Telif hakkı"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Tam ekran modu"
|
msgstr "Kaynak kod deposu"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Bir sorunu açın"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "önceki sayfa"
|
msgstr "önceki sayfa"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "sonraki Sayfa"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Gezinmeyi değiştir"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "depo"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "düzenleme öner"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "Açık konu"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Başlatmak"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "PDF olarak yazdır"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Tarafından"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Son güncelleme tarihi"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Kaynak dosyayı indirin"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Bu sayfayı indirin"
|
msgstr "Bu sayfayı indirin"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Tarafından tema"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "запропонувати редагувати"
|
msgstr "Тема від"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Останнє оновлення:"
|
msgstr "Відкрийте випуск"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "Редагувати цю сторінку"
|
msgstr "Зміст"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Запуск"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "Друк у форматі PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "відкритий випуск"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Завантажте файл блокнота"
|
msgstr "Завантажте файл блокнота"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Переключити навігацію"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Джерело сховища"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "По"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Наступна сторінка"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "сховище"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Тема книги \"Сфінкс\""
|
msgstr "Тема книги \"Сфінкс\""
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Завантажити вихідний файл"
|
msgstr "Повноекранний режим"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Зміст"
|
msgstr "Редагувати цю сторінку"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Автор"
|
msgstr "Автор"
|
||||||
@ -59,17 +35,41 @@ msgstr "Автор"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Авторське право"
|
msgstr "Авторське право"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Повноекранний режим"
|
msgstr "Джерело сховища"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Відкрийте випуск"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "Попередня сторінка"
|
msgstr "Попередня сторінка"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Наступна сторінка"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Переключити навігацію"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "сховище"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "запропонувати редагувати"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "відкритий випуск"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Запуск"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "Друк у форматі PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "По"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Останнє оновлення:"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Завантажити вихідний файл"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Завантажте цю сторінку"
|
msgstr "Завантажте цю сторінку"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Тема від"
|
|
||||||
|
@ -8,44 +8,20 @@ msgstr ""
|
|||||||
"Language: ur\n"
|
"Language: ur\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "ترمیم کی تجویز کریں"
|
msgstr "کے ذریعہ تھیم"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "آخری بار تازہ کاری ہوئی"
|
msgstr "ایک مسئلہ کھولیں"
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "اس صفحے میں ترمیم کریں"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "لانچ کریں"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "پی ڈی ایف پرنٹ کریں"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "کھلا مسئلہ"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "نوٹ بک فائل ڈاؤن لوڈ کریں"
|
msgstr "نوٹ بک فائل ڈاؤن لوڈ کریں"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "نیویگیشن ٹوگل کریں"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "ماخذ ذخیرہ"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "کی طرف"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "اگلا صفحہ"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "سپنکس بک تھیم"
|
msgstr "سپنکس بک تھیم"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Edit this page"
|
||||||
msgstr "سورس فائل ڈاؤن لوڈ کریں"
|
msgstr "اس صفحے میں ترمیم کریں"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "بذریعہ"
|
msgstr "بذریعہ"
|
||||||
@ -53,14 +29,38 @@ msgstr "بذریعہ"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "کاپی رائٹ"
|
msgstr "کاپی رائٹ"
|
||||||
|
|
||||||
msgid "Open an issue"
|
msgid "Source repository"
|
||||||
msgstr "ایک مسئلہ کھولیں"
|
msgstr "ماخذ ذخیرہ"
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "سابقہ صفحہ"
|
msgstr "سابقہ صفحہ"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "اگلا صفحہ"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "نیویگیشن ٹوگل کریں"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "ترمیم کی تجویز کریں"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "کھلا مسئلہ"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "لانچ کریں"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "پی ڈی ایف پرنٹ کریں"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "کی طرف"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "آخری بار تازہ کاری ہوئی"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "سورس فائل ڈاؤن لوڈ کریں"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "اس صفحے کو ڈاؤن لوڈ کریں"
|
msgstr "اس صفحے کو ڈاؤن لوڈ کریں"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "کے ذریعہ تھیم"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "đề nghị chỉnh sửa"
|
msgstr "Chủ đề của"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "Cập nhật lần cuối vào"
|
msgstr "Mở một vấn đề"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "chỉnh sửa trang này"
|
msgstr "Nội dung"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "Phóng"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "In sang PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "vấn đề mở"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "Tải xuống tệp sổ tay"
|
msgstr "Tải xuống tệp sổ tay"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "Chuyển đổi điều hướng thành"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "Kho nguồn"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "Bằng"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "Trang tiếp theo"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "kho"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Chủ đề sách nhân sư"
|
msgstr "Chủ đề sách nhân sư"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "Tải xuống tệp nguồn"
|
msgstr "Chế độ toàn màn hình"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "Nội dung"
|
msgstr "chỉnh sửa trang này"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "Bởi"
|
msgstr "Bởi"
|
||||||
@ -59,17 +35,41 @@ msgstr "Bởi"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Bản quyền"
|
msgstr "Bản quyền"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "Chế độ toàn màn hình"
|
msgstr "Kho nguồn"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "Mở một vấn đề"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "trang trước"
|
msgstr "trang trước"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "Trang tiếp theo"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "Chuyển đổi điều hướng thành"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "kho"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "đề nghị chỉnh sửa"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "vấn đề mở"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "Phóng"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "In sang PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "Bằng"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "Cập nhật lần cuối vào"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "Tải xuống tệp nguồn"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "Tải xuống trang này"
|
msgstr "Tải xuống trang này"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "Chủ đề của"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: zh_CN\n"
|
"Language: zh_CN\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "提出修改建议"
|
msgstr "主题作者:"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "上次更新时间:"
|
|
||||||
|
|
||||||
msgid "Edit this page"
|
|
||||||
msgstr "编辑此页面"
|
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "启动"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "列印成 PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "创建议题"
|
msgstr "创建议题"
|
||||||
|
|
||||||
|
msgid "Contents"
|
||||||
|
msgstr "目录"
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "下载笔记本文件"
|
msgstr "下载笔记本文件"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "显示或隐藏导航栏"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "源码库"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "作者:"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "下一页"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "仓库"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx Book 主题"
|
msgstr "Sphinx Book 主题"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "下载源文件"
|
msgstr "全屏模式"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "目录"
|
msgstr "编辑此页面"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "作者:"
|
msgstr "作者:"
|
||||||
@ -59,17 +35,41 @@ msgstr "作者:"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "版权"
|
msgstr "版权"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "全屏模式"
|
msgstr "源码库"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "创建议题"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "上一页"
|
msgstr "上一页"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "下一页"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "显示或隐藏导航栏"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "仓库"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "提出修改建议"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "创建议题"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "启动"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "列印成 PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "作者:"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "上次更新时间:"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "下载源文件"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "下载此页面"
|
msgstr "下载此页面"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "主题作者:"
|
|
||||||
|
@ -8,50 +8,26 @@ msgstr ""
|
|||||||
"Language: zh_TW\n"
|
"Language: zh_TW\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "suggest edit"
|
msgid "Theme by the"
|
||||||
msgstr "提出修改建議"
|
msgstr "佈景主題作者:"
|
||||||
|
|
||||||
msgid "Last updated on"
|
msgid "Open an issue"
|
||||||
msgstr "最後更新時間:"
|
msgstr "開啟議題"
|
||||||
|
|
||||||
msgid "Edit this page"
|
msgid "Contents"
|
||||||
msgstr "編輯此頁面"
|
msgstr "目錄"
|
||||||
|
|
||||||
msgid "Launch"
|
|
||||||
msgstr "啟動"
|
|
||||||
|
|
||||||
msgid "Print to PDF"
|
|
||||||
msgstr "列印成 PDF"
|
|
||||||
|
|
||||||
msgid "open issue"
|
|
||||||
msgstr "公開的問題"
|
|
||||||
|
|
||||||
msgid "Download notebook file"
|
msgid "Download notebook file"
|
||||||
msgstr "下載 Notebook 檔案"
|
msgstr "下載 Notebook 檔案"
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
|
||||||
msgstr "顯示或隱藏導覽列"
|
|
||||||
|
|
||||||
msgid "Source repository"
|
|
||||||
msgstr "來源儲存庫"
|
|
||||||
|
|
||||||
msgid "By the"
|
|
||||||
msgstr "作者:"
|
|
||||||
|
|
||||||
msgid "next page"
|
|
||||||
msgstr "下一頁"
|
|
||||||
|
|
||||||
msgid "repository"
|
|
||||||
msgstr "儲存庫"
|
|
||||||
|
|
||||||
msgid "Sphinx Book Theme"
|
msgid "Sphinx Book Theme"
|
||||||
msgstr "Sphinx Book 佈景主題"
|
msgstr "Sphinx Book 佈景主題"
|
||||||
|
|
||||||
msgid "Download source file"
|
msgid "Fullscreen mode"
|
||||||
msgstr "下載原始檔"
|
msgstr "全螢幕模式"
|
||||||
|
|
||||||
msgid "Contents"
|
msgid "Edit this page"
|
||||||
msgstr "目錄"
|
msgstr "編輯此頁面"
|
||||||
|
|
||||||
msgid "By"
|
msgid "By"
|
||||||
msgstr "作者:"
|
msgstr "作者:"
|
||||||
@ -59,17 +35,41 @@ msgstr "作者:"
|
|||||||
msgid "Copyright"
|
msgid "Copyright"
|
||||||
msgstr "Copyright"
|
msgstr "Copyright"
|
||||||
|
|
||||||
msgid "Fullscreen mode"
|
msgid "Source repository"
|
||||||
msgstr "全螢幕模式"
|
msgstr "來源儲存庫"
|
||||||
|
|
||||||
msgid "Open an issue"
|
|
||||||
msgstr "開啟議題"
|
|
||||||
|
|
||||||
msgid "previous page"
|
msgid "previous page"
|
||||||
msgstr "上一頁"
|
msgstr "上一頁"
|
||||||
|
|
||||||
|
msgid "next page"
|
||||||
|
msgstr "下一頁"
|
||||||
|
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "顯示或隱藏導覽列"
|
||||||
|
|
||||||
|
msgid "repository"
|
||||||
|
msgstr "儲存庫"
|
||||||
|
|
||||||
|
msgid "suggest edit"
|
||||||
|
msgstr "提出修改建議"
|
||||||
|
|
||||||
|
msgid "open issue"
|
||||||
|
msgstr "公開的問題"
|
||||||
|
|
||||||
|
msgid "Launch"
|
||||||
|
msgstr "啟動"
|
||||||
|
|
||||||
|
msgid "Print to PDF"
|
||||||
|
msgstr "列印成 PDF"
|
||||||
|
|
||||||
|
msgid "By the"
|
||||||
|
msgstr "作者:"
|
||||||
|
|
||||||
|
msgid "Last updated on"
|
||||||
|
msgstr "最後更新時間:"
|
||||||
|
|
||||||
|
msgid "Download source file"
|
||||||
|
msgstr "下載原始檔"
|
||||||
|
|
||||||
msgid "Download this page"
|
msgid "Download this page"
|
||||||
msgstr "下載此頁面"
|
msgstr "下載此頁面"
|
||||||
|
|
||||||
msgid "Theme by the"
|
|
||||||
msgstr "佈景主題作者:"
|
|
||||||
|
BIN
docs/build/html/_static/metal_debugger/capture.png
vendored
Normal file
BIN
docs/build/html/_static/metal_debugger/capture.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
BIN
docs/build/html/_static/metal_debugger/schema.png
vendored
Normal file
BIN
docs/build/html/_static/metal_debugger/schema.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 746 KiB |
109
docs/build/html/_static/searchtools.js
vendored
109
docs/build/html/_static/searchtools.js
vendored
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Sphinx JavaScript utilities for the full-text search.
|
* Sphinx JavaScript utilities for the full-text search.
|
||||||
*
|
*
|
||||||
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
|
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
|
||||||
* :license: BSD, see LICENSE for details.
|
* :license: BSD, see LICENSE for details.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -57,14 +57,14 @@ const _removeChildren = (element) => {
|
|||||||
const _escapeRegExp = (string) =>
|
const _escapeRegExp = (string) =>
|
||||||
string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
||||||
|
|
||||||
const _displayItem = (item, highlightTerms, searchTerms) => {
|
const _displayItem = (item, searchTerms, highlightTerms) => {
|
||||||
const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
|
const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
|
||||||
const docUrlRoot = DOCUMENTATION_OPTIONS.URL_ROOT;
|
|
||||||
const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
|
const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
|
||||||
const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
|
const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
|
||||||
const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
|
const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
|
||||||
|
const contentRoot = document.documentElement.dataset.content_root;
|
||||||
|
|
||||||
const [docName, title, anchor, descr] = item;
|
const [docName, title, anchor, descr, score, _filename] = item;
|
||||||
|
|
||||||
let listItem = document.createElement("li");
|
let listItem = document.createElement("li");
|
||||||
let requestUrl;
|
let requestUrl;
|
||||||
@ -75,29 +75,35 @@ const _displayItem = (item, highlightTerms, searchTerms) => {
|
|||||||
if (dirname.match(/\/index\/$/))
|
if (dirname.match(/\/index\/$/))
|
||||||
dirname = dirname.substring(0, dirname.length - 6);
|
dirname = dirname.substring(0, dirname.length - 6);
|
||||||
else if (dirname === "index/") dirname = "";
|
else if (dirname === "index/") dirname = "";
|
||||||
requestUrl = docUrlRoot + dirname;
|
requestUrl = contentRoot + dirname;
|
||||||
linkUrl = requestUrl;
|
linkUrl = requestUrl;
|
||||||
} else {
|
} else {
|
||||||
// normal html builders
|
// normal html builders
|
||||||
requestUrl = docUrlRoot + docName + docFileSuffix;
|
requestUrl = contentRoot + docName + docFileSuffix;
|
||||||
linkUrl = docName + docLinkSuffix;
|
linkUrl = docName + docLinkSuffix;
|
||||||
}
|
}
|
||||||
const params = new URLSearchParams();
|
|
||||||
params.set("highlight", [...highlightTerms].join(" "));
|
|
||||||
let linkEl = listItem.appendChild(document.createElement("a"));
|
let linkEl = listItem.appendChild(document.createElement("a"));
|
||||||
linkEl.href = linkUrl + "?" + params.toString() + anchor;
|
linkEl.href = linkUrl + anchor;
|
||||||
|
linkEl.dataset.score = score;
|
||||||
linkEl.innerHTML = title;
|
linkEl.innerHTML = title;
|
||||||
if (descr)
|
if (descr) {
|
||||||
listItem.appendChild(document.createElement("span")).innerText =
|
listItem.appendChild(document.createElement("span")).innerHTML =
|
||||||
" (" + descr + ")";
|
" (" + descr + ")";
|
||||||
|
// highlight search terms in the description
|
||||||
|
if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
|
||||||
|
highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
|
||||||
|
}
|
||||||
else if (showSearchSummary)
|
else if (showSearchSummary)
|
||||||
fetch(requestUrl)
|
fetch(requestUrl)
|
||||||
.then((responseData) => responseData.text())
|
.then((responseData) => responseData.text())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
if (data)
|
if (data)
|
||||||
listItem.appendChild(
|
listItem.appendChild(
|
||||||
Search.makeSearchSummary(data, searchTerms, highlightTerms)
|
Search.makeSearchSummary(data, searchTerms)
|
||||||
);
|
);
|
||||||
|
// highlight search terms in the summary
|
||||||
|
if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
|
||||||
|
highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
|
||||||
});
|
});
|
||||||
Search.output.appendChild(listItem);
|
Search.output.appendChild(listItem);
|
||||||
};
|
};
|
||||||
@ -116,15 +122,15 @@ const _finishSearch = (resultCount) => {
|
|||||||
const _displayNextItem = (
|
const _displayNextItem = (
|
||||||
results,
|
results,
|
||||||
resultCount,
|
resultCount,
|
||||||
|
searchTerms,
|
||||||
highlightTerms,
|
highlightTerms,
|
||||||
searchTerms
|
|
||||||
) => {
|
) => {
|
||||||
// results left, load the summary and display it
|
// results left, load the summary and display it
|
||||||
// this is intended to be dynamic (don't sub resultsCount)
|
// this is intended to be dynamic (don't sub resultsCount)
|
||||||
if (results.length) {
|
if (results.length) {
|
||||||
_displayItem(results.pop(), highlightTerms, searchTerms);
|
_displayItem(results.pop(), searchTerms, highlightTerms);
|
||||||
setTimeout(
|
setTimeout(
|
||||||
() => _displayNextItem(results, resultCount, highlightTerms, searchTerms),
|
() => _displayNextItem(results, resultCount, searchTerms, highlightTerms),
|
||||||
5
|
5
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -155,10 +161,8 @@ const Search = {
|
|||||||
_pulse_status: -1,
|
_pulse_status: -1,
|
||||||
|
|
||||||
htmlToText: (htmlString) => {
|
htmlToText: (htmlString) => {
|
||||||
const htmlElement = document
|
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
|
||||||
.createRange()
|
htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() });
|
||||||
.createContextualFragment(htmlString);
|
|
||||||
_removeChildren(htmlElement.querySelectorAll(".headerlink"));
|
|
||||||
const docContent = htmlElement.querySelector('[role="main"]');
|
const docContent = htmlElement.querySelector('[role="main"]');
|
||||||
if (docContent !== undefined) return docContent.textContent;
|
if (docContent !== undefined) return docContent.textContent;
|
||||||
console.warn(
|
console.warn(
|
||||||
@ -239,6 +243,12 @@ const Search = {
|
|||||||
* execute search (requires search index to be loaded)
|
* execute search (requires search index to be loaded)
|
||||||
*/
|
*/
|
||||||
query: (query) => {
|
query: (query) => {
|
||||||
|
const filenames = Search._index.filenames;
|
||||||
|
const docNames = Search._index.docnames;
|
||||||
|
const titles = Search._index.titles;
|
||||||
|
const allTitles = Search._index.alltitles;
|
||||||
|
const indexEntries = Search._index.indexentries;
|
||||||
|
|
||||||
// stem the search terms and add them to the correct list
|
// stem the search terms and add them to the correct list
|
||||||
const stemmer = new Stemmer();
|
const stemmer = new Stemmer();
|
||||||
const searchTerms = new Set();
|
const searchTerms = new Set();
|
||||||
@ -266,6 +276,10 @@ const Search = {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js
|
||||||
|
localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" "))
|
||||||
|
}
|
||||||
|
|
||||||
// console.debug("SEARCH: searching for:");
|
// console.debug("SEARCH: searching for:");
|
||||||
// console.info("required: ", [...searchTerms]);
|
// console.info("required: ", [...searchTerms]);
|
||||||
// console.info("excluded: ", [...excludedTerms]);
|
// console.info("excluded: ", [...excludedTerms]);
|
||||||
@ -274,6 +288,40 @@ const Search = {
|
|||||||
let results = [];
|
let results = [];
|
||||||
_removeChildren(document.getElementById("search-progress"));
|
_removeChildren(document.getElementById("search-progress"));
|
||||||
|
|
||||||
|
const queryLower = query.toLowerCase();
|
||||||
|
for (const [title, foundTitles] of Object.entries(allTitles)) {
|
||||||
|
if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {
|
||||||
|
for (const [file, id] of foundTitles) {
|
||||||
|
let score = Math.round(100 * queryLower.length / title.length)
|
||||||
|
results.push([
|
||||||
|
docNames[file],
|
||||||
|
titles[file] !== title ? `${titles[file]} > ${title}` : title,
|
||||||
|
id !== null ? "#" + id : "",
|
||||||
|
null,
|
||||||
|
score,
|
||||||
|
filenames[file],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// search for explicit entries in index directives
|
||||||
|
for (const [entry, foundEntries] of Object.entries(indexEntries)) {
|
||||||
|
if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
|
||||||
|
for (const [file, id] of foundEntries) {
|
||||||
|
let score = Math.round(100 * queryLower.length / entry.length)
|
||||||
|
results.push([
|
||||||
|
docNames[file],
|
||||||
|
titles[file],
|
||||||
|
id ? "#" + id : "",
|
||||||
|
null,
|
||||||
|
score,
|
||||||
|
filenames[file],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// lookup as object
|
// lookup as object
|
||||||
objectTerms.forEach((term) =>
|
objectTerms.forEach((term) =>
|
||||||
results.push(...Search.performObjectSearch(term, objectTerms))
|
results.push(...Search.performObjectSearch(term, objectTerms))
|
||||||
@ -320,7 +368,7 @@ const Search = {
|
|||||||
// console.info("search results:", Search.lastresults);
|
// console.info("search results:", Search.lastresults);
|
||||||
|
|
||||||
// print the results
|
// print the results
|
||||||
_displayNextItem(results, results.length, highlightTerms, searchTerms);
|
_displayNextItem(results, results.length, searchTerms, highlightTerms);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -401,8 +449,8 @@ const Search = {
|
|||||||
// prepare search
|
// prepare search
|
||||||
const terms = Search._index.terms;
|
const terms = Search._index.terms;
|
||||||
const titleTerms = Search._index.titleterms;
|
const titleTerms = Search._index.titleterms;
|
||||||
const docNames = Search._index.docnames;
|
|
||||||
const filenames = Search._index.filenames;
|
const filenames = Search._index.filenames;
|
||||||
|
const docNames = Search._index.docnames;
|
||||||
const titles = Search._index.titles;
|
const titles = Search._index.titles;
|
||||||
|
|
||||||
const scoreMap = new Map();
|
const scoreMap = new Map();
|
||||||
@ -499,16 +547,15 @@ const Search = {
|
|||||||
/**
|
/**
|
||||||
* helper function to return a node containing the
|
* helper function to return a node containing the
|
||||||
* search summary for a given text. keywords is a list
|
* search summary for a given text. keywords is a list
|
||||||
* of stemmed words, highlightWords is the list of normal, unstemmed
|
* of stemmed words.
|
||||||
* words. the first one is used to find the occurrence, the
|
|
||||||
* latter for highlighting it.
|
|
||||||
*/
|
*/
|
||||||
makeSearchSummary: (htmlText, keywords, highlightWords) => {
|
makeSearchSummary: (htmlText, keywords) => {
|
||||||
const text = Search.htmlToText(htmlText).toLowerCase();
|
const text = Search.htmlToText(htmlText);
|
||||||
if (text === "") return null;
|
if (text === "") return null;
|
||||||
|
|
||||||
|
const textLower = text.toLowerCase();
|
||||||
const actualStartPosition = [...keywords]
|
const actualStartPosition = [...keywords]
|
||||||
.map((k) => text.indexOf(k.toLowerCase()))
|
.map((k) => textLower.indexOf(k.toLowerCase()))
|
||||||
.filter((i) => i > -1)
|
.filter((i) => i > -1)
|
||||||
.slice(-1)[0];
|
.slice(-1)[0];
|
||||||
const startWithContext = Math.max(actualStartPosition - 120, 0);
|
const startWithContext = Math.max(actualStartPosition - 120, 0);
|
||||||
@ -516,13 +563,9 @@ const Search = {
|
|||||||
const top = startWithContext === 0 ? "" : "...";
|
const top = startWithContext === 0 ? "" : "...";
|
||||||
const tail = startWithContext + 240 < text.length ? "..." : "";
|
const tail = startWithContext + 240 < text.length ? "..." : "";
|
||||||
|
|
||||||
let summary = document.createElement("div");
|
let summary = document.createElement("p");
|
||||||
summary.classList.add("context");
|
summary.classList.add("context");
|
||||||
summary.innerText = top + text.substr(startWithContext, 240).trim() + tail;
|
summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;
|
||||||
|
|
||||||
highlightWords.forEach((highlightWord) =>
|
|
||||||
_highlightText(summary, highlightWord, "highlighted")
|
|
||||||
);
|
|
||||||
|
|
||||||
return summary;
|
return summary;
|
||||||
},
|
},
|
||||||
|
154
docs/build/html/_static/sphinx_highlight.js
vendored
Normal file
154
docs/build/html/_static/sphinx_highlight.js
vendored
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
/* Highlighting utilities for Sphinx HTML documentation. */
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
const SPHINX_HIGHLIGHT_ENABLED = true
|
||||||
|
|
||||||
|
/**
|
||||||
|
* highlight a given string on a node by wrapping it in
|
||||||
|
* span elements with the given class name.
|
||||||
|
*/
|
||||||
|
const _highlight = (node, addItems, text, className) => {
|
||||||
|
if (node.nodeType === Node.TEXT_NODE) {
|
||||||
|
const val = node.nodeValue;
|
||||||
|
const parent = node.parentNode;
|
||||||
|
const pos = val.toLowerCase().indexOf(text);
|
||||||
|
if (
|
||||||
|
pos >= 0 &&
|
||||||
|
!parent.classList.contains(className) &&
|
||||||
|
!parent.classList.contains("nohighlight")
|
||||||
|
) {
|
||||||
|
let span;
|
||||||
|
|
||||||
|
const closestNode = parent.closest("body, svg, foreignObject");
|
||||||
|
const isInSVG = closestNode && closestNode.matches("svg");
|
||||||
|
if (isInSVG) {
|
||||||
|
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
|
||||||
|
} else {
|
||||||
|
span = document.createElement("span");
|
||||||
|
span.classList.add(className);
|
||||||
|
}
|
||||||
|
|
||||||
|
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
|
||||||
|
const rest = document.createTextNode(val.substr(pos + text.length));
|
||||||
|
parent.insertBefore(
|
||||||
|
span,
|
||||||
|
parent.insertBefore(
|
||||||
|
rest,
|
||||||
|
node.nextSibling
|
||||||
|
)
|
||||||
|
);
|
||||||
|
node.nodeValue = val.substr(0, pos);
|
||||||
|
/* There may be more occurrences of search term in this node. So call this
|
||||||
|
* function recursively on the remaining fragment.
|
||||||
|
*/
|
||||||
|
_highlight(rest, addItems, text, className);
|
||||||
|
|
||||||
|
if (isInSVG) {
|
||||||
|
const rect = document.createElementNS(
|
||||||
|
"http://www.w3.org/2000/svg",
|
||||||
|
"rect"
|
||||||
|
);
|
||||||
|
const bbox = parent.getBBox();
|
||||||
|
rect.x.baseVal.value = bbox.x;
|
||||||
|
rect.y.baseVal.value = bbox.y;
|
||||||
|
rect.width.baseVal.value = bbox.width;
|
||||||
|
rect.height.baseVal.value = bbox.height;
|
||||||
|
rect.setAttribute("class", className);
|
||||||
|
addItems.push({ parent: parent, target: rect });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (node.matches && !node.matches("button, select, textarea")) {
|
||||||
|
node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const _highlightText = (thisNode, text, className) => {
|
||||||
|
let addItems = [];
|
||||||
|
_highlight(thisNode, addItems, text, className);
|
||||||
|
addItems.forEach((obj) =>
|
||||||
|
obj.parent.insertAdjacentElement("beforebegin", obj.target)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Small JavaScript module for the documentation.
|
||||||
|
*/
|
||||||
|
const SphinxHighlight = {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* highlight the search words provided in localstorage in the text
|
||||||
|
*/
|
||||||
|
highlightSearchWords: () => {
|
||||||
|
if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight
|
||||||
|
|
||||||
|
// get and clear terms from localstorage
|
||||||
|
const url = new URL(window.location);
|
||||||
|
const highlight =
|
||||||
|
localStorage.getItem("sphinx_highlight_terms")
|
||||||
|
|| url.searchParams.get("highlight")
|
||||||
|
|| "";
|
||||||
|
localStorage.removeItem("sphinx_highlight_terms")
|
||||||
|
url.searchParams.delete("highlight");
|
||||||
|
window.history.replaceState({}, "", url);
|
||||||
|
|
||||||
|
// get individual terms from highlight string
|
||||||
|
const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
|
||||||
|
if (terms.length === 0) return; // nothing to do
|
||||||
|
|
||||||
|
// There should never be more than one element matching "div.body"
|
||||||
|
const divBody = document.querySelectorAll("div.body");
|
||||||
|
const body = divBody.length ? divBody[0] : document.querySelector("body");
|
||||||
|
window.setTimeout(() => {
|
||||||
|
terms.forEach((term) => _highlightText(body, term, "highlighted"));
|
||||||
|
}, 10);
|
||||||
|
|
||||||
|
const searchBox = document.getElementById("searchbox");
|
||||||
|
if (searchBox === null) return;
|
||||||
|
searchBox.appendChild(
|
||||||
|
document
|
||||||
|
.createRange()
|
||||||
|
.createContextualFragment(
|
||||||
|
'<p class="highlight-link">' +
|
||||||
|
'<a href="javascript:SphinxHighlight.hideSearchWords()">' +
|
||||||
|
_("Hide Search Matches") +
|
||||||
|
"</a></p>"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* helper function to hide the search marks again
|
||||||
|
*/
|
||||||
|
hideSearchWords: () => {
|
||||||
|
document
|
||||||
|
.querySelectorAll("#searchbox .highlight-link")
|
||||||
|
.forEach((el) => el.remove());
|
||||||
|
document
|
||||||
|
.querySelectorAll("span.highlighted")
|
||||||
|
.forEach((el) => el.classList.remove("highlighted"));
|
||||||
|
localStorage.removeItem("sphinx_highlight_terms")
|
||||||
|
},
|
||||||
|
|
||||||
|
initEscapeListener: () => {
|
||||||
|
// only install a listener if it is really needed
|
||||||
|
if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;
|
||||||
|
|
||||||
|
document.addEventListener("keydown", (event) => {
|
||||||
|
// bail for input elements
|
||||||
|
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
|
||||||
|
// bail with special keys
|
||||||
|
if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;
|
||||||
|
if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) {
|
||||||
|
SphinxHighlight.hideSearchWords();
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
_ready(() => {
|
||||||
|
/* Do not call highlightSearchWords() when we are on the search page.
|
||||||
|
* It will highlight words from the *previous* search query.
|
||||||
|
*/
|
||||||
|
if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
|
||||||
|
SphinxHighlight.initEscapeListener();
|
||||||
|
});
|
File diff suppressed because one or more lines are too long
116
docs/build/html/cpp/ops.html
vendored
116
docs/build/html/cpp/ops.html
vendored
@ -1,15 +1,14 @@
|
|||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
|
||||||
<html lang="en" data-content_root="" >
|
<html lang="en" data-content_root="../" >
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
||||||
|
|
||||||
<title>Operations — MLX 0.7.0 documentation</title>
|
<title>Operations — MLX 0.9.0 documentation</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -29,20 +28,18 @@
|
|||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||||
<link rel="stylesheet" href="../_static/styles/sphinx-book-theme.css?digest=14f4ca6b54d191a8c7657f6c759bf11a5fb86285" type="text/css" />
|
<link rel="stylesheet" type="text/css" href="../_static/styles/sphinx-book-theme.css?v=384b581d" />
|
||||||
|
|
||||||
<!-- Pre-loaded scripts that we'll load fully later -->
|
<!-- Pre-loaded scripts that we'll load fully later -->
|
||||||
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
||||||
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
||||||
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
||||||
|
|
||||||
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
<script src="../_static/documentation_options.js?v=2a76c96f"></script>
|
||||||
<script src="../_static/jquery.js"></script>
|
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||||
<script src="../_static/underscore.js"></script>
|
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||||
<script src="../_static/_sphinx_javascript_frameworks_compat.js"></script>
|
<script src="../_static/scripts/sphinx-book-theme.js?v=efea14e4"></script>
|
||||||
<script src="../_static/doctools.js"></script>
|
|
||||||
<script src="../_static/scripts/sphinx-book-theme.js?digest=5a5c038af52cf7bc1a1ec88eea08e6366ee68824"></script>
|
|
||||||
<script>DOCUMENTATION_OPTIONS.pagename = 'cpp/ops';</script>
|
<script>DOCUMENTATION_OPTIONS.pagename = 'cpp/ops';</script>
|
||||||
<link rel="index" title="Index" href="../genindex.html" />
|
<link rel="index" title="Index" href="../genindex.html" />
|
||||||
<link rel="search" title="Search" href="../search.html" />
|
<link rel="search" title="Search" href="../search.html" />
|
||||||
@ -134,12 +131,23 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.7.0 documentation - Home"/>
|
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.9.0 documentation - Home"/>
|
||||||
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.7.0 documentation - Home"/>`);</script>
|
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.9.0 documentation - Home"/>`);</script>
|
||||||
|
|
||||||
|
|
||||||
</a></div>
|
</a></div>
|
||||||
<div class="sidebar-primary-item"><nav class="bd-links" id="bd-docs-nav" aria-label="Main">
|
<div class="sidebar-primary-item">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<i class="fa-solid fa-magnifying-glass"></i>
|
||||||
|
<span class="search-button__default-text">Search</span>
|
||||||
|
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script></div>
|
||||||
|
<div class="sidebar-primary-item"><nav class="bd-links bd-docs-nav" aria-label="Main">
|
||||||
<div class="bd-toc-item navbar-nav active">
|
<div class="bd-toc-item navbar-nav active">
|
||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
@ -168,27 +176,38 @@
|
|||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.at.html">mlx.core.array.at</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.itemsize.html">mlx.core.array.itemsize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.nbytes.html">mlx.core.array.nbytes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummax.html">mlx.core.array.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummin.html">mlx.core.array.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumprod.html">mlx.core.array.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumsum.html">mlx.core.array.cumsum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diag.html">mlx.core.array.diag</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diagonal.html">mlx.core.array.diagonal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.flatten.html">mlx.core.array.flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log10.html">mlx.core.array.log10</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log2.html">mlx.core.array.log2</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.moveaxis.html">mlx.core.array.moveaxis</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
||||||
@ -198,13 +217,21 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.squeeze.html">mlx.core.array.squeeze</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.swapaxes.html">mlx.core.array.swapaxes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/data_types.html">Data Types</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.DtypeCategory.html">mlx.core.DtypeCategory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.issubdtype.html">mlx.core.issubdtype</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
||||||
@ -215,7 +242,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
||||||
@ -246,6 +273,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummax.html">mlx.core.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummin.html">mlx.core.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumprod.html">mlx.core.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumsum.html">mlx.core.cumsum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
||||||
@ -266,10 +297,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
||||||
@ -342,7 +373,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
||||||
@ -355,7 +386,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
||||||
@ -367,7 +398,14 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fast.html">Fast</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rms_norm.html">mlx.core.fast.rms_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.layer_norm.html">mlx.core.fast.layer_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rope.html">mlx.core.fast.rope</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.scaled_dot_product_attention.html">mlx.core.fast.scaled_dot_product_attention</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
||||||
@ -382,12 +420,12 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
||||||
@ -396,9 +434,9 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
||||||
@ -413,6 +451,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.set_dtype.html">mlx.nn.Module.set_dtype</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
||||||
@ -420,7 +459,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
||||||
@ -458,7 +497,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
||||||
@ -482,7 +521,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
||||||
@ -499,7 +538,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
||||||
@ -512,15 +551,15 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
||||||
@ -532,7 +571,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-20" name="toctree-checkbox-20" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-20"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
||||||
@ -542,7 +581,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-21" name="toctree-checkbox-21" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-21"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
||||||
@ -556,6 +595,7 @@
|
|||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../dev/metal_debugger.html">Metal Debugger</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -722,7 +762,7 @@ document.write(`
|
|||||||
<article class="bd-article" role="main">
|
<article class="bd-article" role="main">
|
||||||
|
|
||||||
<section id="operations">
|
<section id="operations">
|
||||||
<span id="cpp-ops"></span><h1>Operations<a class="headerlink" href="#operations" title="Permalink to this heading">#</a></h1>
|
<span id="cpp-ops"></span><h1>Operations<a class="headerlink" href="#operations" title="Link to this heading">#</a></h1>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
628
docs/build/html/dev/extensions.html
vendored
628
docs/build/html/dev/extensions.html
vendored
File diff suppressed because it is too large
Load Diff
905
docs/build/html/dev/metal_debugger.html
vendored
Normal file
905
docs/build/html/dev/metal_debugger.html
vendored
Normal file
@ -0,0 +1,905 @@
|
|||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
|
||||||
|
<html lang="en" data-content_root="../" >
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
||||||
|
|
||||||
|
<title>Metal Debugger — MLX 0.9.0 documentation</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script data-cfasync="false">
|
||||||
|
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
|
||||||
|
document.documentElement.dataset.theme = localStorage.getItem("theme") || "light";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Loaded before other Sphinx assets -->
|
||||||
|
<link href="../_static/styles/theme.css?digest=5b4479735964841361fd" rel="stylesheet" />
|
||||||
|
<link href="../_static/styles/bootstrap.css?digest=5b4479735964841361fd" rel="stylesheet" />
|
||||||
|
<link href="../_static/styles/pydata-sphinx-theme.css?digest=5b4479735964841361fd" rel="stylesheet" />
|
||||||
|
|
||||||
|
|
||||||
|
<link href="../_static/vendor/fontawesome/6.1.2/css/all.min.css?digest=5b4479735964841361fd" rel="stylesheet" />
|
||||||
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-solid-900.woff2" />
|
||||||
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
||||||
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="../_static/styles/sphinx-book-theme.css?v=384b581d" />
|
||||||
|
|
||||||
|
<!-- Pre-loaded scripts that we'll load fully later -->
|
||||||
|
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
||||||
|
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
||||||
|
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
||||||
|
|
||||||
|
<script src="../_static/documentation_options.js?v=2a76c96f"></script>
|
||||||
|
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||||
|
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||||
|
<script src="../_static/scripts/sphinx-book-theme.js?v=efea14e4"></script>
|
||||||
|
<script>DOCUMENTATION_OPTIONS.pagename = 'dev/metal_debugger';</script>
|
||||||
|
<link rel="index" title="Index" href="../genindex.html" />
|
||||||
|
<link rel="search" title="Search" href="../search.html" />
|
||||||
|
<link rel="prev" title="Developer Documentation" href="extensions.html" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<meta name="docsearch:language" content="en"/>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" data-default-mode="">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="skip-link" href="#main-content">Skip to main content</a>
|
||||||
|
|
||||||
|
<div id="pst-scroll-pixel-helper"></div>
|
||||||
|
|
||||||
|
|
||||||
|
<button type="button" class="btn rounded-pill" id="pst-back-to-top">
|
||||||
|
<i class="fa-solid fa-arrow-up"></i>
|
||||||
|
Back to top
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
<input type="checkbox"
|
||||||
|
class="sidebar-toggle"
|
||||||
|
name="__primary"
|
||||||
|
id="__primary"/>
|
||||||
|
<label class="overlay overlay-primary" for="__primary"></label>
|
||||||
|
|
||||||
|
<input type="checkbox"
|
||||||
|
class="sidebar-toggle"
|
||||||
|
name="__secondary"
|
||||||
|
id="__secondary"/>
|
||||||
|
<label class="overlay overlay-secondary" for="__secondary"></label>
|
||||||
|
|
||||||
|
<div class="search-button__wrapper">
|
||||||
|
<div class="search-button__overlay"></div>
|
||||||
|
<div class="search-button__search-container">
|
||||||
|
<form class="bd-search d-flex align-items-center"
|
||||||
|
action="../search.html"
|
||||||
|
method="get">
|
||||||
|
<i class="fa-solid fa-magnifying-glass"></i>
|
||||||
|
<input type="search"
|
||||||
|
class="form-control"
|
||||||
|
name="q"
|
||||||
|
id="search-input"
|
||||||
|
placeholder="Search..."
|
||||||
|
aria-label="Search..."
|
||||||
|
autocomplete="off"
|
||||||
|
autocorrect="off"
|
||||||
|
autocapitalize="off"
|
||||||
|
spellcheck="false"/>
|
||||||
|
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
|
||||||
|
</form></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="bd-header navbar navbar-expand-lg bd-navbar">
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="bd-container">
|
||||||
|
<div class="bd-container__inner bd-page-width">
|
||||||
|
|
||||||
|
<div class="bd-sidebar-primary bd-sidebar">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="sidebar-header-items sidebar-primary__section">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-primary-items__start sidebar-primary__section">
|
||||||
|
<div class="sidebar-primary-item">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="navbar-brand logo" href="../index.html">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.9.0 documentation - Home"/>
|
||||||
|
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.9.0 documentation - Home"/>`);</script>
|
||||||
|
|
||||||
|
|
||||||
|
</a></div>
|
||||||
|
<div class="sidebar-primary-item">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<i class="fa-solid fa-magnifying-glass"></i>
|
||||||
|
<span class="search-button__default-text">Search</span>
|
||||||
|
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script></div>
|
||||||
|
<div class="sidebar-primary-item"><nav class="bd-links bd-docs-nav" aria-label="Main">
|
||||||
|
<div class="bd-toc-item navbar-nav active">
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
||||||
|
<ul class="nav bd-sidenav">
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../install.html">Build and Install</a></li>
|
||||||
|
</ul>
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Usage</span></p>
|
||||||
|
<ul class="nav bd-sidenav">
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/quick_start.html">Quick Start Guide</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/lazy_evaluation.html">Lazy Evaluation</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/unified_memory.html">Unified Memory</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/indexing.html">Indexing Arrays</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/saving_and_loading.html">Saving and Loading Arrays</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/function_transforms.html">Function Transforms</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/compile.html">Compilation</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/numpy.html">Conversion to NumPy and Other Frameworks</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../usage/using_streams.html">Using Streams</a></li>
|
||||||
|
</ul>
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Examples</span></p>
|
||||||
|
<ul class="nav bd-sidenav">
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../examples/linear_regression.html">Linear Regression</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../examples/mlp.html">Multi-Layer Perceptron</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../examples/llama-inference.html">LLM inference</a></li>
|
||||||
|
</ul>
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Python API Reference</span></p>
|
||||||
|
<ul class="nav bd-sidenav">
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.at.html">mlx.core.array.at</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.itemsize.html">mlx.core.array.itemsize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.nbytes.html">mlx.core.array.nbytes</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummax.html">mlx.core.array.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummin.html">mlx.core.array.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumprod.html">mlx.core.array.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumsum.html">mlx.core.array.cumsum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diag.html">mlx.core.array.diag</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diagonal.html">mlx.core.array.diagonal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.flatten.html">mlx.core.array.flatten</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log10.html">mlx.core.array.log10</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log2.html">mlx.core.array.log2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.moveaxis.html">mlx.core.array.moveaxis</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.round.html">mlx.core.array.round</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.rsqrt.html">mlx.core.array.rsqrt</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sin.html">mlx.core.array.sin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.squeeze.html">mlx.core.array.squeeze</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.swapaxes.html">mlx.core.array.swapaxes</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/data_types.html">Data Types</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.DtypeCategory.html">mlx.core.DtypeCategory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.issubdtype.html">mlx.core.issubdtype</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.set_default_device.html">mlx.core.set_default_device</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_stream.html">mlx.core.default_stream</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.new_stream.html">mlx.core.new_stream</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.set_default_stream.html">mlx.core.set_default_stream</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.allclose.html">mlx.core.allclose</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.any.html">mlx.core.any</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arange.html">mlx.core.arange</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arccos.html">mlx.core.arccos</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arccosh.html">mlx.core.arccosh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arcsin.html">mlx.core.arcsin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arcsinh.html">mlx.core.arcsinh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arctan.html">mlx.core.arctan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.arctanh.html">mlx.core.arctanh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.argmax.html">mlx.core.argmax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.argmin.html">mlx.core.argmin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.argpartition.html">mlx.core.argpartition</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.argsort.html">mlx.core.argsort</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array_equal.html">mlx.core.array_equal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.atleast_1d.html">mlx.core.atleast_1d</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.atleast_2d.html">mlx.core.atleast_2d</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.atleast_3d.html">mlx.core.atleast_3d</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.broadcast_to.html">mlx.core.broadcast_to</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.ceil.html">mlx.core.ceil</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.clip.html">mlx.core.clip</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.concatenate.html">mlx.core.concatenate</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.convolve.html">mlx.core.convolve</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv1d.html">mlx.core.conv1d</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv2d.html">mlx.core.conv2d</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummax.html">mlx.core.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummin.html">mlx.core.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumprod.html">mlx.core.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumsum.html">mlx.core.cumsum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.divide.html">mlx.core.divide</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.divmod.html">mlx.core.divmod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.equal.html">mlx.core.equal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.erf.html">mlx.core.erf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.erfinv.html">mlx.core.erfinv</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.exp.html">mlx.core.exp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.expand_dims.html">mlx.core.expand_dims</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eye.html">mlx.core.eye</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.flatten.html">mlx.core.flatten</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.floor.html">mlx.core.floor</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.floor_divide.html">mlx.core.floor_divide</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.full.html">mlx.core.full</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.greater.html">mlx.core.greater</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.greater_equal.html">mlx.core.greater_equal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.load.html">mlx.core.load</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.log.html">mlx.core.log</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.log2.html">mlx.core.log2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.log10.html">mlx.core.log10</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.log1p.html">mlx.core.log1p</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.logaddexp.html">mlx.core.logaddexp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.logical_not.html">mlx.core.logical_not</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.logical_and.html">mlx.core.logical_and</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.logical_or.html">mlx.core.logical_or</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.logsumexp.html">mlx.core.logsumexp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.matmul.html">mlx.core.matmul</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.max.html">mlx.core.max</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.maximum.html">mlx.core.maximum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.mean.html">mlx.core.mean</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.min.html">mlx.core.min</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.minimum.html">mlx.core.minimum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.moveaxis.html">mlx.core.moveaxis</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.multiply.html">mlx.core.multiply</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.negative.html">mlx.core.negative</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.ones.html">mlx.core.ones</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.ones_like.html">mlx.core.ones_like</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.outer.html">mlx.core.outer</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.partition.html">mlx.core.partition</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.pad.html">mlx.core.pad</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.prod.html">mlx.core.prod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.quantize.html">mlx.core.quantize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.quantized_matmul.html">mlx.core.quantized_matmul</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.reciprocal.html">mlx.core.reciprocal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.repeat.html">mlx.core.repeat</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.reshape.html">mlx.core.reshape</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.round.html">mlx.core.round</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.rsqrt.html">mlx.core.rsqrt</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.save.html">mlx.core.save</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.savez.html">mlx.core.savez</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.savez_compressed.html">mlx.core.savez_compressed</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.save_gguf.html">mlx.core.save_gguf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.save_safetensors.html">mlx.core.save_safetensors</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sigmoid.html">mlx.core.sigmoid</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sign.html">mlx.core.sign</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sin.html">mlx.core.sin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sinh.html">mlx.core.sinh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.softmax.html">mlx.core.softmax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sort.html">mlx.core.sort</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.split.html">mlx.core.split</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sqrt.html">mlx.core.sqrt</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.square.html">mlx.core.square</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.squeeze.html">mlx.core.squeeze</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stack.html">mlx.core.stack</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stop_gradient.html">mlx.core.stop_gradient</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.subtract.html">mlx.core.subtract</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.sum.html">mlx.core.sum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.swapaxes.html">mlx.core.swapaxes</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.take.html">mlx.core.take</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.take_along_axis.html">mlx.core.take_along_axis</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tan.html">mlx.core.tan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tanh.html">mlx.core.tanh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tensordot.html">mlx.core.tensordot</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tile.html">mlx.core.tile</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.topk.html">mlx.core.topk</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.transpose.html">mlx.core.transpose</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tri.html">mlx.core.tri</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.tril.html">mlx.core.tril</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.triu.html">mlx.core.triu</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.var.html">mlx.core.var</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.where.html">mlx.core.where</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros.html">mlx.core.zeros</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.key.html">mlx.core.random.key</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.normal.html">mlx.core.random.normal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.randint.html">mlx.core.random.randint</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.seed.html">mlx.core.random.seed</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.split.html">mlx.core.random.split</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.truncated_normal.html">mlx.core.random.truncated_normal</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.enable_compile.html">mlx.core.enable_compile</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.grad.html">mlx.core.grad</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.value_and_grad.html">mlx.core.value_and_grad</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.jvp.html">mlx.core.jvp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vjp.html">mlx.core.vjp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fast.html">Fast</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rms_norm.html">mlx.core.fast.rms_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.layer_norm.html">mlx.core.fast.layer_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rope.html">mlx.core.fast.rope</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.scaled_dot_product_attention.html">mlx.core.fast.scaled_dot_product_attention</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft2.html">mlx.core.fft.ifft2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fftn.html">mlx.core.fft.fftn</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifftn.html">mlx.core.fft.ifftn</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.rfft.html">mlx.core.fft.rfft</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfft.html">mlx.core.fft.irfft</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.rfft2.html">mlx.core.fft.rfft2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfft2.html">mlx.core.fft.irfft2</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.rfftn.html">mlx.core.fft.rfftn</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_cache_memory.html">mlx.core.metal.get_cache_memory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_memory_limit.html">mlx.core.metal.set_memory_limit</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply_to_modules.html">mlx.nn.Module.apply_to_modules</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.children.html">mlx.nn.Module.children</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.eval.html">mlx.nn.Module.eval</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.filter_and_map.html">mlx.nn.Module.filter_and_map</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.freeze.html">mlx.nn.Module.freeze</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.leaf_modules.html">mlx.nn.Module.leaf_modules</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.load_weights.html">mlx.nn.Module.load_weights</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.modules.html">mlx.nn.Module.modules</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.set_dtype.html">mlx.nn.Module.set_dtype</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update.html">mlx.nn.Module.update</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.BatchNorm.html">mlx.nn.BatchNorm</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Conv1d.html">mlx.nn.Conv1d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Conv2d.html">mlx.nn.Conv2d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Dropout.html">mlx.nn.Dropout</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Dropout2d.html">mlx.nn.Dropout2d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Dropout3d.html">mlx.nn.Dropout3d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Embedding.html">mlx.nn.Embedding</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.GELU.html">mlx.nn.GELU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.GroupNorm.html">mlx.nn.GroupNorm</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.GRU.html">mlx.nn.GRU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.InstanceNorm.html">mlx.nn.InstanceNorm</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.LayerNorm.html">mlx.nn.LayerNorm</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Linear.html">mlx.nn.Linear</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.LSTM.html">mlx.nn.LSTM</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.MaxPool1d.html">mlx.nn.MaxPool1d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.MaxPool2d.html">mlx.nn.MaxPool2d</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Mish.html">mlx.nn.Mish</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.MultiHeadAttention.html">mlx.nn.MultiHeadAttention</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.PReLU.html">mlx.nn.PReLU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.QuantizedLinear.html">mlx.nn.QuantizedLinear</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.RMSNorm.html">mlx.nn.RMSNorm</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ReLU.html">mlx.nn.ReLU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.RNN.html">mlx.nn.RNN</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.RoPE.html">mlx.nn.RoPE</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.SELU.html">mlx.nn.SELU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Sequential.html">mlx.nn.Sequential</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.SiLU.html">mlx.nn.SiLU</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.SinusoidalPositionalEncoding.html">mlx.nn.SinusoidalPositionalEncoding</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Softshrink.html">mlx.nn.Softshrink</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Step.html">mlx.nn.Step</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Transformer.html">mlx.nn.Transformer</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_fast_approx.html">mlx.nn.gelu_fast_approx</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.glu.html">mlx.nn.glu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.hardswish.html">mlx.nn.hardswish</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.leaky_relu.html">mlx.nn.leaky_relu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.log_sigmoid.html">mlx.nn.log_sigmoid</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.log_softmax.html">mlx.nn.log_softmax</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.mish.html">mlx.nn.mish</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.prelu.html">mlx.nn.prelu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.relu.html">mlx.nn.relu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.relu6.html">mlx.nn.relu6</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.selu.html">mlx.nn.selu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.sigmoid.html">mlx.nn.sigmoid</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.silu.html">mlx.nn.silu</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.softmax.html">mlx.nn.softmax</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.softplus.html">mlx.nn.softplus</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.softshrink.html">mlx.nn.softshrink</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.step.html">mlx.nn.step</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.gaussian_nll_loss.html">mlx.nn.losses.gaussian_nll_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.hinge_loss.html">mlx.nn.losses.hinge_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.huber_loss.html">mlx.nn.losses.huber_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.kl_div_loss.html">mlx.nn.losses.kl_div_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.l1_loss.html">mlx.nn.losses.l1_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.log_cosh_loss.html">mlx.nn.losses.log_cosh_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.margin_ranking_loss.html">mlx.nn.losses.margin_ranking_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.mse_loss.html">mlx.nn.losses.mse_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.nll_loss.html">mlx.nn.losses.nll_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.smooth_l1_loss.html">mlx.nn.losses.smooth_l1_loss</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.identity.html">mlx.nn.init.identity</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.glorot_normal.html">mlx.nn.init.glorot_normal</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.glorot_uniform.html">mlx.nn.init.glorot_uniform</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.he_normal.html">mlx.nn.init.he_normal</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.he_uniform.html">mlx.nn.init.he_uniform</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adafactor.html">mlx.optimizers.Adafactor</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.AdaDelta.html">mlx.optimizers.AdaDelta</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adam.html">mlx.optimizers.Adam</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.AdamW.html">mlx.optimizers.AdamW</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adamax.html">mlx.optimizers.Adamax</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-20" name="toctree-checkbox-20" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-20"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.linear_schedule.html">mlx.optimizers.linear_schedule</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.step_decay.html">mlx.optimizers.step_decay</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-21" name="toctree-checkbox-21" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-21"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">C++ API Reference</span></p>
|
||||||
|
<ul class="nav bd-sidenav">
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../cpp/ops.html">Operations</a></li>
|
||||||
|
</ul>
|
||||||
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
||||||
|
<ul class="current nav bd-sidenav">
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="extensions.html">Developer Documentation</a></li>
|
||||||
|
<li class="toctree-l1 current active"><a class="current reference internal" href="#">Metal Debugger</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</nav></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="sidebar-primary-items__end sidebar-primary__section">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="rtd-footer-container"></div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<main id="main-content" class="bd-main">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="sbt-scroll-pixel-helper"></div>
|
||||||
|
|
||||||
|
<div class="bd-content">
|
||||||
|
<div class="bd-article-container">
|
||||||
|
|
||||||
|
<div class="bd-header-article">
|
||||||
|
<div class="header-article-items header-article__inner">
|
||||||
|
|
||||||
|
<div class="header-article-items__start">
|
||||||
|
|
||||||
|
<div class="header-article-item"><label class="sidebar-toggle primary-toggle btn btn-sm" for="__primary" title="Toggle primary sidebar" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<span class="fa-solid fa-bars"></span>
|
||||||
|
</label></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="header-article-items__end">
|
||||||
|
|
||||||
|
<div class="header-article-item">
|
||||||
|
|
||||||
|
<div class="article-header-buttons">
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://github.com/ml-explore/mlx" target="_blank"
|
||||||
|
class="btn btn-sm btn-source-repository-button"
|
||||||
|
title="Source repository"
|
||||||
|
data-bs-placement="bottom" data-bs-toggle="tooltip"
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="btn__icon-container">
|
||||||
|
<i class="fab fa-github"></i>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown dropdown-download-buttons">
|
||||||
|
<button class="btn dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" aria-label="Download this page">
|
||||||
|
<i class="fas fa-download"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="../_sources/dev/metal_debugger.rst" target="_blank"
|
||||||
|
class="btn btn-sm btn-download-source-button dropdown-item"
|
||||||
|
title="Download source file"
|
||||||
|
data-bs-placement="left" data-bs-toggle="tooltip"
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="btn__icon-container">
|
||||||
|
<i class="fas fa-file"></i>
|
||||||
|
</span>
|
||||||
|
<span class="btn__text-container">.rst</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<button onclick="window.print()"
|
||||||
|
class="btn btn-sm btn-download-pdf-button dropdown-item"
|
||||||
|
title="Print to PDF"
|
||||||
|
data-bs-placement="left" data-bs-toggle="tooltip"
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="btn__icon-container">
|
||||||
|
<i class="fas fa-file-pdf"></i>
|
||||||
|
</span>
|
||||||
|
<span class="btn__text-container">.pdf</span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<button onclick="toggleFullScreen()"
|
||||||
|
class="btn btn-sm btn-fullscreen-button"
|
||||||
|
title="Fullscreen mode"
|
||||||
|
data-bs-placement="bottom" data-bs-toggle="tooltip"
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="btn__icon-container">
|
||||||
|
<i class="fas fa-expand"></i>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn btn-sm navbar-btn theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<span class="theme-switch nav-link" data-mode="light"><i class="fa-solid fa-sun fa-lg"></i></span>
|
||||||
|
<span class="theme-switch nav-link" data-mode="dark"><i class="fa-solid fa-moon fa-lg"></i></span>
|
||||||
|
<span class="theme-switch nav-link" data-mode="auto"><i class="fa-solid fa-circle-half-stroke fa-lg"></i></span>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script>
|
||||||
|
<label class="sidebar-toggle secondary-toggle btn btn-sm" for="__secondary"title="Toggle secondary sidebar" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<span class="fa-solid fa-list"></span>
|
||||||
|
</label>
|
||||||
|
</div></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="jb-print-docs-body" class="onlyprint">
|
||||||
|
<h1>Metal Debugger</h1>
|
||||||
|
<!-- Table of contents -->
|
||||||
|
<div id="print-main-content">
|
||||||
|
<div id="jb-print-toc">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2> Contents </h2>
|
||||||
|
</div>
|
||||||
|
<nav aria-label="Page">
|
||||||
|
<ul class="visible nav section-nav flex-column">
|
||||||
|
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#xcode-workflow">Xcode Workflow</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="searchbox"></div>
|
||||||
|
<article class="bd-article" role="main">
|
||||||
|
|
||||||
|
<section id="metal-debugger">
|
||||||
|
<h1>Metal Debugger<a class="headerlink" href="#metal-debugger" title="Link to this heading">#</a></h1>
|
||||||
|
<p>Profiling is a key step for performance optimization. You can build MLX with
|
||||||
|
the <code class="docutils literal notranslate"><span class="pre">MLX_METAL_DEBUG</span></code> option to improve the Metal debugging and optimization
|
||||||
|
workflow. The <code class="docutils literal notranslate"><span class="pre">MLX_METAL_DEBUG</span></code> debug option:</p>
|
||||||
|
<ul class="simple">
|
||||||
|
<li><p>Records source during Metal compilation, for later inspection while
|
||||||
|
debugging.</p></li>
|
||||||
|
<li><p>Labels Metal objects such as command queues, improving capture readability.</p></li>
|
||||||
|
</ul>
|
||||||
|
<p>The <code class="docutils literal notranslate"><span class="pre">metal::start_capture</span></code> function initiates a capture of all MLX GPU work.</p>
|
||||||
|
<div class="highlight-C++ notranslate"><div class="highlight"><pre><span></span><span class="kt">int</span><span class="w"> </span><span class="nf">main</span><span class="p">()</span><span class="w"> </span><span class="p">{</span>
|
||||||
|
<span class="w"> </span><span class="n">metal</span><span class="o">::</span><span class="n">start_capture</span><span class="p">(</span><span class="s">"/Users/Jane/Developer/MLX.gputrace"</span><span class="p">);</span>
|
||||||
|
|
||||||
|
<span class="w"> </span><span class="k">auto</span><span class="w"> </span><span class="n">a</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">arange</span><span class="p">(</span><span class="mf">10.f</span><span class="p">,</span><span class="w"> </span><span class="mf">20.f</span><span class="p">,</span><span class="w"> </span><span class="mf">1.f</span><span class="p">,</span><span class="w"> </span><span class="n">float32</span><span class="p">);</span>
|
||||||
|
<span class="w"> </span><span class="k">auto</span><span class="w"> </span><span class="n">b</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">arange</span><span class="p">(</span><span class="mf">30.f</span><span class="p">,</span><span class="w"> </span><span class="mf">40.f</span><span class="p">,</span><span class="w"> </span><span class="mf">1.f</span><span class="p">,</span><span class="w"> </span><span class="n">float32</span><span class="p">);</span>
|
||||||
|
<span class="w"> </span><span class="k">auto</span><span class="w"> </span><span class="n">c</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">add</span><span class="p">(</span><span class="n">a</span><span class="p">,</span><span class="w"> </span><span class="n">b</span><span class="p">);</span>
|
||||||
|
|
||||||
|
<span class="w"> </span><span class="n">eval</span><span class="p">(</span><span class="n">c</span><span class="p">);</span>
|
||||||
|
|
||||||
|
<span class="w"> </span><span class="n">metal</span><span class="o">::</span><span class="n">stop_capture</span><span class="p">();</span>
|
||||||
|
<span class="p">}</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
<p>You can open and replay the GPU trace in Xcode. The <code class="docutils literal notranslate"><span class="pre">Dependencies</span></code> view
|
||||||
|
has a great overview of all operations. Checkout the <a class="reference external" href="https://developer.apple.com/documentation/xcode/metal-debugger">Metal debugger
|
||||||
|
documentation</a> for more information.</p>
|
||||||
|
<img alt="../_images/capture.png" class="dark-light" src="../_images/capture.png" />
|
||||||
|
<section id="xcode-workflow">
|
||||||
|
<h2>Xcode Workflow<a class="headerlink" href="#xcode-workflow" title="Link to this heading">#</a></h2>
|
||||||
|
<p>You can skip saving to a path by running within Xcode. First, generate an Xcode
|
||||||
|
project using CMake.</p>
|
||||||
|
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">mkdir</span> <span class="n">build</span> <span class="o">&&</span> <span class="n">cd</span> <span class="n">build</span>
|
||||||
|
<span class="n">cmake</span> <span class="o">..</span> <span class="o">-</span><span class="n">DMLX_METAL_DEBUG</span><span class="o">=</span><span class="n">ON</span> <span class="o">-</span><span class="n">G</span> <span class="n">Xcode</span>
|
||||||
|
<span class="nb">open</span> <span class="n">mlx</span><span class="o">.</span><span class="n">xcodeproj</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
<p>Select the <code class="docutils literal notranslate"><span class="pre">metal_capture</span></code> example schema and run.</p>
|
||||||
|
<img alt="../_images/schema.png" class="dark-light" src="../_images/schema.png" />
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="prev-next-footer">
|
||||||
|
|
||||||
|
<div class="prev-next-area">
|
||||||
|
<a class="left-prev"
|
||||||
|
href="extensions.html"
|
||||||
|
title="previous page">
|
||||||
|
<i class="fa-solid fa-angle-left"></i>
|
||||||
|
<div class="prev-next-info">
|
||||||
|
<p class="prev-next-subtitle">previous</p>
|
||||||
|
<p class="prev-next-title">Developer Documentation</p>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="bd-sidebar-secondary bd-toc"><div class="sidebar-secondary-items sidebar-secondary__inner">
|
||||||
|
|
||||||
|
<div class="sidebar-secondary-item">
|
||||||
|
<div class="page-toc tocsection onthispage">
|
||||||
|
<i class="fa-solid fa-list"></i> Contents
|
||||||
|
</div>
|
||||||
|
<nav class="bd-toc-nav page-toc">
|
||||||
|
<ul class="visible nav section-nav flex-column">
|
||||||
|
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#xcode-workflow">Xcode Workflow</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav></div>
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer class="bd-footer-content">
|
||||||
|
|
||||||
|
<div class="bd-footer-content__inner container">
|
||||||
|
|
||||||
|
<div class="footer-item">
|
||||||
|
|
||||||
|
<p class="component-author">
|
||||||
|
By MLX Contributors
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-item">
|
||||||
|
|
||||||
|
|
||||||
|
<p class="copyright">
|
||||||
|
|
||||||
|
© Copyright 2023, MLX Contributors.
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-item">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-item">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Scripts loaded after <body> so the DOM is not blocked -->
|
||||||
|
<script src="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd"></script>
|
||||||
|
<script src="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd"></script>
|
||||||
|
|
||||||
|
<footer class="bd-footer">
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
116
docs/build/html/examples/linear_regression.html
vendored
116
docs/build/html/examples/linear_regression.html
vendored
@ -1,15 +1,14 @@
|
|||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
|
||||||
<html lang="en" data-content_root="" >
|
<html lang="en" data-content_root="../" >
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
||||||
|
|
||||||
<title>Linear Regression — MLX 0.7.0 documentation</title>
|
<title>Linear Regression — MLX 0.9.0 documentation</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -29,20 +28,18 @@
|
|||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||||
<link rel="stylesheet" href="../_static/styles/sphinx-book-theme.css?digest=14f4ca6b54d191a8c7657f6c759bf11a5fb86285" type="text/css" />
|
<link rel="stylesheet" type="text/css" href="../_static/styles/sphinx-book-theme.css?v=384b581d" />
|
||||||
|
|
||||||
<!-- Pre-loaded scripts that we'll load fully later -->
|
<!-- Pre-loaded scripts that we'll load fully later -->
|
||||||
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
||||||
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
||||||
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
||||||
|
|
||||||
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
<script src="../_static/documentation_options.js?v=2a76c96f"></script>
|
||||||
<script src="../_static/jquery.js"></script>
|
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||||
<script src="../_static/underscore.js"></script>
|
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||||
<script src="../_static/_sphinx_javascript_frameworks_compat.js"></script>
|
<script src="../_static/scripts/sphinx-book-theme.js?v=efea14e4"></script>
|
||||||
<script src="../_static/doctools.js"></script>
|
|
||||||
<script src="../_static/scripts/sphinx-book-theme.js?digest=5a5c038af52cf7bc1a1ec88eea08e6366ee68824"></script>
|
|
||||||
<script>DOCUMENTATION_OPTIONS.pagename = 'examples/linear_regression';</script>
|
<script>DOCUMENTATION_OPTIONS.pagename = 'examples/linear_regression';</script>
|
||||||
<link rel="index" title="Index" href="../genindex.html" />
|
<link rel="index" title="Index" href="../genindex.html" />
|
||||||
<link rel="search" title="Search" href="../search.html" />
|
<link rel="search" title="Search" href="../search.html" />
|
||||||
@ -134,12 +131,23 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.7.0 documentation - Home"/>
|
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.9.0 documentation - Home"/>
|
||||||
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.7.0 documentation - Home"/>`);</script>
|
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.9.0 documentation - Home"/>`);</script>
|
||||||
|
|
||||||
|
|
||||||
</a></div>
|
</a></div>
|
||||||
<div class="sidebar-primary-item"><nav class="bd-links" id="bd-docs-nav" aria-label="Main">
|
<div class="sidebar-primary-item">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<i class="fa-solid fa-magnifying-glass"></i>
|
||||||
|
<span class="search-button__default-text">Search</span>
|
||||||
|
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script></div>
|
||||||
|
<div class="sidebar-primary-item"><nav class="bd-links bd-docs-nav" aria-label="Main">
|
||||||
<div class="bd-toc-item navbar-nav active">
|
<div class="bd-toc-item navbar-nav active">
|
||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
@ -168,27 +176,38 @@
|
|||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.at.html">mlx.core.array.at</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.itemsize.html">mlx.core.array.itemsize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.nbytes.html">mlx.core.array.nbytes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummax.html">mlx.core.array.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummin.html">mlx.core.array.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumprod.html">mlx.core.array.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumsum.html">mlx.core.array.cumsum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diag.html">mlx.core.array.diag</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diagonal.html">mlx.core.array.diagonal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.flatten.html">mlx.core.array.flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log10.html">mlx.core.array.log10</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log2.html">mlx.core.array.log2</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.moveaxis.html">mlx.core.array.moveaxis</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
||||||
@ -198,13 +217,21 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.squeeze.html">mlx.core.array.squeeze</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.swapaxes.html">mlx.core.array.swapaxes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/data_types.html">Data Types</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.DtypeCategory.html">mlx.core.DtypeCategory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.issubdtype.html">mlx.core.issubdtype</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
||||||
@ -215,7 +242,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
||||||
@ -246,6 +273,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummax.html">mlx.core.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummin.html">mlx.core.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumprod.html">mlx.core.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumsum.html">mlx.core.cumsum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
||||||
@ -266,10 +297,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
||||||
@ -342,7 +373,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
||||||
@ -355,7 +386,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
||||||
@ -367,7 +398,14 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fast.html">Fast</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rms_norm.html">mlx.core.fast.rms_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.layer_norm.html">mlx.core.fast.layer_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rope.html">mlx.core.fast.rope</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.scaled_dot_product_attention.html">mlx.core.fast.scaled_dot_product_attention</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
||||||
@ -382,12 +420,12 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
||||||
@ -396,9 +434,9 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
||||||
@ -413,6 +451,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.set_dtype.html">mlx.nn.Module.set_dtype</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
||||||
@ -420,7 +459,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
||||||
@ -458,7 +497,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
||||||
@ -482,7 +521,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
||||||
@ -499,7 +538,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
||||||
@ -512,15 +551,15 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
||||||
@ -532,7 +571,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-20" name="toctree-checkbox-20" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-20"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
||||||
@ -542,7 +581,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-21" name="toctree-checkbox-21" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-21"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
||||||
@ -556,6 +595,7 @@
|
|||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../dev/metal_debugger.html">Metal Debugger</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -722,7 +762,7 @@ document.write(`
|
|||||||
<article class="bd-article" role="main">
|
<article class="bd-article" role="main">
|
||||||
|
|
||||||
<section id="linear-regression">
|
<section id="linear-regression">
|
||||||
<span id="id1"></span><h1>Linear Regression<a class="headerlink" href="#linear-regression" title="Permalink to this heading">#</a></h1>
|
<span id="id1"></span><h1>Linear Regression<a class="headerlink" href="#linear-regression" title="Link to this heading">#</a></h1>
|
||||||
<p>Let’s implement a basic linear regression model as a starting point to
|
<p>Let’s implement a basic linear regression model as a starting point to
|
||||||
learn MLX. First import the core package and setup some problem metadata:</p>
|
learn MLX. First import the core package and setup some problem metadata:</p>
|
||||||
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">mlx.core</span> <span class="k">as</span> <span class="nn">mx</span>
|
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">mlx.core</span> <span class="k">as</span> <span class="nn">mx</span>
|
||||||
|
174
docs/build/html/examples/llama-inference.html
vendored
174
docs/build/html/examples/llama-inference.html
vendored
File diff suppressed because one or more lines are too long
116
docs/build/html/examples/mlp.html
vendored
116
docs/build/html/examples/mlp.html
vendored
@ -1,15 +1,14 @@
|
|||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
|
||||||
<html lang="en" data-content_root="" >
|
<html lang="en" data-content_root="../" >
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
|
||||||
|
|
||||||
<title>Multi-Layer Perceptron — MLX 0.7.0 documentation</title>
|
<title>Multi-Layer Perceptron — MLX 0.9.0 documentation</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -29,20 +28,18 @@
|
|||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
|
||||||
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||||
<link rel="stylesheet" href="../_static/styles/sphinx-book-theme.css?digest=14f4ca6b54d191a8c7657f6c759bf11a5fb86285" type="text/css" />
|
<link rel="stylesheet" type="text/css" href="../_static/styles/sphinx-book-theme.css?v=384b581d" />
|
||||||
|
|
||||||
<!-- Pre-loaded scripts that we'll load fully later -->
|
<!-- Pre-loaded scripts that we'll load fully later -->
|
||||||
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=5b4479735964841361fd" />
|
||||||
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=5b4479735964841361fd" />
|
||||||
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
<script src="../_static/vendor/fontawesome/6.1.2/js/all.min.js?digest=5b4479735964841361fd"></script>
|
||||||
|
|
||||||
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
<script src="../_static/documentation_options.js?v=2a76c96f"></script>
|
||||||
<script src="../_static/jquery.js"></script>
|
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||||
<script src="../_static/underscore.js"></script>
|
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||||
<script src="../_static/_sphinx_javascript_frameworks_compat.js"></script>
|
<script src="../_static/scripts/sphinx-book-theme.js?v=efea14e4"></script>
|
||||||
<script src="../_static/doctools.js"></script>
|
|
||||||
<script src="../_static/scripts/sphinx-book-theme.js?digest=5a5c038af52cf7bc1a1ec88eea08e6366ee68824"></script>
|
|
||||||
<script>DOCUMENTATION_OPTIONS.pagename = 'examples/mlp';</script>
|
<script>DOCUMENTATION_OPTIONS.pagename = 'examples/mlp';</script>
|
||||||
<link rel="index" title="Index" href="../genindex.html" />
|
<link rel="index" title="Index" href="../genindex.html" />
|
||||||
<link rel="search" title="Search" href="../search.html" />
|
<link rel="search" title="Search" href="../search.html" />
|
||||||
@ -134,12 +131,23 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.7.0 documentation - Home"/>
|
<img src="../_static/mlx_logo.png" class="logo__image only-light" alt="MLX 0.9.0 documentation - Home"/>
|
||||||
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.7.0 documentation - Home"/>`);</script>
|
<script>document.write(`<img src="../_static/mlx_logo_dark.png" class="logo__image only-dark" alt="MLX 0.9.0 documentation - Home"/>`);</script>
|
||||||
|
|
||||||
|
|
||||||
</a></div>
|
</a></div>
|
||||||
<div class="sidebar-primary-item"><nav class="bd-links" id="bd-docs-nav" aria-label="Main">
|
<div class="sidebar-primary-item">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.write(`
|
||||||
|
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
|
||||||
|
<i class="fa-solid fa-magnifying-glass"></i>
|
||||||
|
<span class="search-button__default-text">Search</span>
|
||||||
|
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
|
||||||
|
</button>
|
||||||
|
`);
|
||||||
|
</script></div>
|
||||||
|
<div class="sidebar-primary-item"><nav class="bd-links bd-docs-nav" aria-label="Main">
|
||||||
<div class="bd-toc-item navbar-nav active">
|
<div class="bd-toc-item navbar-nav active">
|
||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Install</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
@ -168,27 +176,38 @@
|
|||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/array.html">Array</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.html">mlx.core.array</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.astype.html">mlx.core.array.astype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.at.html">mlx.core.array.at</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.item.html">mlx.core.array.item</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.tolist.html">mlx.core.array.tolist</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.itemsize.html">mlx.core.array.itemsize</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.nbytes.html">mlx.core.array.nbytes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.ndim.html">mlx.core.array.ndim</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.shape.html">mlx.core.array.shape</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.size.html">mlx.core.array.size</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.abs.html">mlx.core.array.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.all.html">mlx.core.array.all</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.any.html">mlx.core.array.any</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmax.html">mlx.core.array.argmax</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.argmin.html">mlx.core.array.argmin</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cos.html">mlx.core.array.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.dtype.html">mlx.core.array.dtype</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummax.html">mlx.core.array.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cummin.html">mlx.core.array.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumprod.html">mlx.core.array.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.cumsum.html">mlx.core.array.cumsum</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diag.html">mlx.core.array.diag</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.diagonal.html">mlx.core.array.diagonal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.exp.html">mlx.core.array.exp</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.flatten.html">mlx.core.array.flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log.html">mlx.core.array.log</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log10.html">mlx.core.array.log10</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log1p.html">mlx.core.array.log1p</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.log2.html">mlx.core.array.log2</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.logsumexp.html">mlx.core.array.logsumexp</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.max.html">mlx.core.array.max</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.mean.html">mlx.core.array.mean</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.min.html">mlx.core.array.min</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.moveaxis.html">mlx.core.array.moveaxis</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.prod.html">mlx.core.array.prod</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reciprocal.html">mlx.core.array.reciprocal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.reshape.html">mlx.core.array.reshape</a></li>
|
||||||
@ -198,13 +217,21 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.split.html">mlx.core.array.split</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sqrt.html">mlx.core.array.sqrt</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.square.html">mlx.core.array.square</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.squeeze.html">mlx.core.array.squeeze</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.swapaxes.html">mlx.core.array.swapaxes</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.sum.html">mlx.core.array.sum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.transpose.html">mlx.core.array.transpose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.T.html">mlx.core.array.T</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.array.var.html">mlx.core.array.var</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/data_types.html">Data Types</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Dtype.html">mlx.core.Dtype</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.DtypeCategory.html">mlx.core.DtypeCategory</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.issubdtype.html">mlx.core.issubdtype</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/devices_and_streams.html">Devices and Streams</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.Device.html">mlx.core.Device</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/stream_class.html">mlx.core.Stream</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.default_device.html">mlx.core.default_device</a></li>
|
||||||
@ -215,7 +242,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.stream.html">mlx.core.stream</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/ops.html">Operations</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.abs.html">mlx.core.abs</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.add.html">mlx.core.add</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.all.html">mlx.core.all</a></li>
|
||||||
@ -246,6 +273,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.conv_general.html">mlx.core.conv_general</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cos.html">mlx.core.cos</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cosh.html">mlx.core.cosh</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummax.html">mlx.core.cummax</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cummin.html">mlx.core.cummin</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumprod.html">mlx.core.cumprod</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.cumsum.html">mlx.core.cumsum</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.dequantize.html">mlx.core.dequantize</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diag.html">mlx.core.diag</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.diagonal.html">mlx.core.diagonal</a></li>
|
||||||
@ -266,10 +297,10 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.identity.html">mlx.core.identity</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.inner.html">mlx.core.inner</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isclose.html">mlx.core.isclose</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isinf.html">mlx.core.isinf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isnan.html">mlx.core.isnan</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isneginf.html">mlx.core.isneginf</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.isposinf.html">mlx.core.isposinf</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less.html">mlx.core.less</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.less_equal.html">mlx.core.less_equal</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linspace.html">mlx.core.linspace</a></li>
|
||||||
@ -342,7 +373,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.zeros_like.html">mlx.core.zeros_like</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/random.html">Random</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.bernoulli.html">mlx.core.random.bernoulli</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.categorical.html">mlx.core.random.categorical</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.gumbel.html">mlx.core.random.gumbel</a></li>
|
||||||
@ -355,7 +386,7 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.random.uniform.html">mlx.core.random.uniform</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/transforms.html">Transforms</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.eval.html">mlx.core.eval</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.compile.html">mlx.core.compile</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.disable_compile.html">mlx.core.disable_compile</a></li>
|
||||||
@ -367,7 +398,14 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.vmap.html">mlx.core.vmap</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fast.html">Fast</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rms_norm.html">mlx.core.fast.rms_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.layer_norm.html">mlx.core.fast.layer_norm</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.rope.html">mlx.core.fast.rope</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fast.scaled_dot_product_attention.html">mlx.core.fast.scaled_dot_product_attention</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/fft.html">FFT</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft.html">mlx.core.fft.fft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.ifft.html">mlx.core.fft.ifft</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.fft2.html">mlx.core.fft.fft2</a></li>
|
||||||
@ -382,12 +420,12 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.fft.irfftn.html">mlx.core.fft.irfftn</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/linalg.html">Linear Algebra</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.norm.html">mlx.core.linalg.norm</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.linalg.qr.html">mlx.core.linalg.qr</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/metal.html">Metal</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.is_available.html">mlx.core.metal.is_available</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_active_memory.html">mlx.core.metal.get_active_memory</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.get_peak_memory.html">mlx.core.metal.get_peak_memory</a></li>
|
||||||
@ -396,9 +434,9 @@
|
|||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.core.metal.set_cache_limit.html">mlx.core.metal.set_cache_limit</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/nn.html">Neural Networks</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.nn.value_and_grad.html">mlx.nn.value_and_grad</a></li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/module.html">Module</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.training.html">mlx.nn.Module.training</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.state.html">mlx.nn.Module.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.apply.html">mlx.nn.Module.apply</a></li>
|
||||||
@ -413,6 +451,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.named_modules.html">mlx.nn.Module.named_modules</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.parameters.html">mlx.nn.Module.parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.save_weights.html">mlx.nn.Module.save_weights</a></li>
|
||||||
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.set_dtype.html">mlx.nn.Module.set_dtype</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.train.html">mlx.nn.Module.train</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.trainable_parameters.html">mlx.nn.Module.trainable_parameters</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.unfreeze.html">mlx.nn.Module.unfreeze</a></li>
|
||||||
@ -420,7 +459,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Module.update_modules.html">mlx.nn.Module.update_modules</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-11"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/layers.html">Layers</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.ALiBi.html">mlx.nn.ALiBi</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool1d.html">mlx.nn.AvgPool1d</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.AvgPool2d.html">mlx.nn.AvgPool2d</a></li>
|
||||||
@ -458,7 +497,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.Upsample.html">mlx.nn.Upsample</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-12" name="toctree-checkbox-12" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-12"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/functions.html">Functions</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.elu.html">mlx.nn.elu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu.html">mlx.nn.gelu</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.gelu_approx.html">mlx.nn.gelu_approx</a></li>
|
||||||
@ -482,7 +521,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.tanh.html">mlx.nn.tanh</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/losses.html">Loss Functions</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.binary_cross_entropy.html">mlx.nn.losses.binary_cross_entropy</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cosine_similarity_loss.html">mlx.nn.losses.cosine_similarity_loss</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.cross_entropy.html">mlx.nn.losses.cross_entropy</a></li>
|
||||||
@ -499,7 +538,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary_functions/mlx.nn.losses.triplet_loss.html">mlx.nn.losses.triplet_loss</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-14" name="toctree-checkbox-14" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-14"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/nn/init.html">Initializers</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.constant.html">mlx.nn.init.constant</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.normal.html">mlx.nn.init.normal</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/nn/_autosummary/mlx.nn.init.uniform.html">mlx.nn.init.uniform</a></li>
|
||||||
@ -512,15 +551,15 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-15" name="toctree-checkbox-15" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-15"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/optimizers.html">Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-16" name="toctree-checkbox-16" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-16"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/optimizer.html">Optimizer</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.state.html">mlx.optimizers.Optimizer.state</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.apply_gradients.html">mlx.optimizers.Optimizer.apply_gradients</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.init.html">mlx.optimizers.Optimizer.init</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Optimizer.update.html">mlx.optimizers.Optimizer.update</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-17" name="toctree-checkbox-17" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-17"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/common_optimizers.html">Common Optimizers</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.SGD.html">mlx.optimizers.SGD</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.RMSprop.html">mlx.optimizers.RMSprop</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Adagrad.html">mlx.optimizers.Adagrad</a></li>
|
||||||
@ -532,7 +571,7 @@
|
|||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.Lion.html">mlx.optimizers.Lion</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-18" name="toctree-checkbox-18" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-18"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l2 has-children"><a class="reference internal" href="../python/optimizers/schedulers.html">Schedulers</a><input class="toctree-checkbox" id="toctree-checkbox-20" name="toctree-checkbox-20" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-20"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.cosine_decay.html">mlx.optimizers.cosine_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.exponential_decay.html">mlx.optimizers.exponential_decay</a></li>
|
||||||
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
<li class="toctree-l3"><a class="reference internal" href="../python/optimizers/_autosummary/mlx.optimizers.join_schedules.html">mlx.optimizers.join_schedules</a></li>
|
||||||
@ -542,7 +581,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-19" name="toctree-checkbox-19" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-19"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
<li class="toctree-l1 has-children"><a class="reference internal" href="../python/tree_utils.html">Tree Utils</a><input class="toctree-checkbox" id="toctree-checkbox-21" name="toctree-checkbox-21" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-21"><i class="fa-solid fa-chevron-down"></i></label><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_flatten.html">mlx.utils.tree_flatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_unflatten.html">mlx.utils.tree_unflatten</a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="../python/_autosummary/mlx.utils.tree_map.html">mlx.utils.tree_map</a></li>
|
||||||
@ -556,6 +595,7 @@
|
|||||||
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Further Reading</span></p>
|
||||||
<ul class="nav bd-sidenav">
|
<ul class="nav bd-sidenav">
|
||||||
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="../dev/extensions.html">Developer Documentation</a></li>
|
||||||
|
<li class="toctree-l1"><a class="reference internal" href="../dev/metal_debugger.html">Metal Debugger</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -722,7 +762,7 @@ document.write(`
|
|||||||
<article class="bd-article" role="main">
|
<article class="bd-article" role="main">
|
||||||
|
|
||||||
<section id="multi-layer-perceptron">
|
<section id="multi-layer-perceptron">
|
||||||
<span id="mlp"></span><h1>Multi-Layer Perceptron<a class="headerlink" href="#multi-layer-perceptron" title="Permalink to this heading">#</a></h1>
|
<span id="mlp"></span><h1>Multi-Layer Perceptron<a class="headerlink" href="#multi-layer-perceptron" title="Link to this heading">#</a></h1>
|
||||||
<p>In this example we’ll learn to use <code class="docutils literal notranslate"><span class="pre">mlx.nn</span></code> by implementing a simple
|
<p>In this example we’ll learn to use <code class="docutils literal notranslate"><span class="pre">mlx.nn</span></code> by implementing a simple
|
||||||
multi-layer perceptron to classify MNIST.</p>
|
multi-layer perceptron to classify MNIST.</p>
|
||||||
<p>As a first step import the MLX packages we need:</p>
|
<p>As a first step import the MLX packages we need:</p>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user