mlx-cpu 0.30.1__py3-none-manylinux_2_35_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mlx/__main__.py +27 -0
- mlx/_reprlib_fix.py +16 -0
- mlx/extension.py +88 -0
- mlx/include/mlx/3rdparty/pocketfft.h +3581 -0
- mlx/include/mlx/allocator.h +73 -0
- mlx/include/mlx/array.h +645 -0
- mlx/include/mlx/backend/common/binary.h +97 -0
- mlx/include/mlx/backend/common/broadcasting.h +11 -0
- mlx/include/mlx/backend/common/buffer_cache.h +157 -0
- mlx/include/mlx/backend/common/compiled.h +77 -0
- mlx/include/mlx/backend/common/copy.h +50 -0
- mlx/include/mlx/backend/common/hadamard.h +109 -0
- mlx/include/mlx/backend/common/matmul.h +67 -0
- mlx/include/mlx/backend/common/reduce.h +59 -0
- mlx/include/mlx/backend/common/slicing.h +20 -0
- mlx/include/mlx/backend/common/ternary.h +85 -0
- mlx/include/mlx/backend/common/unary.h +29 -0
- mlx/include/mlx/backend/common/utils.h +205 -0
- mlx/include/mlx/backend/cpu/arange.h +28 -0
- mlx/include/mlx/backend/cpu/available.h +9 -0
- mlx/include/mlx/backend/cpu/binary.h +517 -0
- mlx/include/mlx/backend/cpu/binary_ops.h +98 -0
- mlx/include/mlx/backend/cpu/binary_two.h +166 -0
- mlx/include/mlx/backend/cpu/compiled_preamble.h +12 -0
- mlx/include/mlx/backend/cpu/copy.h +36 -0
- mlx/include/mlx/backend/cpu/encoder.h +67 -0
- mlx/include/mlx/backend/cpu/eval.h +12 -0
- mlx/include/mlx/backend/cpu/gemm.h +26 -0
- mlx/include/mlx/backend/cpu/gemms/simd_gemm.h +139 -0
- mlx/include/mlx/backend/cpu/jit_compiler.h +20 -0
- mlx/include/mlx/backend/cpu/lapack.h +80 -0
- mlx/include/mlx/backend/cpu/simd/accelerate_fp16_simd.h +56 -0
- mlx/include/mlx/backend/cpu/simd/accelerate_simd.h +329 -0
- mlx/include/mlx/backend/cpu/simd/base_simd.h +295 -0
- mlx/include/mlx/backend/cpu/simd/math.h +193 -0
- mlx/include/mlx/backend/cpu/simd/neon_fp16_simd.h +212 -0
- mlx/include/mlx/backend/cpu/simd/simd.h +4 -0
- mlx/include/mlx/backend/cpu/simd/type.h +11 -0
- mlx/include/mlx/backend/cpu/slicing.h +21 -0
- mlx/include/mlx/backend/cpu/ternary.h +154 -0
- mlx/include/mlx/backend/cpu/threefry.h +21 -0
- mlx/include/mlx/backend/cpu/unary.h +281 -0
- mlx/include/mlx/backend/cpu/unary_ops.h +180 -0
- mlx/include/mlx/backend/cuda/allocator.h +89 -0
- mlx/include/mlx/backend/cuda/conv/conv.h +126 -0
- mlx/include/mlx/backend/cuda/cublas_utils.h +96 -0
- mlx/include/mlx/backend/cuda/cuda.h +10 -0
- mlx/include/mlx/backend/cuda/cuda_utils.h +89 -0
- mlx/include/mlx/backend/cuda/cudnn_utils.h +171 -0
- mlx/include/mlx/backend/cuda/device/config.h +12 -0
- mlx/include/mlx/backend/cuda/device.h +189 -0
- mlx/include/mlx/backend/cuda/event.h +78 -0
- mlx/include/mlx/backend/cuda/gemms/cublas_gemm.h +114 -0
- mlx/include/mlx/backend/cuda/gemms/gemv.h +24 -0
- mlx/include/mlx/backend/cuda/jit_module.h +119 -0
- mlx/include/mlx/backend/cuda/lru_cache.h +189 -0
- mlx/include/mlx/backend/cuda/quantized/cublas_qqmm.h +88 -0
- mlx/include/mlx/backend/cuda/quantized/cuda_fp4.h +83 -0
- mlx/include/mlx/backend/cuda/quantized/qqmm_utils.h +30 -0
- mlx/include/mlx/backend/cuda/quantized/quantized.h +45 -0
- mlx/include/mlx/backend/cuda/utils.h +46 -0
- mlx/include/mlx/backend/cuda/worker.h +55 -0
- mlx/include/mlx/backend/gpu/available.h +9 -0
- mlx/include/mlx/backend/gpu/copy.h +57 -0
- mlx/include/mlx/backend/gpu/eval.h +18 -0
- mlx/include/mlx/backend/gpu/slicing.h +36 -0
- mlx/include/mlx/backend/metal/allocator.h +79 -0
- mlx/include/mlx/backend/metal/binary.h +33 -0
- mlx/include/mlx/backend/metal/device.h +283 -0
- mlx/include/mlx/backend/metal/jit/includes.h +57 -0
- mlx/include/mlx/backend/metal/jit/indexing.h +76 -0
- mlx/include/mlx/backend/metal/kernels/arange.h +9 -0
- mlx/include/mlx/backend/metal/kernels/atomic.h +345 -0
- mlx/include/mlx/backend/metal/kernels/bf16.h +16 -0
- mlx/include/mlx/backend/metal/kernels/bf16_math.h +380 -0
- mlx/include/mlx/backend/metal/kernels/binary.h +199 -0
- mlx/include/mlx/backend/metal/kernels/binary_ops.h +326 -0
- mlx/include/mlx/backend/metal/kernels/binary_two.h +244 -0
- mlx/include/mlx/backend/metal/kernels/cexpf.h +134 -0
- mlx/include/mlx/backend/metal/kernels/complex.h +173 -0
- mlx/include/mlx/backend/metal/kernels/copy.h +276 -0
- mlx/include/mlx/backend/metal/kernels/defines.h +24 -0
- mlx/include/mlx/backend/metal/kernels/erf.h +69 -0
- mlx/include/mlx/backend/metal/kernels/expm1f.h +90 -0
- mlx/include/mlx/backend/metal/kernels/fft/radix.h +328 -0
- mlx/include/mlx/backend/metal/kernels/fft/readwrite.h +624 -0
- mlx/include/mlx/backend/metal/kernels/fft.h +486 -0
- mlx/include/mlx/backend/metal/kernels/fp4.h +59 -0
- mlx/include/mlx/backend/metal/kernels/fp8.h +82 -0
- mlx/include/mlx/backend/metal/kernels/fp_quantized.h +1804 -0
- mlx/include/mlx/backend/metal/kernels/fp_quantized_nax.h +1059 -0
- mlx/include/mlx/backend/metal/kernels/gemv_masked.h +827 -0
- mlx/include/mlx/backend/metal/kernels/hadamard.h +182 -0
- mlx/include/mlx/backend/metal/kernels/indexing/gather.h +51 -0
- mlx/include/mlx/backend/metal/kernels/indexing/gather_axis.h +44 -0
- mlx/include/mlx/backend/metal/kernels/indexing/gather_front.h +24 -0
- mlx/include/mlx/backend/metal/kernels/indexing/indexing.h +23 -0
- mlx/include/mlx/backend/metal/kernels/indexing/masked_scatter.h +38 -0
- mlx/include/mlx/backend/metal/kernels/indexing/scatter.h +59 -0
- mlx/include/mlx/backend/metal/kernels/indexing/scatter_axis.h +52 -0
- mlx/include/mlx/backend/metal/kernels/logsumexp.h +140 -0
- mlx/include/mlx/backend/metal/kernels/quantized.h +2502 -0
- mlx/include/mlx/backend/metal/kernels/quantized_nax.h +1705 -0
- mlx/include/mlx/backend/metal/kernels/quantized_utils.h +90 -0
- mlx/include/mlx/backend/metal/kernels/reduce.h +5 -0
- mlx/include/mlx/backend/metal/kernels/reduce_utils.h +6 -0
- mlx/include/mlx/backend/metal/kernels/reduction/ops.h +275 -0
- mlx/include/mlx/backend/metal/kernels/reduction/reduce_all.h +66 -0
- mlx/include/mlx/backend/metal/kernels/reduction/reduce_col.h +398 -0
- mlx/include/mlx/backend/metal/kernels/reduction/reduce_init.h +8 -0
- mlx/include/mlx/backend/metal/kernels/reduction/reduce_row.h +369 -0
- mlx/include/mlx/backend/metal/kernels/scan.h +514 -0
- mlx/include/mlx/backend/metal/kernels/sdpa_vector.h +415 -0
- mlx/include/mlx/backend/metal/kernels/softmax.h +190 -0
- mlx/include/mlx/backend/metal/kernels/sort.h +715 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/attn.h +296 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/kernels/steel_attention.h +476 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/kernels/steel_attention_nax.h +481 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/loader.h +264 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/mma.h +750 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/nax.h +1076 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/params.h +44 -0
- mlx/include/mlx/backend/metal/kernels/steel/attn/transforms.h +71 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/conv.h +13 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/kernels/steel_conv.h +176 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/kernels/steel_conv_general.h +225 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/loader.h +6 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_channel_l.h +451 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_channel_n.h +319 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_general.h +381 -0
- mlx/include/mlx/backend/metal/kernels/steel/conv/params.h +62 -0
- mlx/include/mlx/backend/metal/kernels/steel/defines.h +7 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/gemm.h +295 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/gemm_nax.h +156 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_fused.h +346 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_fused_nax.h +207 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_gather.h +459 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_gather_nax.h +132 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_masked.h +719 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_segmented.h +266 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_splitk.h +227 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/loader.h +137 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/mma.h +1146 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/nax.h +1084 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/params.h +64 -0
- mlx/include/mlx/backend/metal/kernels/steel/gemm/transforms.h +72 -0
- mlx/include/mlx/backend/metal/kernels/steel/utils/integral_constant.h +134 -0
- mlx/include/mlx/backend/metal/kernels/steel/utils/type_traits.h +55 -0
- mlx/include/mlx/backend/metal/kernels/steel/utils.h +42 -0
- mlx/include/mlx/backend/metal/kernels/ternary.h +145 -0
- mlx/include/mlx/backend/metal/kernels/ternary_ops.h +10 -0
- mlx/include/mlx/backend/metal/kernels/unary.h +63 -0
- mlx/include/mlx/backend/metal/kernels/unary_ops.h +454 -0
- mlx/include/mlx/backend/metal/kernels/utils.h +444 -0
- mlx/include/mlx/backend/metal/matmul.h +144 -0
- mlx/include/mlx/backend/metal/metal.h +22 -0
- mlx/include/mlx/backend/metal/reduce.h +41 -0
- mlx/include/mlx/backend/metal/resident.h +32 -0
- mlx/include/mlx/backend/metal/scan.h +17 -0
- mlx/include/mlx/backend/metal/ternary.h +21 -0
- mlx/include/mlx/backend/metal/unary.h +21 -0
- mlx/include/mlx/backend/metal/utils.h +84 -0
- mlx/include/mlx/backend/no_gpu/apple_memory.h +16 -0
- mlx/include/mlx/backend/no_gpu/linux_memory.h +22 -0
- mlx/include/mlx/compile.h +44 -0
- mlx/include/mlx/compile_impl.h +69 -0
- mlx/include/mlx/device.h +31 -0
- mlx/include/mlx/distributed/distributed.h +60 -0
- mlx/include/mlx/distributed/distributed_impl.h +59 -0
- mlx/include/mlx/distributed/jaccl/jaccl.h +12 -0
- mlx/include/mlx/distributed/mpi/mpi.h +12 -0
- mlx/include/mlx/distributed/mpi/mpi_declarations.h +28 -0
- mlx/include/mlx/distributed/nccl/nccl.h +12 -0
- mlx/include/mlx/distributed/ops.h +56 -0
- mlx/include/mlx/distributed/primitives.h +156 -0
- mlx/include/mlx/distributed/reduction_ops.h +38 -0
- mlx/include/mlx/distributed/ring/ring.h +12 -0
- mlx/include/mlx/distributed/utils.h +67 -0
- mlx/include/mlx/dtype.h +115 -0
- mlx/include/mlx/dtype_utils.h +119 -0
- mlx/include/mlx/einsum.h +22 -0
- mlx/include/mlx/event.h +58 -0
- mlx/include/mlx/export.h +136 -0
- mlx/include/mlx/export_impl.h +98 -0
- mlx/include/mlx/fast.h +102 -0
- mlx/include/mlx/fast_primitives.h +427 -0
- mlx/include/mlx/fence.h +39 -0
- mlx/include/mlx/fft.h +167 -0
- mlx/include/mlx/graph_utils.h +66 -0
- mlx/include/mlx/io/gguf.h +20 -0
- mlx/include/mlx/io/load.h +175 -0
- mlx/include/mlx/io.h +61 -0
- mlx/include/mlx/linalg.h +111 -0
- mlx/include/mlx/memory.h +78 -0
- mlx/include/mlx/mlx.h +25 -0
- mlx/include/mlx/ops.h +1627 -0
- mlx/include/mlx/primitives.h +2524 -0
- mlx/include/mlx/random.h +282 -0
- mlx/include/mlx/scheduler.h +188 -0
- mlx/include/mlx/small_vector.h +540 -0
- mlx/include/mlx/stream.h +41 -0
- mlx/include/mlx/threadpool.h +133 -0
- mlx/include/mlx/transforms.h +229 -0
- mlx/include/mlx/transforms_impl.h +86 -0
- mlx/include/mlx/types/bf16.h +187 -0
- mlx/include/mlx/types/complex.h +113 -0
- mlx/include/mlx/types/fp16.h +234 -0
- mlx/include/mlx/types/half_types.h +58 -0
- mlx/include/mlx/types/limits.h +70 -0
- mlx/include/mlx/utils.h +175 -0
- mlx/include/mlx/version.h +20 -0
- mlx/lib/libmlx.so +0 -0
- mlx/py.typed +1 -0
- mlx/share/cmake/MLX/FindNCCL.cmake +54 -0
- mlx/share/cmake/MLX/Findnvpl.cmake +3 -0
- mlx/share/cmake/MLX/MLXConfig.cmake +66 -0
- mlx/share/cmake/MLX/MLXConfigVersion.cmake +65 -0
- mlx/share/cmake/MLX/MLXTargets-release.cmake +19 -0
- mlx/share/cmake/MLX/MLXTargets.cmake +106 -0
- mlx/share/cmake/MLX/extension.cmake +50 -0
- mlx/utils.py +325 -0
- mlx_cpu-0.30.1.dist-info/METADATA +142 -0
- mlx_cpu-0.30.1.dist-info/RECORD +231 -0
- mlx_cpu-0.30.1.dist-info/WHEEL +5 -0
- mlx_cpu-0.30.1.dist-info/licenses/LICENSE +21 -0
- mlx_cpu-0.30.1.dist-info/sboms/auditwheel.cdx.json +1 -0
- mlx_cpu-0.30.1.dist-info/top_level.txt +1 -0
- mlx_cpu.libs/libblas-bd8a282c.so.3.10.0 +0 -0
- mlx_cpu.libs/libgfortran-3ec47101.so.5.0.0 +0 -0
- mlx_cpu.libs/liblapack-86b2c207.so.3.10.0 +0 -0
- mlx_cpu.libs/libquadmath-67d31475.so.0.0.0 +0 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlx-cpu
|
|
3
|
+
Version: 0.30.1
|
|
4
|
+
Summary: A framework for machine learning on Apple silicon.
|
|
5
|
+
Home-page: https://github.com/ml-explore/mlx
|
|
6
|
+
Author: MLX Contributors
|
|
7
|
+
Author-email: mlx@group.apple.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: license
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# MLX
|
|
23
|
+
|
|
24
|
+
[**Quickstart**](#quickstart) | [**Installation**](#installation) |
|
|
25
|
+
[**Documentation**](https://ml-explore.github.io/mlx/build/html/index.html) |
|
|
26
|
+
[**Examples**](#examples)
|
|
27
|
+
|
|
28
|
+
[](https://circleci.com/gh/ml-explore/mlx)
|
|
29
|
+
|
|
30
|
+
MLX is an array framework for machine learning on Apple silicon,
|
|
31
|
+
brought to you by Apple machine learning research.
|
|
32
|
+
|
|
33
|
+
Some key features of MLX include:
|
|
34
|
+
|
|
35
|
+
- **Familiar APIs**: MLX has a Python API that closely follows NumPy. MLX
|
|
36
|
+
also has fully featured C++, [C](https://github.com/ml-explore/mlx-c), and
|
|
37
|
+
[Swift](https://github.com/ml-explore/mlx-swift/) APIs, which closely mirror
|
|
38
|
+
the Python API. MLX has higher-level packages like `mlx.nn` and
|
|
39
|
+
`mlx.optimizers` with APIs that closely follow PyTorch to simplify building
|
|
40
|
+
more complex models.
|
|
41
|
+
|
|
42
|
+
- **Composable function transformations**: MLX supports composable function
|
|
43
|
+
transformations for automatic differentiation, automatic vectorization,
|
|
44
|
+
and computation graph optimization.
|
|
45
|
+
|
|
46
|
+
- **Lazy computation**: Computations in MLX are lazy. Arrays are only
|
|
47
|
+
materialized when needed.
|
|
48
|
+
|
|
49
|
+
- **Dynamic graph construction**: Computation graphs in MLX are constructed
|
|
50
|
+
dynamically. Changing the shapes of function arguments does not trigger
|
|
51
|
+
slow compilations, and debugging is simple and intuitive.
|
|
52
|
+
|
|
53
|
+
- **Multi-device**: Operations can run on any of the supported devices
|
|
54
|
+
(currently the CPU and the GPU).
|
|
55
|
+
|
|
56
|
+
- **Unified memory**: A notable difference from MLX and other frameworks
|
|
57
|
+
is the *unified memory model*. Arrays in MLX live in shared memory.
|
|
58
|
+
Operations on MLX arrays can be performed on any of the supported
|
|
59
|
+
device types without transferring data.
|
|
60
|
+
|
|
61
|
+
MLX is designed by machine learning researchers for machine learning
|
|
62
|
+
researchers. The framework is intended to be user-friendly, but still efficient
|
|
63
|
+
to train and deploy models. The design of the framework itself is also
|
|
64
|
+
conceptually simple. We intend to make it easy for researchers to extend and
|
|
65
|
+
improve MLX with the goal of quickly exploring new ideas.
|
|
66
|
+
|
|
67
|
+
The design of MLX is inspired by frameworks like
|
|
68
|
+
[NumPy](https://numpy.org/doc/stable/index.html),
|
|
69
|
+
[PyTorch](https://pytorch.org/), [Jax](https://github.com/google/jax), and
|
|
70
|
+
[ArrayFire](https://arrayfire.org/).
|
|
71
|
+
|
|
72
|
+
## Examples
|
|
73
|
+
|
|
74
|
+
The [MLX examples repo](https://github.com/ml-explore/mlx-examples) has a
|
|
75
|
+
variety of examples, including:
|
|
76
|
+
|
|
77
|
+
- [Transformer language model](https://github.com/ml-explore/mlx-examples/tree/main/transformer_lm) training.
|
|
78
|
+
- Large-scale text generation with
|
|
79
|
+
[LLaMA](https://github.com/ml-explore/mlx-examples/tree/main/llms/llama) and
|
|
80
|
+
finetuning with [LoRA](https://github.com/ml-explore/mlx-examples/tree/main/lora).
|
|
81
|
+
- Generating images with [Stable Diffusion](https://github.com/ml-explore/mlx-examples/tree/main/stable_diffusion).
|
|
82
|
+
- Speech recognition with [OpenAI's Whisper](https://github.com/ml-explore/mlx-examples/tree/main/whisper).
|
|
83
|
+
|
|
84
|
+
## Quickstart
|
|
85
|
+
|
|
86
|
+
See the [quick start
|
|
87
|
+
guide](https://ml-explore.github.io/mlx/build/html/usage/quick_start.html)
|
|
88
|
+
in the documentation.
|
|
89
|
+
|
|
90
|
+
## Installation
|
|
91
|
+
|
|
92
|
+
MLX is available on [PyPI](https://pypi.org/project/mlx/). To install MLX on
|
|
93
|
+
macOS, run:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
pip install mlx
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
To install the CUDA backend on Linux, run:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
pip install mlx[cuda]
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
To install a CPU-only Linux package, run:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
pip install mlx[cpu]
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Checkout the
|
|
112
|
+
[documentation](https://ml-explore.github.io/mlx/build/html/install.html#)
|
|
113
|
+
for more information on building the C++ and Python APIs from source.
|
|
114
|
+
|
|
115
|
+
## Contributing
|
|
116
|
+
|
|
117
|
+
Check out the [contribution guidelines](https://github.com/ml-explore/mlx/tree/main/CONTRIBUTING.md) for more information
|
|
118
|
+
on contributing to MLX. See the
|
|
119
|
+
[docs](https://ml-explore.github.io/mlx/build/html/install.html) for more
|
|
120
|
+
information on building from source, and running tests.
|
|
121
|
+
|
|
122
|
+
We are grateful for all of [our
|
|
123
|
+
contributors](https://github.com/ml-explore/mlx/tree/main/ACKNOWLEDGMENTS.md#Individual-Contributors). If you contribute
|
|
124
|
+
to MLX and wish to be acknowledged, please add your name to the list in your
|
|
125
|
+
pull request.
|
|
126
|
+
|
|
127
|
+
## Citing MLX
|
|
128
|
+
|
|
129
|
+
The MLX software suite was initially developed with equal contribution by Awni
|
|
130
|
+
Hannun, Jagrit Digani, Angelos Katharopoulos, and Ronan Collobert. If you find
|
|
131
|
+
MLX useful in your research and wish to cite it, please use the following
|
|
132
|
+
BibTex entry:
|
|
133
|
+
|
|
134
|
+
```text
|
|
135
|
+
@software{mlx2023,
|
|
136
|
+
author = {Awni Hannun and Jagrit Digani and Angelos Katharopoulos and Ronan Collobert},
|
|
137
|
+
title = {{MLX}: Efficient and flexible machine learning on Apple silicon},
|
|
138
|
+
url = {https://github.com/ml-explore},
|
|
139
|
+
version = {0.0},
|
|
140
|
+
year = {2023},
|
|
141
|
+
}
|
|
142
|
+
```
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
mlx/__main__.py,sha256=lX9RO9HED5uNbPUdZ2qmZhi_WbQPoSeLozmod5nDGN4,578
|
|
2
|
+
mlx/_reprlib_fix.py,sha256=90jqTxCZW_MO1rp27TU58jwYzfVBAx4cCWjdYNyY9yM,321
|
|
3
|
+
mlx/extension.py,sha256=ysODoDgLQXheS1uQ81ppjbEbLL9JmwI5yBV5uGublnc,3294
|
|
4
|
+
mlx/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
mlx/utils.py,sha256=co76onid0ILwC29HAb3-1SPnghTTrB-LlbozRqFDdRE,11473
|
|
6
|
+
mlx/include/mlx/allocator.h,sha256=gSiZjNDWYHYOek4GzLmlrRehCP_oEm0DvlMOTXiLon8,1844
|
|
7
|
+
mlx/include/mlx/array.h,sha256=wbNNf2oAQ2wRU8QBfyAJ2tU5nOGvnSmAuJfUtWaI5lI,17492
|
|
8
|
+
mlx/include/mlx/compile.h,sha256=DIRxobt-5i5zaWMJZx4x0BGD0_fh7ZkH3v2iqN0S0hI,1302
|
|
9
|
+
mlx/include/mlx/compile_impl.h,sha256=27IYAN3Mh-NChCRa-GB1k2fY3vNMF2QIOZWrd_3hvFw,2033
|
|
10
|
+
mlx/include/mlx/device.h,sha256=hX8NPZEUC8OPdQlkNX7p4EVi1IMOmxoaVa0g-uu-mEE,600
|
|
11
|
+
mlx/include/mlx/dtype.h,sha256=a3_tic6qsdmjOjLdR6Td3Tws1PzxShrHWaMntaJyRmc,3056
|
|
12
|
+
mlx/include/mlx/dtype_utils.h,sha256=cmZzhNMNfKRGRbZlU8vit0JWzKogpNfCg95l7gRoOww,3615
|
|
13
|
+
mlx/include/mlx/einsum.h,sha256=FfphL1bvJQu_884F35GQdHTuEYTiTovV5TBTnBL5Eio,457
|
|
14
|
+
mlx/include/mlx/event.h,sha256=81EVTPWWbJYk1_OVsOtql0_5Fe07s7_hfi_vLP3_Nas,1201
|
|
15
|
+
mlx/include/mlx/export.h,sha256=1axn-wwTP8K-DWjjwnSBytBr0E2-W9cLUXk9CPxkJ6A,3537
|
|
16
|
+
mlx/include/mlx/export_impl.h,sha256=akB6QemRSVoYmZXbsyMZZCSBYPIxaTmm1gftPWDXlQM,2908
|
|
17
|
+
mlx/include/mlx/fast.h,sha256=1PmnWxtEBldrXGiYcEAYFg5M2odX0Ms9ALPh-PHZMlw,2769
|
|
18
|
+
mlx/include/mlx/fast_primitives.h,sha256=XrcxH6CaQq68AtEE1o8sUixiVtB4POG9ayJtdUJPZ5E,11370
|
|
19
|
+
mlx/include/mlx/fence.h,sha256=ZgAL2MvR96YU2Sp990opbJDQl6wusfc6evQ3xu3StNg,1136
|
|
20
|
+
mlx/include/mlx/fft.h,sha256=TOnlen0Uj3Yh3e5aPQFetpKHWPKCZf-6108_vHiNMrQ,4586
|
|
21
|
+
mlx/include/mlx/graph_utils.h,sha256=Xcs_j21AIrOOhvD-w-Y6Ki35fGTbaxrJRWBBTeogcrk,1789
|
|
22
|
+
mlx/include/mlx/io.h,sha256=WLyhtOeEbyXGxwDQ_mctYpLcfij4j4m75Dse0I6pDiU,1868
|
|
23
|
+
mlx/include/mlx/linalg.h,sha256=rnnxjqZ4SzrdQxg2MA3Phgj2p5XzhqjVgOxa6dClAOE,3155
|
|
24
|
+
mlx/include/mlx/memory.h,sha256=KU8tCWyu1ZPy21mwkAuBIJLEmz9cDXSC6hHAcGpzEU0,2094
|
|
25
|
+
mlx/include/mlx/mlx.h,sha256=uFczdvArEZO-NjrHwFIm95WeHQTz3H5IIJPVtfWo-Uw,608
|
|
26
|
+
mlx/include/mlx/ops.h,sha256=1mjvuPHemgtpHvycCV-vNrsWGYHXqc-2H_PHKO4KuKM,49269
|
|
27
|
+
mlx/include/mlx/primitives.h,sha256=hQFGJ-TwI4ABBB3fuu-LGzEmMhF6yUBzkn9DyPvOhUA,68811
|
|
28
|
+
mlx/include/mlx/random.h,sha256=V3wD8AlgReJawjeFbMCTvzMGfpsJSas4FbvuWJHfc68,7406
|
|
29
|
+
mlx/include/mlx/scheduler.h,sha256=QmHR0zxucK_3rOTTwEsyL34jmNxEG_mCFnbMpL74eIY,4162
|
|
30
|
+
mlx/include/mlx/small_vector.h,sha256=L9fSpCOnS3hXroht2uC2xBg_W58da4-NO6jbOKWtRnc,15531
|
|
31
|
+
mlx/include/mlx/stream.h,sha256=uJ3e0FBJaoel8-mTg1qEJdK09Klr8shPCCM1xLxiarw,896
|
|
32
|
+
mlx/include/mlx/threadpool.h,sha256=4i4-t6LuCwaw6mnopJN1dh3pt5ndlrBueunneNmCBmc,3656
|
|
33
|
+
mlx/include/mlx/transforms.h,sha256=fj54fM5R8Afug7NFrrxjEkuz7hQDum-BlhY5_54Jk_k,8334
|
|
34
|
+
mlx/include/mlx/transforms_impl.h,sha256=tAKHoEXwtqcHhhYXoKAiMPx91MmHyIll71-BH5Jc4k8,2258
|
|
35
|
+
mlx/include/mlx/utils.h,sha256=G0BcbxO2bnLX3L41RIm5oXdglkE2xG9mNeVDM8ZrEXY,4758
|
|
36
|
+
mlx/include/mlx/version.h,sha256=tZ1P_PAphs8fQTmnAdm3yxSa-HdOF-nH9uhjOgWRvX4,479
|
|
37
|
+
mlx/include/mlx/3rdparty/pocketfft.h,sha256=Dq6iEwS_MkY5_xECLuY_r0io-rZK_lw8LR7---HX36Y,110508
|
|
38
|
+
mlx/include/mlx/backend/common/binary.h,sha256=7j6Nr8Sdh9q-Dt3tn2F8oJaCo_XvSTELccovy7ZdyDw,2627
|
|
39
|
+
mlx/include/mlx/backend/common/broadcasting.h,sha256=LmK58YjwAS3vzxn4ky2u6hmeqT-BywOsH7K5pGjZ8AI,165
|
|
40
|
+
mlx/include/mlx/backend/common/buffer_cache.h,sha256=Km28oGjDSo8LfcAfJIHfCN54cF304PxRRwJEO0bunsU,3717
|
|
41
|
+
mlx/include/mlx/backend/common/compiled.h,sha256=ahEZiRtHy_oUE4Xw8rmBvY70dPXOpNX_udQRXyNiNCc,2286
|
|
42
|
+
mlx/include/mlx/backend/common/copy.h,sha256=LKpEiFtDMndH5TRg8xfjEHuaDAEnWaPI89RAldGBnvA,1247
|
|
43
|
+
mlx/include/mlx/backend/common/hadamard.h,sha256=n-XFx6OGzHQmbtAx3JWhBvMw2Lbi923CATfFRsAd37c,2378
|
|
44
|
+
mlx/include/mlx/backend/common/matmul.h,sha256=ZKywIP83kxEnX2mrIVfLkU3YGN8w_4fkt2ucY9EegTc,1930
|
|
45
|
+
mlx/include/mlx/backend/common/reduce.h,sha256=arU2O8nmkrNGGjc0fklzIX8UzsDyPQq0I07teGiabDM,1776
|
|
46
|
+
mlx/include/mlx/backend/common/slicing.h,sha256=ELTykOAlSAXJsEZ6J0tosYb-AVsa4_iA3ODs74yzxTw,353
|
|
47
|
+
mlx/include/mlx/backend/common/ternary.h,sha256=x1P_ulXeaN-Z9nHNTHqOOODUN5n_8N02dNt3NJWux-o,2477
|
|
48
|
+
mlx/include/mlx/backend/common/unary.h,sha256=xzL_0jRgGYgAAGxtXaxEh1aQAPx9XoCcn7Oo8h2WSvY,633
|
|
49
|
+
mlx/include/mlx/backend/common/utils.h,sha256=OmVoq6_11gxLW1AaPhfo73TYSx2WFF62T6rJmRZBlcc,6002
|
|
50
|
+
mlx/include/mlx/backend/cpu/arange.h,sha256=PLNLcaruFgxvCeKvgj9_HmGL8Vk0psphPLLTzF3A2s0,585
|
|
51
|
+
mlx/include/mlx/backend/cpu/available.h,sha256=mfA2HFwALNeZBooZVQJrIe-q85mueG3du9mzYyVKFDo,127
|
|
52
|
+
mlx/include/mlx/backend/cpu/binary.h,sha256=apZo9Q2mwCkAVdV5ca3A2LsOP8qAG3ru1ia39m-iUzM,13926
|
|
53
|
+
mlx/include/mlx/backend/cpu/binary_ops.h,sha256=s2OkBfDxqJyqtYkkfImw58l14E7vnGr-VL5Mp4Jh1Lw,3259
|
|
54
|
+
mlx/include/mlx/backend/cpu/binary_two.h,sha256=W8_97DOSAlxPxpz__Xc4SWmGYAl5tSUavkE8vZdVshM,3860
|
|
55
|
+
mlx/include/mlx/backend/cpu/compiled_preamble.h,sha256=hCqL2BK_plwmfppd8vm0QfQM9JWg0k72_AiQNkMdsVE,269
|
|
56
|
+
mlx/include/mlx/backend/cpu/copy.h,sha256=14Iojkys4m6GtAJBsLhcM8oQftoZhV5YGbO5QeZTKds,900
|
|
57
|
+
mlx/include/mlx/backend/cpu/encoder.h,sha256=QRGCzKVXlUhLlbGDsM8SMLlgf8jpIg8KaXbxoVLjZGU,1790
|
|
58
|
+
mlx/include/mlx/backend/cpu/eval.h,sha256=uhYjcomfc3WtSlLLrvXwqYrGWJpeq3xPTufAfvQr77Y,177
|
|
59
|
+
mlx/include/mlx/backend/cpu/gemm.h,sha256=dKLsCCVhFC_Dg8MyS4W3jyzDLXP9h2tejmp5udqwjVM,461
|
|
60
|
+
mlx/include/mlx/backend/cpu/jit_compiler.h,sha256=FIuKrP8bjYF-dvsGCphXAtNOg-MLvYwwpff8Tftle10,484
|
|
61
|
+
mlx/include/mlx/backend/cpu/lapack.h,sha256=3VHUJjjaPdZO-RVi9aZwxfrZE8OYnE3oEnMASgZa2mE,3183
|
|
62
|
+
mlx/include/mlx/backend/cpu/slicing.h,sha256=WjwHo8pK9EGaKGMreiwyNLA5zRV-FXIhlSfil9Zh6Uo,387
|
|
63
|
+
mlx/include/mlx/backend/cpu/ternary.h,sha256=Z_jn1otwB6ClgL89QQIiwrWWCSqcOVYfVwI_lWh_7DU,3689
|
|
64
|
+
mlx/include/mlx/backend/cpu/threefry.h,sha256=sXTdUFRAgEXf789u7IhWIj7n-Gtzwo4HiQXDA6BwFyU,572
|
|
65
|
+
mlx/include/mlx/backend/cpu/unary.h,sha256=ryxO5afeg2M5JPdUOcsLZtwdhImGM9XShZuGgq3MywE,7934
|
|
66
|
+
mlx/include/mlx/backend/cpu/unary_ops.h,sha256=mck5WpEFGCpfxSuBXXdVQvh2d1_vebL__kNGQQhdGig,4741
|
|
67
|
+
mlx/include/mlx/backend/cpu/gemms/simd_gemm.h,sha256=-i6N9g48E75DZnX583uIrBZy6l7er0EFtHZMOZz_GiI,4450
|
|
68
|
+
mlx/include/mlx/backend/cpu/simd/accelerate_fp16_simd.h,sha256=gTs8B3mj9ton4qLTzz2YA3BTl0QgFtXigalc7jPddE8,1726
|
|
69
|
+
mlx/include/mlx/backend/cpu/simd/accelerate_simd.h,sha256=zvO2z9qBaaQGl_1Dh7hdh6B5cmxOYYjsajWpqBBqff0,9474
|
|
70
|
+
mlx/include/mlx/backend/cpu/simd/base_simd.h,sha256=q_WCs_PA5ZQfqwD1NUeQyFg2hEvOog8jTXQ9Z0ERkIQ,7801
|
|
71
|
+
mlx/include/mlx/backend/cpu/simd/math.h,sha256=mSXEiGqpxM6absX11TYO6Mt_AVd3X83vad8kDPQwwUE,6266
|
|
72
|
+
mlx/include/mlx/backend/cpu/simd/neon_fp16_simd.h,sha256=m2cg1GGCP3gVREsfm3I_Gf8qzArEBRr0GGPiHpHC27Q,6754
|
|
73
|
+
mlx/include/mlx/backend/cpu/simd/simd.h,sha256=7EYiowT4BsJQrhUU9LYB5SYkRreePqTjp3jKCIyfrkQ,92
|
|
74
|
+
mlx/include/mlx/backend/cpu/simd/type.h,sha256=8V_pSVeMLwY4uhg_IISVU2eWT619QWASH8Qj8241Piw,257
|
|
75
|
+
mlx/include/mlx/backend/cuda/allocator.h,sha256=Vb5Indvps9_6sgKe2CGcIOIUB9ux87MxdTjDQgwrCZ0,1928
|
|
76
|
+
mlx/include/mlx/backend/cuda/cublas_utils.h,sha256=Zo7naLwAowDJaAXMkvOpOvQrybwDF00NuKM-VLBMhnY,2399
|
|
77
|
+
mlx/include/mlx/backend/cuda/cuda.h,sha256=JfgNTkUlFWArgAZ6f3xj0XE2LEAwphIkLPTnZayPGw0,171
|
|
78
|
+
mlx/include/mlx/backend/cuda/cuda_utils.h,sha256=HK1GIbU_FhPm_sJOIWDjCwyUNY4nrRSrfvb503lFSkM,2203
|
|
79
|
+
mlx/include/mlx/backend/cuda/cudnn_utils.h,sha256=cydrvYfeliD8zUwgMDLSFGGY1eFAOktEIKsVGClKLNQ,5441
|
|
80
|
+
mlx/include/mlx/backend/cuda/device.h,sha256=bG4HC0-kP-q0ZQ-Kn6Nn9Oqb0iuuSNbG_FHKVfBOmSA,4696
|
|
81
|
+
mlx/include/mlx/backend/cuda/event.h,sha256=-hOnBeJax4BnN6i-6uy8Ifkq7FMu3MeDevsy8pMJ2Nw,1935
|
|
82
|
+
mlx/include/mlx/backend/cuda/jit_module.h,sha256=thQ4MvUm645WCdCAzYsWoKX8mvm7dISTh-hWLncWUgA,2938
|
|
83
|
+
mlx/include/mlx/backend/cuda/lru_cache.h,sha256=C2MsfEbeSAOQoiSY6eys984ri-feiU9NnNuCXYyio9c,4318
|
|
84
|
+
mlx/include/mlx/backend/cuda/utils.h,sha256=ENxoCEG6Y4kqN_l8IPufdZiJEyhP0j4RkXW8NGiObZc,1190
|
|
85
|
+
mlx/include/mlx/backend/cuda/worker.h,sha256=eYKjPTKh0RrG7IrUf1lX-NVcQdSpplNTwko5g8uip0Y,1274
|
|
86
|
+
mlx/include/mlx/backend/cuda/conv/conv.h,sha256=PZMBgh_FEnpuVXFDQaqbnlAjiBgzbfjwKAyf3VgfMqo,3043
|
|
87
|
+
mlx/include/mlx/backend/cuda/device/config.h,sha256=U7mE9n-uuB_lHcIVayeUfmS9eRQiANaIe4QkcEKwsMI,388
|
|
88
|
+
mlx/include/mlx/backend/cuda/gemms/cublas_gemm.h,sha256=KuKrhVqi7JYmH6DAv1Z7meP_xnHFKGw88RFY8BoPzW0,2583
|
|
89
|
+
mlx/include/mlx/backend/cuda/gemms/gemv.h,sha256=wliaQVvwvcz_TiGLqVcWPB_RbSPzslnOWGcFxYumS-w,512
|
|
90
|
+
mlx/include/mlx/backend/cuda/quantized/cublas_qqmm.h,sha256=2lUlPqA_b6W8tzs_A6RNMbBXLlpC0i2yc7O2l4omXao,2019
|
|
91
|
+
mlx/include/mlx/backend/cuda/quantized/cuda_fp4.h,sha256=Ny1NOUGMmHxn0Lmbr56xCSGnZ-io6qMAKydUxdNuVBw,1507
|
|
92
|
+
mlx/include/mlx/backend/cuda/quantized/qqmm_utils.h,sha256=WV1Ak5R1BThunskIsPRoMtgSxs4Qx5sLE1VY21-juhU,762
|
|
93
|
+
mlx/include/mlx/backend/cuda/quantized/quantized.h,sha256=CstbgFBI5GQgM8iG1k3j6d8zzJRrezNEKcIUuZT4LjM,823
|
|
94
|
+
mlx/include/mlx/backend/gpu/available.h,sha256=B4Gi7apOPdzTuCAdXLjDZH6nCeytZYjaILkncRrQkSs,127
|
|
95
|
+
mlx/include/mlx/backend/gpu/copy.h,sha256=yIP51kZZogTO3gaQ8EqURWaj-WAiwD8KRBKqna0RS4I,1568
|
|
96
|
+
mlx/include/mlx/backend/gpu/eval.h,sha256=zWLva5pDPtA5jFdsTa-tLqruztDz0kuLw7DyMz9TR0c,304
|
|
97
|
+
mlx/include/mlx/backend/gpu/slicing.h,sha256=ai3Or3q4n-HAGYdfxvjMsnUI2k0Rx5wVnEnQKKEU-0U,668
|
|
98
|
+
mlx/include/mlx/backend/metal/allocator.h,sha256=6OlWCGxCe15P51qqTwOlmJYgqmVSWFRnGeJFlh3CSo8,1981
|
|
99
|
+
mlx/include/mlx/backend/metal/binary.h,sha256=syt-KQ_6yJHlgxoO_cPFIPzmf8lHKPe9L1wVRQOS3Vw,637
|
|
100
|
+
mlx/include/mlx/backend/metal/device.h,sha256=S88V2xha0jrBl76cUrCDYD6No7ngbMcaZe7HssmzQNY,8081
|
|
101
|
+
mlx/include/mlx/backend/metal/matmul.h,sha256=e2BvX7oukM9NGwGHbNyrwvfiyPCfXcskqpjnzqU4iZE,3574
|
|
102
|
+
mlx/include/mlx/backend/metal/metal.h,sha256=fKywu4A5BHNqvOpB1WQcZIM6Nv_vetvkmkiTDb0zqh4,524
|
|
103
|
+
mlx/include/mlx/backend/metal/reduce.h,sha256=kDDrigPSi6czRlzH9aV7CL7YK092PllgQuFGXGozqLk,914
|
|
104
|
+
mlx/include/mlx/backend/metal/resident.h,sha256=K2zCfi6nzScAUnA3_RDO9068Jyc5noSepHZ5T-C4WwU,652
|
|
105
|
+
mlx/include/mlx/backend/metal/scan.h,sha256=Rdl27pvVG1-mnkkqW6HHoYjWlJuNzjfjMV0xPzY6vyM,276
|
|
106
|
+
mlx/include/mlx/backend/metal/ternary.h,sha256=iXlCWoRaQl0b0rKlqabko6K84qsE-lATjucb9MIi-8I,363
|
|
107
|
+
mlx/include/mlx/backend/metal/unary.h,sha256=ipI6Ev3q9-4lupCEk7rgNu-4mU0OLgBfoxRoSsYxzgw,359
|
|
108
|
+
mlx/include/mlx/backend/metal/utils.h,sha256=TuRp_dKlnBa61wT_ex15JDeXjXokxYH6kai6hD4bYe0,2331
|
|
109
|
+
mlx/include/mlx/backend/metal/jit/includes.h,sha256=S8nebtxDeNAdV2BoFSvVkg2udUmtgd5M0TP6dpN_kwE,1294
|
|
110
|
+
mlx/include/mlx/backend/metal/jit/indexing.h,sha256=iinipvi2CtEBiymhbIBlCJhopXsQKzei8kUnUHOW96I,2486
|
|
111
|
+
mlx/include/mlx/backend/metal/kernels/arange.h,sha256=8N_l3y4G6QKKSpvuvba3-mOd9D3N3GKRrRwl70Sh5hw,244
|
|
112
|
+
mlx/include/mlx/backend/metal/kernels/atomic.h,sha256=j4_7JeI1rnMNWuXM04_kihFyubw8zQvboniejUwgvd8,9420
|
|
113
|
+
mlx/include/mlx/backend/metal/kernels/bf16.h,sha256=q9h0RqMQt3rFMO9SoyT-rlyyhdA-yWE-OojrtxQQ_cs,306
|
|
114
|
+
mlx/include/mlx/backend/metal/kernels/bf16_math.h,sha256=HzdPg4D3VuuJrPaoR3QcuP7L5kKUXhWftiCNgEzAZJY,26024
|
|
115
|
+
mlx/include/mlx/backend/metal/kernels/binary.h,sha256=mjZ5Z6SJB6xnkr5oW6tMwGLzrZFszKy0QcYn2HpLeJg,5965
|
|
116
|
+
mlx/include/mlx/backend/metal/kernels/binary_ops.h,sha256=Q-msFrygNnhvEbHCSH2mIUAyNIcCzKgxMz9G1Jn_7R8,6869
|
|
117
|
+
mlx/include/mlx/backend/metal/kernels/binary_two.h,sha256=ryZBOmFhwbN2Z_xcOoAlENi0JQdO4soKj9fjFkb1LNg,7026
|
|
118
|
+
mlx/include/mlx/backend/metal/kernels/cexpf.h,sha256=iLbhWlKlgA2Y2bxtqEDKXPcL9XL9oTZAlYDB8XseCqs,3639
|
|
119
|
+
mlx/include/mlx/backend/metal/kernels/complex.h,sha256=qj0poqC7MfwAcUk-OskXOH-WugWdEKjzcaC2pBohbdM,4763
|
|
120
|
+
mlx/include/mlx/backend/metal/kernels/copy.h,sha256=-q_AmvxeGQJS81RMlmszO1A8MEBL44NkRKv2RfYVscg,9784
|
|
121
|
+
mlx/include/mlx/backend/metal/kernels/defines.h,sha256=opMNvWRMacS2alEaCUA0IX88A_SOKaFhP2AVMhUPkWM,830
|
|
122
|
+
mlx/include/mlx/backend/metal/kernels/erf.h,sha256=shrtgmQiFzmpF351itLxfeXubi7mxFp7wnH4mtBHi2A,2736
|
|
123
|
+
mlx/include/mlx/backend/metal/kernels/expm1f.h,sha256=299VH0VyNjnaVNcuMnAIvebvAaLx7VYbsGXiUatsnxo,3278
|
|
124
|
+
mlx/include/mlx/backend/metal/kernels/fft.h,sha256=tW2qJu_OCEtCwIOcmA02_Wq9IKvXcdpa1WVGk9Glg3A,15110
|
|
125
|
+
mlx/include/mlx/backend/metal/kernels/fp4.h,sha256=AzqMVp3_sASUBj_AzBFAzCmwxh_-mEnY19VqbdVPRoY,1016
|
|
126
|
+
mlx/include/mlx/backend/metal/kernels/fp8.h,sha256=l_5cwjRHfnYN5nk6SA2VUwalZYYuthKUqpYKPDb75qo,2375
|
|
127
|
+
mlx/include/mlx/backend/metal/kernels/fp_quantized.h,sha256=kTZJAmRiJcUkWBl3JS5X2d328o6nNAE0604_pmND9a8,54201
|
|
128
|
+
mlx/include/mlx/backend/metal/kernels/fp_quantized_nax.h,sha256=cQaACwRq1LeJJFKVT36SoYbyApuFoCDYX8cVIfSWkB8,29124
|
|
129
|
+
mlx/include/mlx/backend/metal/kernels/gemv_masked.h,sha256=uqfUCNfn48CzVWOwEGE99WEMJZoqU_zaTL7d2CI_MWc,27029
|
|
130
|
+
mlx/include/mlx/backend/metal/kernels/hadamard.h,sha256=nEt0m00phSA0FsLaQtvffVkHDGxJyB9hEpB7bOQH7cU,4959
|
|
131
|
+
mlx/include/mlx/backend/metal/kernels/logsumexp.h,sha256=Iz-acHK-0h8rcfUixBql6GII47z9GPr8h88op9fxMVQ,4235
|
|
132
|
+
mlx/include/mlx/backend/metal/kernels/quantized.h,sha256=TLa4kVdE4hUJBQ6RkWPFmAHgIFXp2hUlfu9x09RJlKM,78475
|
|
133
|
+
mlx/include/mlx/backend/metal/kernels/quantized_nax.h,sha256=wR0_-Y7TLjGrtERcdY96eh5a5TlNEIROXgc_-ZA1j3A,50113
|
|
134
|
+
mlx/include/mlx/backend/metal/kernels/quantized_utils.h,sha256=oShBtX1QX2zKgWMZAbhF2_dryQ38CZ5_QMdjssyDjFE,2318
|
|
135
|
+
mlx/include/mlx/backend/metal/kernels/reduce.h,sha256=K0ypP9H0PukRKUQDWbGMD6SbxwCYvUyjAzxlULLAfZQ,254
|
|
136
|
+
mlx/include/mlx/backend/metal/kernels/reduce_utils.h,sha256=LLZNl5bp6si87Y81M33px_6k2zhAo-OY7KIef73ZdYw,146
|
|
137
|
+
mlx/include/mlx/backend/metal/kernels/scan.h,sha256=uh-viQUeXXVU5ccZhA9sUOzvJ0sfmXN_bQMeBQ1J9lI,14920
|
|
138
|
+
mlx/include/mlx/backend/metal/kernels/sdpa_vector.h,sha256=6pTxoSsBPBKU4Whj6auuwO3rJHzM_ZVEtZvtzWOkou0,13685
|
|
139
|
+
mlx/include/mlx/backend/metal/kernels/softmax.h,sha256=yyM_5CpzWPX2WMmh71LNLundN4bd-tAXk6l21Y9NQFE,6010
|
|
140
|
+
mlx/include/mlx/backend/metal/kernels/sort.h,sha256=EftI3Bfd7pelkcMpWBTnsnnz1XGcKSbn0k_XT_2-Y1U,21020
|
|
141
|
+
mlx/include/mlx/backend/metal/kernels/ternary.h,sha256=GtfrvXxrsCi32aiDrHLFSdIY4Wlsr6apfEQvTpGvfkM,4582
|
|
142
|
+
mlx/include/mlx/backend/metal/kernels/ternary_ops.h,sha256=4c-P7Pp3lX7-XbemIGAniNQxYXaQ-UuU3IPXczA6gqY,172
|
|
143
|
+
mlx/include/mlx/backend/metal/kernels/unary.h,sha256=-5UqLDCm0M0B9sYehSzBXkJrKGR13o_xObtluNkAHIw,1885
|
|
144
|
+
mlx/include/mlx/backend/metal/kernels/unary_ops.h,sha256=la6rpRH9Ms_ImAM2asMPnhUqsC4qw8Kq7PxmDR9rdGM,8752
|
|
145
|
+
mlx/include/mlx/backend/metal/kernels/utils.h,sha256=7XxknC2Clgzggo0rrnl74XI9_dS4OCz2X2xBdUT9TFA,13499
|
|
146
|
+
mlx/include/mlx/backend/metal/kernels/fft/radix.h,sha256=Pz6Kn0L0ZMbzmJP-lywte_rK78S0fl746gIFtmLahp4,8679
|
|
147
|
+
mlx/include/mlx/backend/metal/kernels/fft/readwrite.h,sha256=4m1J0Mmob-_vZD_Tp8JMbxO1qSzQqsI1LIsDoHt8HzU,19153
|
|
148
|
+
mlx/include/mlx/backend/metal/kernels/indexing/gather.h,sha256=Oy9bIc0ucUJ8lkE2ikV4QPXLEx4gIJXNE1L5g851Qc4,1804
|
|
149
|
+
mlx/include/mlx/backend/metal/kernels/indexing/gather_axis.h,sha256=4adFOR_0mQ8_GtdcVofDsQLc3Egz2Pu6w44Q9UrymvQ,1502
|
|
150
|
+
mlx/include/mlx/backend/metal/kernels/indexing/gather_front.h,sha256=ZKrOv2V23804k4NWT6EhS8h_Kgkd0zzGTFmMU2fsq5Y,723
|
|
151
|
+
mlx/include/mlx/backend/metal/kernels/indexing/indexing.h,sha256=6CC47itRMqlxIngMEkM-u1EA2AeNMeIR0EKUAKEUFbs,487
|
|
152
|
+
mlx/include/mlx/backend/metal/kernels/indexing/masked_scatter.h,sha256=3O1dut1pku-4o-fpwXZMIoDCu7iKJ12TO0wOmjzbRO4,1082
|
|
153
|
+
mlx/include/mlx/backend/metal/kernels/indexing/scatter.h,sha256=bW2BkSzn1riW6wIl0axohdMM0wITtn2ZbT78A_SjwpI,1791
|
|
154
|
+
mlx/include/mlx/backend/metal/kernels/indexing/scatter_axis.h,sha256=Q-q9AhYQH44y9c3RnOQLf5VFZL4n-tmKXg_jRee5TOU,1610
|
|
155
|
+
mlx/include/mlx/backend/metal/kernels/reduction/ops.h,sha256=8TF3aiyNYYZbURY5qlSf4Rbth3Wpdyzt4-dpE01FR5U,7062
|
|
156
|
+
mlx/include/mlx/backend/metal/kernels/reduction/reduce_all.h,sha256=lAjH_bgiwTWDiO6z6U1-knUH7Hre8kN9GuMCaEa-XCg,1830
|
|
157
|
+
mlx/include/mlx/backend/metal/kernels/reduction/reduce_col.h,sha256=Yt3kZ-bXEh3IjFUOwx6tSVyvNplSXZylX5Z6Op4vsw8,13581
|
|
158
|
+
mlx/include/mlx/backend/metal/kernels/reduction/reduce_init.h,sha256=xe-cZYhvmrpkpd8DYHzxdZUP2ZI3ygaL1vyuxy1j1Rk,204
|
|
159
|
+
mlx/include/mlx/backend/metal/kernels/reduction/reduce_row.h,sha256=d8x6xhhkDgK8UqNrUpVflZ4SE0H5GztQVEzi5AAxLzc,11321
|
|
160
|
+
mlx/include/mlx/backend/metal/kernels/steel/defines.h,sha256=sDzqan1c_oFOaDjYU24qrNyv0nRMtAjpVP2jNs4hdZo,231
|
|
161
|
+
mlx/include/mlx/backend/metal/kernels/steel/utils.h,sha256=1MNimBRdHFYXqU8H2_q_askyr-L9fqDJKR8fs4XFQEo,1073
|
|
162
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/attn.h,sha256=Z3IiFP9Ifsld9nXi8TXM1_vmObbrarmLFLzvpY1mupU,8532
|
|
163
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/loader.h,sha256=qX143Y9n_ymim-9r_TwJOxjIeAeKKu18AMLo7G_lc6k,7448
|
|
164
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/mma.h,sha256=hCwsYFRJKuyBkkvOtnjHukb6RS9XgaRxsmtlvbYU5Pw,21592
|
|
165
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/nax.h,sha256=dlx7tBX73eavUHAXvi_WeLK02m7Wc3S6V_0HM1u8-kQ,30044
|
|
166
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/params.h,sha256=8Dxu1z1ymPppt1pJ5-7FSVS2-v1ZUwofF1k0IVQS7YA,1225
|
|
167
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/transforms.h,sha256=WGWlXse_vkfob7IeGJOezH4rU-bfIhRGH74GvoeJywQ,1634
|
|
168
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/kernels/steel_attention.h,sha256=RbjBmMYgE_Dqtgzz8OfSQr_VPoMOlxl25275H8XuWCc,13876
|
|
169
|
+
mlx/include/mlx/backend/metal/kernels/steel/attn/kernels/steel_attention_nax.h,sha256=T2pLrAEZkzIOdUvonsc-axaRqO1fD1h7qRG-568RZNU,13898
|
|
170
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/conv.h,sha256=5Gn1Eonv8vYyM1xjS7XTRmZ6YfgeUV9CFZoev_091N8,372
|
|
171
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/loader.h,sha256=qChQ12BjjHGprow-QmCCv24gkYIquuglg1dqoSnRFQ8,196
|
|
172
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/params.h,sha256=Re890AyUaPgqPOf9yyzG1xP0h2XEr9DtRXyh6dMzHXM,1347
|
|
173
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/kernels/steel_conv.h,sha256=FfNdEEO6yfV_f0EY_ck5tVZaw2qDrXhOKyqcM5lpvPs,4807
|
|
174
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/kernels/steel_conv_general.h,sha256=gQ0nrDOnCRPbak5xDpyYytgFvae5VBlUp2WFlJzJ6LI,6567
|
|
175
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_channel_l.h,sha256=Q7YaKuQWvQR4pJngQCt65sBk3QzfOFzTvJAjsPUvvnY,11799
|
|
176
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_channel_n.h,sha256=Jg4kwtB4W7tLqVOwVxeC9GrLyEJgAYcGfzTB364qBus,8553
|
|
177
|
+
mlx/include/mlx/backend/metal/kernels/steel/conv/loaders/loader_general.h,sha256=r4VltO5hSrXFuWQo_m4nxjuqsSvkF-ZosQNvQGPOJf4,10565
|
|
178
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/gemm.h,sha256=yErzHixXFU8qiiT6f5_iRJdlzOmmbz8DWEbtPAO2qLA,8475
|
|
179
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/gemm_nax.h,sha256=o-4Yfso9OtE-078M14rsWlHpnyPXOnAdzGT1l8l5f0c,4545
|
|
180
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/loader.h,sha256=cDzQUVjCJiXdY2uF9yGbs3TGXurtA_e3cL-KxJ8vsW0,3832
|
|
181
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/mma.h,sha256=pC3HPKPZhVdSy_EZCriBpssAko9aOe0mO39-qmnbU3c,33667
|
|
182
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/nax.h,sha256=jw4B8qq3gBfr6iqkMcrFxLmIsMffDPUUaRgb9NwIENI,30182
|
|
183
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/params.h,sha256=XLiNcslXgxQPAmibaDMsEBYGLWvYrZMuBI83BpsAGC8,1111
|
|
184
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/transforms.h,sha256=rq1z-ocxhM99kw-50gMI92XFLDWndamgExFizDMvqBQ,1680
|
|
185
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_fused.h,sha256=7UnIucc5V_DLyd6jD0hM-E-4Ia7OaCM9bRlnhWIA1cc,9957
|
|
186
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_fused_nax.h,sha256=VJJHT_LE1XVmkuIzXxsYVoSdNMq9QMO1IcPuk2g9YsI,6211
|
|
187
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_gather.h,sha256=j8b3zLma8TETEDeTMn2kLj5ouXkTkEL7jr7laeLDXS8,13386
|
|
188
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_gather_nax.h,sha256=o7Ly-ACQjkwWhYs8Uu6qk26WvJ4whtaZQGxn0A7JXXQ,3829
|
|
189
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_masked.h,sha256=kvwVnqyNJbfZWQy7x_ux2YqvyUHExwI9s8TUl38aX7I,21562
|
|
190
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_segmented.h,sha256=hnSCVJX6Blw0aHkpt50_vRjxnu-bejI8Rnh-i9R0O64,8811
|
|
191
|
+
mlx/include/mlx/backend/metal/kernels/steel/gemm/kernels/steel_gemm_splitk.h,sha256=dA3Rw1psjTssXJA3pEjsViyv-V1bCcfAHWJQHsjEJVc,6278
|
|
192
|
+
mlx/include/mlx/backend/metal/kernels/steel/utils/integral_constant.h,sha256=qc81-hH0Pt_wtbC6B3WKSmqzVvIfdRCI8wwmFpoMlNk,3726
|
|
193
|
+
mlx/include/mlx/backend/metal/kernels/steel/utils/type_traits.h,sha256=R2bFo4CdPPd0DmOsxXA-92trToXYuvFmAsnVF6L9Qmw,1145
|
|
194
|
+
mlx/include/mlx/backend/no_gpu/apple_memory.h,sha256=UXtgnur-FeRN2FJKJsMrti4Iiw-0_2H5F4zjsONWs0g,263
|
|
195
|
+
mlx/include/mlx/backend/no_gpu/linux_memory.h,sha256=P_ifU9Y50D72YCZqa_9nWmq0ahe87sjZ9lzLsoyi0CQ,290
|
|
196
|
+
mlx/include/mlx/distributed/distributed.h,sha256=uepjw1qjs2cmuEFLt58he5aW-YpvKJYLSoVXx4gcFC8,1661
|
|
197
|
+
mlx/include/mlx/distributed/distributed_impl.h,sha256=KSqa96H67m1Zs0_J0hD92uQPBCr4LBt4waYkN-iZWgs,2056
|
|
198
|
+
mlx/include/mlx/distributed/ops.h,sha256=gBsaQATQvGypKzHRBABVOwTjbvU-x4axmjN3kA7Pka8,1151
|
|
199
|
+
mlx/include/mlx/distributed/primitives.h,sha256=FhI18hNO9Z6TbOJM-bLXkxm1VS2gn94DHPqJGSnvG6M,4307
|
|
200
|
+
mlx/include/mlx/distributed/reduction_ops.h,sha256=kFHQYGvaoCk1A3pvN7nA_sxGCNCoopf6l0_H_Y4H8Do,735
|
|
201
|
+
mlx/include/mlx/distributed/utils.h,sha256=AIdUXmP5DfdewnDgwSF1nFSg4jRaH15PDEg2nSTDS_U,1412
|
|
202
|
+
mlx/include/mlx/distributed/jaccl/jaccl.h,sha256=j_XYQ5rQE4idpyyvewXGEg3LFFW-WVyUdS2iwlkQ5lk,301
|
|
203
|
+
mlx/include/mlx/distributed/mpi/mpi.h,sha256=QovW3UhK96Xd67rUCaEtBQbyE2Kz2BtD6xgQL6IP35Q,297
|
|
204
|
+
mlx/include/mlx/distributed/mpi/mpi_declarations.h,sha256=Z9MmDwhaJGhlIahdq0UlbG98ZMjvj7gpmLS4aVly4Pg,641
|
|
205
|
+
mlx/include/mlx/distributed/nccl/nccl.h,sha256=Rp1ljiGVs3rvZS28jCAKvUSy0BKoD9D93AOQ0wHVrMg,299
|
|
206
|
+
mlx/include/mlx/distributed/ring/ring.h,sha256=R5EorVNy4ZyvVgll3W-BsVhLh4DTEKcv-BDXGOuAb8I,299
|
|
207
|
+
mlx/include/mlx/io/gguf.h,sha256=dyY_C67hQkxw5XglwJtSD0v6WlpP5ubliELrx7EmVng,386
|
|
208
|
+
mlx/include/mlx/io/load.h,sha256=mK3GEoDW481qbLc-6NZG6CuzC-zshHiXIjDjimq7gq0,3994
|
|
209
|
+
mlx/include/mlx/types/bf16.h,sha256=fLnTB0fbL2vIs_CCvWhrr7SfDnFUEpDPmg7RNmrRnzE,6753
|
|
210
|
+
mlx/include/mlx/types/complex.h,sha256=RNiIer9hWtPm0QadmAdXEgoyAYxnZnr6sTnEQs1U6Bo,4465
|
|
211
|
+
mlx/include/mlx/types/fp16.h,sha256=j0E7-PKkVkCT-bOMRdBEYdvxUdo9rf6w80dNSNCYNaQ,8322
|
|
212
|
+
mlx/include/mlx/types/half_types.h,sha256=4pYnPvvvbOgAi9lVNJtYawN1AlP7m7_TlXxq2nQfM5g,1355
|
|
213
|
+
mlx/include/mlx/types/limits.h,sha256=zyb-Q2j-A9U4jQSvTVjUW69tjChfpTM76IYg9gp_Dc4,1462
|
|
214
|
+
mlx/lib/libmlx.so,sha256=fkDkfUC4kA8sFip1TRggA-LlvynJb5s8n7EjnEe9RQw,25901313
|
|
215
|
+
mlx/share/cmake/MLX/FindNCCL.cmake,sha256=VvLzRXd6RXPliIMwImMfU_NcS0z4NdXg2ZzvZM2Xn8k,1712
|
|
216
|
+
mlx/share/cmake/MLX/Findnvpl.cmake,sha256=vL5jbflp6xs9RjVZzQuxSczuo94PpPUIA-Qh3KYvDeM,211
|
|
217
|
+
mlx/share/cmake/MLX/MLXConfig.cmake,sha256=TlsM4QQbESXNZFpVm7TY3iEWnWGR1-0iwReTOAmcvbg,2196
|
|
218
|
+
mlx/share/cmake/MLX/MLXConfigVersion.cmake,sha256=litkvEhVB4wBMSIFjmyFk21Bl6fQdWmnqeTV9TK8Pmc,2765
|
|
219
|
+
mlx/share/cmake/MLX/MLXTargets-release.cmake,sha256=1t5bNR94IHTMa4k2KG2C-HcR8MfORMo551JBHjm3rr4,772
|
|
220
|
+
mlx/share/cmake/MLX/MLXTargets.cmake,sha256=CV9XDn6sQiLFHlTg0XdDjLcEHGYNwxZnqhlIW1tiF24,4094
|
|
221
|
+
mlx/share/cmake/MLX/extension.cmake,sha256=4lh6EMINT71-Js3VUUDUvu-r3BKL2_iUnWnqNmrcQcY,1868
|
|
222
|
+
mlx_cpu.libs/libblas-bd8a282c.so.3.10.0,sha256=1Sbmo1sMIXk8U0tD7eixpPlkwSbOzEjSgWC8eGrDf1g,681825
|
|
223
|
+
mlx_cpu.libs/libgfortran-3ec47101.so.5.0.0,sha256=VNIZ3grPdsL_Y2gEBfnsix69E7wlR6BcQ0OTW74cgq0,3082713
|
|
224
|
+
mlx_cpu.libs/liblapack-86b2c207.so.3.10.0,sha256=zalRqSUpKxGTgjJxbSj6mKGp-uvANtRATm3hYchilQU,7620521
|
|
225
|
+
mlx_cpu.libs/libquadmath-67d31475.so.0.0.0,sha256=Uka9HGWcdNKzf7SP5QayJaI6U8amhrHo341fJhkAb1k,292977
|
|
226
|
+
mlx_cpu-0.30.1.dist-info/METADATA,sha256=Esk8ApSOfjB3Rcr-nypydOgM_ZSFSdujxXVbJvZcnSY,5106
|
|
227
|
+
mlx_cpu-0.30.1.dist-info/WHEEL,sha256=48QEnL9zVCk75F2gIDin8PjFy0JBSWV8fbXPQzd1SZc,110
|
|
228
|
+
mlx_cpu-0.30.1.dist-info/top_level.txt,sha256=NCVZzyms-obPlDq2Sa--m3oyfnnmLma38KCnE6gmcFE,4
|
|
229
|
+
mlx_cpu-0.30.1.dist-info/RECORD,,
|
|
230
|
+
mlx_cpu-0.30.1.dist-info/licenses/LICENSE,sha256=zPq3zLLqMG9xUxyMp3u1VQdgbNkHaLHjK4tSq1tIzwE,1066
|
|
231
|
+
mlx_cpu-0.30.1.dist-info/sboms/auditwheel.cdx.json,sha256=XWQ0TeJ12ubU31wly4KcT2nXqP4MOT-xvv22IpQ3tw8,2791
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright © 2023 Apple Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"bomFormat": "CycloneDX", "specVersion": "1.4", "version": 1, "metadata": {"component": {"type": "library", "bom-ref": "pkg:pypi/mlx_cpu@0.30.1?file_name=mlx_cpu-0.30.1-py3-none-manylinux_2_35_x86_64.whl", "name": "mlx_cpu", "version": "0.30.1", "purl": "pkg:pypi/mlx_cpu@0.30.1?file_name=mlx_cpu-0.30.1-py3-none-manylinux_2_35_x86_64.whl"}, "tools": [{"name": "auditwheel", "version": "6.5.0"}]}, "components": [{"type": "library", "bom-ref": "pkg:pypi/mlx_cpu@0.30.1?file_name=mlx_cpu-0.30.1-py3-none-manylinux_2_35_x86_64.whl", "name": "mlx_cpu", "version": "0.30.1", "purl": "pkg:pypi/mlx_cpu@0.30.1?file_name=mlx_cpu-0.30.1-py3-none-manylinux_2_35_x86_64.whl"}, {"type": "library", "bom-ref": "pkg:deb/ubuntu/libblas3@3.10.0-2ubuntu1#dcb13ff4048030b0e25fe052f50003ceba7cffcac5535b4b163d7499b55aaa54", "name": "libblas3", "version": "3.10.0-2ubuntu1", "purl": "pkg:deb/ubuntu/libblas3@3.10.0-2ubuntu1"}, {"type": "library", "bom-ref": "pkg:deb/ubuntu/libquadmath0@12.3.0-1ubuntu1~22.04.2#3d4b165152b7622fc1a38c02780feb474f1cd06859c29178541cd76069430c67", "name": "libquadmath0", "version": "12.3.0-1ubuntu1~22.04.2", "purl": "pkg:deb/ubuntu/libquadmath0@12.3.0-1ubuntu1~22.04.2"}, {"type": "library", "bom-ref": "pkg:deb/ubuntu/libgfortran5@12.3.0-1ubuntu1~22.04.2#95e03ebf841465c379d80da0d169b65812810ba1488180abfce6a2ab5635f905", "name": "libgfortran5", "version": "12.3.0-1ubuntu1~22.04.2", "purl": "pkg:deb/ubuntu/libgfortran5@12.3.0-1ubuntu1~22.04.2"}, {"type": "library", "bom-ref": "pkg:deb/ubuntu/liblapack3@3.10.0-2ubuntu1#84ee26e72f2764e439e3420017abb182d44000760819b48495b10fef5cdc39b1", "name": "liblapack3", "version": "3.10.0-2ubuntu1", "purl": "pkg:deb/ubuntu/liblapack3@3.10.0-2ubuntu1"}], "dependencies": [{"ref": "pkg:pypi/mlx_cpu@0.30.1?file_name=mlx_cpu-0.30.1-py3-none-manylinux_2_35_x86_64.whl", "dependsOn": ["pkg:deb/ubuntu/libblas3@3.10.0-2ubuntu1#dcb13ff4048030b0e25fe052f50003ceba7cffcac5535b4b163d7499b55aaa54", "pkg:deb/ubuntu/libquadmath0@12.3.0-1ubuntu1~22.04.2#3d4b165152b7622fc1a38c02780feb474f1cd06859c29178541cd76069430c67", "pkg:deb/ubuntu/libgfortran5@12.3.0-1ubuntu1~22.04.2#95e03ebf841465c379d80da0d169b65812810ba1488180abfce6a2ab5635f905", "pkg:deb/ubuntu/liblapack3@3.10.0-2ubuntu1#84ee26e72f2764e439e3420017abb182d44000760819b48495b10fef5cdc39b1"]}, {"ref": "pkg:deb/ubuntu/libblas3@3.10.0-2ubuntu1#dcb13ff4048030b0e25fe052f50003ceba7cffcac5535b4b163d7499b55aaa54"}, {"ref": "pkg:deb/ubuntu/libquadmath0@12.3.0-1ubuntu1~22.04.2#3d4b165152b7622fc1a38c02780feb474f1cd06859c29178541cd76069430c67"}, {"ref": "pkg:deb/ubuntu/libgfortran5@12.3.0-1ubuntu1~22.04.2#95e03ebf841465c379d80da0d169b65812810ba1488180abfce6a2ab5635f905"}, {"ref": "pkg:deb/ubuntu/liblapack3@3.10.0-2ubuntu1#84ee26e72f2764e439e3420017abb182d44000760819b48495b10fef5cdc39b1"}]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mlx
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|