bitsandbytes 0.50.0__py3-none-win_arm64.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.
Files changed (54) hide show
  1. bitsandbytes/__init__.py +78 -0
  2. bitsandbytes/__main__.py +4 -0
  3. bitsandbytes/_ops.py +510 -0
  4. bitsandbytes/autograd/__init__.py +0 -0
  5. bitsandbytes/autograd/_functions.py +491 -0
  6. bitsandbytes/backends/__init__.py +0 -0
  7. bitsandbytes/backends/cpu/__init__.py +0 -0
  8. bitsandbytes/backends/cpu/ops.py +580 -0
  9. bitsandbytes/backends/cuda/__init__.py +0 -0
  10. bitsandbytes/backends/cuda/ops.py +1199 -0
  11. bitsandbytes/backends/default/__init__.py +0 -0
  12. bitsandbytes/backends/default/ops.py +632 -0
  13. bitsandbytes/backends/hpu/__init__.py +0 -0
  14. bitsandbytes/backends/hpu/ops.py +53 -0
  15. bitsandbytes/backends/mps/__init__.py +0 -0
  16. bitsandbytes/backends/mps/ops.py +277 -0
  17. bitsandbytes/backends/triton/__init__.py +0 -0
  18. bitsandbytes/backends/triton/kernels_4bit.py +577 -0
  19. bitsandbytes/backends/triton/kernels_8bit_quant.py +195 -0
  20. bitsandbytes/backends/triton/kernels_optim.py +1177 -0
  21. bitsandbytes/backends/triton/ops.py +304 -0
  22. bitsandbytes/backends/utils.py +94 -0
  23. bitsandbytes/backends/xpu/__init__.py +0 -0
  24. bitsandbytes/backends/xpu/ops.py +305 -0
  25. bitsandbytes/cextension.py +405 -0
  26. bitsandbytes/consts.py +12 -0
  27. bitsandbytes/cuda_specs.py +111 -0
  28. bitsandbytes/diagnostics/__init__.py +0 -0
  29. bitsandbytes/diagnostics/cuda.py +193 -0
  30. bitsandbytes/diagnostics/main.py +134 -0
  31. bitsandbytes/diagnostics/utils.py +12 -0
  32. bitsandbytes/functional.py +1810 -0
  33. bitsandbytes/libbitsandbytes_cpu.dll +0 -0
  34. bitsandbytes/nn/__init__.py +19 -0
  35. bitsandbytes/nn/modules.py +1220 -0
  36. bitsandbytes/nn/parametrize.py +206 -0
  37. bitsandbytes/optim/__init__.py +22 -0
  38. bitsandbytes/optim/adagrad.py +187 -0
  39. bitsandbytes/optim/adam.py +346 -0
  40. bitsandbytes/optim/adamw.py +337 -0
  41. bitsandbytes/optim/ademamix.py +410 -0
  42. bitsandbytes/optim/lamb.py +190 -0
  43. bitsandbytes/optim/lars.py +259 -0
  44. bitsandbytes/optim/lion.py +266 -0
  45. bitsandbytes/optim/optimizer.py +756 -0
  46. bitsandbytes/optim/rmsprop.py +170 -0
  47. bitsandbytes/optim/sgd.py +152 -0
  48. bitsandbytes/py.typed +0 -0
  49. bitsandbytes/utils.py +208 -0
  50. bitsandbytes-0.50.0.dist-info/METADATA +288 -0
  51. bitsandbytes-0.50.0.dist-info/RECORD +54 -0
  52. bitsandbytes-0.50.0.dist-info/WHEEL +5 -0
  53. bitsandbytes-0.50.0.dist-info/licenses/LICENSE +21 -0
  54. bitsandbytes-0.50.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,288 @@
1
+ Metadata-Version: 2.4
2
+ Name: bitsandbytes
3
+ Version: 0.50.0
4
+ Summary: k-bit optimizers and matrix multiplication routines.
5
+ Author-email: Tim Dettmers <dettmers@cs.washington.edu>
6
+ Maintainer-email: Titus von Köller <titus@huggingface.co>, Matthew Douglas <matthew.douglas@huggingface.co>
7
+ License-Expression: MIT
8
+ Project-URL: homepage, https://github.com/bitsandbytes-foundation/bitsandbytes
9
+ Project-URL: changelog, https://github.com/bitsandbytes-foundation/bitsandbytes/blob/main/CHANGELOG.md
10
+ Project-URL: docs, https://huggingface.co/docs/bitsandbytes/main
11
+ Project-URL: issues, https://github.com/bitsandbytes-foundation/bitsandbytes/issues
12
+ Keywords: gpu,optimizers,optimization,8-bit,quantization,compression
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: GPU :: NVIDIA CUDA :: 11.8
15
+ Classifier: Environment :: GPU :: NVIDIA CUDA :: 12
16
+ Classifier: Environment :: GPU :: NVIDIA CUDA :: 13
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX :: Linux
20
+ Classifier: Operating System :: MacOS
21
+ Classifier: Operating System :: Microsoft :: Windows
22
+ Classifier: Programming Language :: C++
23
+ Classifier: Programming Language :: Python :: Implementation :: CPython
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: 3.14
29
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
30
+ Requires-Python: >=3.10
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: torch<3,>=2.4
34
+ Requires-Dist: numpy>=1.17
35
+ Requires-Dist: packaging>=20.9
36
+ Provides-Extra: benchmark
37
+ Requires-Dist: pandas; extra == "benchmark"
38
+ Requires-Dist: matplotlib; extra == "benchmark"
39
+ Provides-Extra: docs
40
+ Requires-Dist: hf-doc-builder==0.5.0; extra == "docs"
41
+ Provides-Extra: dev
42
+ Requires-Dist: bitsandbytes[test]; extra == "dev"
43
+ Requires-Dist: build<2,>=1.0.0; extra == "dev"
44
+ Requires-Dist: ruff~=0.14.3; extra == "dev"
45
+ Requires-Dist: pre-commit<4,>=3.5.0; extra == "dev"
46
+ Requires-Dist: wheel<1,>=0.42; extra == "dev"
47
+ Provides-Extra: test
48
+ Requires-Dist: einops~=0.8.0; extra == "test"
49
+ Requires-Dist: lion-pytorch==0.2.3; extra == "test"
50
+ Requires-Dist: pytest~=8.3; extra == "test"
51
+ Requires-Dist: scipy<2,>=1.11.4; extra == "test"
52
+ Requires-Dist: transformers<5,>=4.30.1; extra == "test"
53
+ Dynamic: license-file
54
+
55
+ <p align="center"><img src="https://avatars.githubusercontent.com/u/175231607?s=200&v=4" alt=""></p>
56
+ <h1 align="center">bitsandbytes</h1>
57
+ <p align="center">
58
+ <a href="https://github.com/bitsandbytes-foundation/bitsandbytes/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/bitsandbytes-foundation/bitsandbytes.svg?color=blue"></a>
59
+ <a href="https://pepy.tech/project/bitsandbytes"><img alt="Downloads" src="https://static.pepy.tech/badge/bitsandbytes/month"></a>
60
+ <a href="https://github.com/bitsandbytes-foundation/bitsandbytes/actions/workflows/tests-nightly.yml"><img alt="Nightly Unit Tests" src="https://img.shields.io/github/actions/workflow/status/bitsandbytes-foundation/bitsandbytes/tests-nightly.yml?logo=github&label=Nightly%20Tests"></a>
61
+ <a href="https://github.com/bitsandbytes-foundation/bitsandbytes/releases"><img alt="GitHub Release" src="https://img.shields.io/github/v/release/bitsandbytes-foundation/bitsandbytes"></a>
62
+ <a href="https://pypi.org/project/bitsandbytes/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/bitsandbytes"></a>
63
+ </p>
64
+
65
+ `bitsandbytes` enables accessible large language models via k-bit quantization for PyTorch. We provide three main features for dramatically reducing memory consumption for inference and training:
66
+
67
+ * 8-bit optimizers uses block-wise quantization to maintain 32-bit performance at a small fraction of the memory cost.
68
+ * LLM.int8() or 8-bit quantization enables large language model inference with only half the required memory and without any performance degradation. This method is based on vector-wise quantization to quantize most features to 8-bits and separately treating outliers with 16-bit matrix multiplication.
69
+ * QLoRA or 4-bit quantization enables large language model training with several memory-saving techniques that don't compromise performance. This method quantizes a model to 4-bits and inserts a small set of trainable low-rank adaptation (LoRA) weights to allow training.
70
+
71
+ The library includes quantization primitives for 8-bit & 4-bit operations, through `bitsandbytes.nn.Linear8bitLt` and `bitsandbytes.nn.Linear4bit` and 8-bit optimizers through `bitsandbytes.optim` module.
72
+
73
+ ## System Requirements
74
+ bitsandbytes has the following minimum requirements for all platforms:
75
+
76
+ * Python 3.10+
77
+ * [PyTorch](https://pytorch.org/get-started/locally/) 2.4+
78
+ * _Note: While we aim to provide wide backwards compatibility, we recommend using the latest version of PyTorch for the best experience._
79
+
80
+ #### Accelerator support:
81
+
82
+ <small>Note: this table reflects the status of the current development branch. For the latest stable release, see the
83
+ [document in the 0.49.2 tag](https://github.com/bitsandbytes-foundation/bitsandbytes/blob/0.49.2/README.md#accelerator-support).
84
+ </small>
85
+
86
+ ##### Legend:
87
+ 🚧 = Planned |
88
+ 〰️ = Partially Supported |
89
+ ✅ = Supported |
90
+ ❌ = Not Supported
91
+
92
+ <table>
93
+ <thead>
94
+ <tr>
95
+ <th>Platform</th>
96
+ <th>Accelerator</th>
97
+ <th>Hardware Requirements</th>
98
+ <th>LLM.int8()</th>
99
+ <th>QLoRA 4-bit</th>
100
+ <th>8-bit Optimizers</th>
101
+ </tr>
102
+ </thead>
103
+ <tbody>
104
+ <tr>
105
+ <td colspan="6">🐧 <strong>Linux, glibc >= 2.24</strong></td>
106
+ </tr>
107
+ <tr>
108
+ <td align="right">x86-64</td>
109
+ <td>◻️ CPU</td>
110
+ <td>Minimum: AVX2<br>Optimized: AVX512F, AVX512BF16</td>
111
+ <td>✅</td>
112
+ <td>✅</td>
113
+ <td>✅</td>
114
+ </tr>
115
+ <tr>
116
+ <td></td>
117
+ <td>🟩 NVIDIA GPU <br><code>cuda</code></td>
118
+ <td>SM60+ minimum<br>SM75+ recommended</td>
119
+ <td>✅</td>
120
+ <td>✅</td>
121
+ <td>✅</td>
122
+ </tr>
123
+ <tr>
124
+ <td></td>
125
+ <td>🟥 AMD GPU <br><code>cuda</code></td>
126
+ <td>
127
+ CDNA: gfx908, gfx90a, gfx942, gfx950<br>
128
+ RDNA: gfx103X, gfx110X, gfx115X, gfx120X
129
+ </td>
130
+ <td>✅</td>
131
+ <td>✅</td>
132
+ <td>✅</td>
133
+ </tr>
134
+ <tr>
135
+ <td></td>
136
+ <td>🟦 Intel GPU <br><code>xpu</code></td>
137
+ <td>
138
+ Data Center GPU Max Series<br>
139
+ Arc A-Series (Alchemist)<br>
140
+ Arc B-Series (Battlemage)
141
+ </td>
142
+ <td>✅</td>
143
+ <td>✅</td>
144
+ <td>✅</td>
145
+ </tr>
146
+ <tr>
147
+ <td></td>
148
+ <td>🟪 Intel Gaudi <br><code>hpu</code></td>
149
+ <td>Gaudi2, Gaudi3</td>
150
+ <td>✅</td>
151
+ <td>〰️</td>
152
+ <td>❌</td>
153
+ </tr>
154
+ <tr>
155
+ <td align="right">aarch64</td>
156
+ <td>◻️ CPU</td>
157
+ <td></td>
158
+ <td>✅ *</td>
159
+ <td>✅</td>
160
+ <td>✅</td>
161
+ </tr>
162
+ <tr>
163
+ <td></td>
164
+ <td>🟩 NVIDIA GPU <br><code>cuda</code></td>
165
+ <td>SM75+</td>
166
+ <td>✅</td>
167
+ <td>✅</td>
168
+ <td>✅</td>
169
+ </tr>
170
+ <tr>
171
+ <td colspan="6">🪟 <strong>Windows 11 / Windows Server 2022+</strong></td>
172
+ </tr>
173
+ <tr>
174
+ <td align="right">x86-64</td>
175
+ <td>◻️ CPU</td>
176
+ <td>AVX2</td>
177
+ <td>✅</td>
178
+ <td>✅</td>
179
+ <td>✅</td>
180
+ </tr>
181
+ <tr>
182
+ <td></td>
183
+ <td>🟩 NVIDIA GPU <br><code>cuda</code></td>
184
+ <td>SM60+ minimum<br>SM75+ recommended</td>
185
+ <td>✅</td>
186
+ <td>✅</td>
187
+ <td>✅</td>
188
+ </tr>
189
+ <tr>
190
+ <td></td>
191
+ <td>🟥 AMD GPU <br><code>cuda</code></td>
192
+ <td>
193
+ RDNA: gfx103X, gfx110X, gfx115X, gfx120X
194
+ </td>
195
+ <td>✅</td>
196
+ <td>✅</td>
197
+ <td>✅</td>
198
+ </tr>
199
+ <tr>
200
+ <td></td>
201
+ <td>🟦 Intel GPU <br><code>xpu</code></td>
202
+ <td>
203
+ Arc A-Series (Alchemist) <br>
204
+ Arc B-Series (Battlemage)
205
+ </td>
206
+ <td>✅</td>
207
+ <td>✅</td>
208
+ <td>✅</td>
209
+ </tr>
210
+ <tr>
211
+ <td align="right">arm64</td>
212
+ <td>◻️ CPU</td>
213
+ <td></td>
214
+ <td>✅</td>
215
+ <td>✅</td>
216
+ <td>✅</td>
217
+ </tr>
218
+ <tr>
219
+ <td colspan="6">🍎 <strong>macOS 14+</strong></td>
220
+ </tr>
221
+ <tr>
222
+ <td align="right">arm64</td>
223
+ <td>◻️ CPU</td>
224
+ <td>Apple M1+</td>
225
+ <td>✅ *</td>
226
+ <td>✅</td>
227
+ <td>✅</td>
228
+ </tr>
229
+ <tr>
230
+ <td></td>
231
+ <td>⬜ Metal <br><code>mps</code></td>
232
+ <td>Apple M1+</td>
233
+ <td>✅ *</td>
234
+ <td>✅</td>
235
+ <td>🚧</td>
236
+ </tbody>
237
+ </table>
238
+ <sup>* While supported, these marked features may lack in performance optimizations.</sup>
239
+
240
+ ## :book: Documentation
241
+ * [Official Documentation](https://huggingface.co/docs/bitsandbytes/main)
242
+ * 🤗 [Transformers](https://huggingface.co/docs/transformers/quantization/bitsandbytes)
243
+ * 🤗 [Diffusers](https://huggingface.co/docs/diffusers/quantization/bitsandbytes)
244
+ * 🤗 [PEFT](https://huggingface.co/docs/peft/developer_guides/quantization#quantize-a-model)
245
+
246
+ ## :heart: Sponsors
247
+ The continued maintenance and development of `bitsandbytes` is made possible thanks to the generous support of our sponsors. Their contributions help ensure that we can keep improving the project and delivering valuable updates to the community.
248
+
249
+ <kbd><a href="https://hf.co" target="_blank"><img width="100" src="https://huggingface.co/datasets/huggingface/brand-assets/resolve/main/hf-logo.svg" alt="Hugging Face"></a></kbd>
250
+
251
+ ## License
252
+ `bitsandbytes` is MIT licensed.
253
+
254
+ ## How to cite us
255
+ If you found this library useful, please consider citing our work:
256
+
257
+ ### QLoRA
258
+
259
+ ```bibtex
260
+ @article{dettmers2023qlora,
261
+ title={Qlora: Efficient finetuning of quantized llms},
262
+ author={Dettmers, Tim and Pagnoni, Artidoro and Holtzman, Ari and Zettlemoyer, Luke},
263
+ journal={arXiv preprint arXiv:2305.14314},
264
+ year={2023}
265
+ }
266
+ ```
267
+
268
+ ### LLM.int8()
269
+
270
+ ```bibtex
271
+ @article{dettmers2022llmint8,
272
+ title={LLM.int8(): 8-bit Matrix Multiplication for Transformers at Scale},
273
+ author={Dettmers, Tim and Lewis, Mike and Belkada, Younes and Zettlemoyer, Luke},
274
+ journal={arXiv preprint arXiv:2208.07339},
275
+ year={2022}
276
+ }
277
+ ```
278
+
279
+ ### 8-bit Optimizers
280
+
281
+ ```bibtex
282
+ @article{dettmers2022optimizers,
283
+ title={8-bit Optimizers via Block-wise Quantization},
284
+ author={Dettmers, Tim and Lewis, Mike and Shleifer, Sam and Zettlemoyer, Luke},
285
+ journal={9th International Conference on Learning Representations, ICLR},
286
+ year={2022}
287
+ }
288
+ ```
@@ -0,0 +1,54 @@
1
+ bitsandbytes/__init__.py,sha256=kDfieZyNke1kvCu8cxY_3rAoqO33QLcx-IaTgjTAnwI,2300
2
+ bitsandbytes/__main__.py,sha256=_ObgXmW-NG395jj_oP86gSOw2LgqMtrGBmpjZOiRcuY,94
3
+ bitsandbytes/_ops.py,sha256=zTO6TkHqTscULBL-kMnICUH_LOoT4s9noTrSB95wIw4,20429
4
+ bitsandbytes/cextension.py,sha256=7TjyZFk1w1CTI4SWZDrGMPnVlMVXtpMvDZgAz_e9228,17579
5
+ bitsandbytes/consts.py,sha256=hhASlIvnZUQd4XXo1wlQ86KpSfVSUCW91F7-wVjfjlk,392
6
+ bitsandbytes/cuda_specs.py,sha256=Ep1ZRftiM2rfsDO8FljAnHkbySGEs_WMQeRmjFo4gh0,3347
7
+ bitsandbytes/functional.py,sha256=xX1_1FHgvt_LZSOFb4kUtzDXSMdPL-29Y_vpdY-zc1g,67097
8
+ bitsandbytes/libbitsandbytes_cpu.dll,sha256=Ou59TH_lL6x47LGu69HjCZuMNwV8IuIjcYIJF2Va0ag,25088
9
+ bitsandbytes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ bitsandbytes/utils.py,sha256=vlyJUqa7-9jvDehlniAjzC0bdVE75zbNuGGKDi7cFnQ,7136
11
+ bitsandbytes/autograd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ bitsandbytes/autograd/_functions.py,sha256=mx4hMqLyEM_k7LkntSuaxObTUjOmoZNtJAQU5Sok_Gw,18191
13
+ bitsandbytes/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ bitsandbytes/backends/utils.py,sha256=I8NYpiI6fLBIOfrBOJjdkj2KdOugcR4LJ4O1hv8aXS4,2416
15
+ bitsandbytes/backends/cpu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ bitsandbytes/backends/cpu/ops.py,sha256=_EgYUUGdEHHqzuHljdvwgTtwde-0ve1cJVznfnqMw68,21491
17
+ bitsandbytes/backends/cuda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ bitsandbytes/backends/cuda/ops.py,sha256=ISEXDmxtupbj8C3VY9nKIG8IujIT8ZHOhkdX7dgbvJ8,42972
19
+ bitsandbytes/backends/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ bitsandbytes/backends/default/ops.py,sha256=SchGOud5vlwQFUTTHTDdLyj8xkaJSAsdUXhIgDZGw80,20434
21
+ bitsandbytes/backends/hpu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ bitsandbytes/backends/hpu/ops.py,sha256=j8IqjGLIA9GJAli9XpMH1uf9gm_WdLhCYjhbVW3x0zg,1510
23
+ bitsandbytes/backends/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ bitsandbytes/backends/mps/ops.py,sha256=c1Dmq_yOFliSQGhqnQEpXOHqsW9WspN2Q1JRD56yMmQ,9382
25
+ bitsandbytes/backends/triton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ bitsandbytes/backends/triton/kernels_4bit.py,sha256=UK8KmOtulENhLS1vqlX8HTz7WcC4Q9nl4eL2ILVNiLo,22727
27
+ bitsandbytes/backends/triton/kernels_8bit_quant.py,sha256=HFWa6sz8-D9FujJxbOWgAP373Uv4uz1ZWmjQ6FCvdfs,6737
28
+ bitsandbytes/backends/triton/kernels_optim.py,sha256=I4r6tRxbM5PW2ZCpbZTjAjyqdaO46UkX6lkUbLHJpWY,39862
29
+ bitsandbytes/backends/triton/ops.py,sha256=mk52KiC5kANZkTqh_kQOwybZYweHNOvNCKYlvb6TbSw,10580
30
+ bitsandbytes/backends/xpu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ bitsandbytes/backends/xpu/ops.py,sha256=hx6GBJrEcq5lEEsbOe_oVQLp2yE0YXc9sn9zdLVpB8s,10150
32
+ bitsandbytes/diagnostics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ bitsandbytes/diagnostics/cuda.py,sha256=aHdBmtEzpMi9kqrlc5Ocom-42GFZrum7z-a32hs_lug,7449
34
+ bitsandbytes/diagnostics/main.py,sha256=Hvs6YrcuIMCjCj5rn7bVk0jnF2BLgCEMhA4caZf0Aiw,4336
35
+ bitsandbytes/diagnostics/utils.py,sha256=moc7UuWYEB56YDXIsWj-8okDElRaHjcxXl5Tv0iNTdc,296
36
+ bitsandbytes/nn/__init__.py,sha256=MHhyc2sKbGEQNOb0-tyiDHkmiVI_XYVV3swD1K1Y7uI,451
37
+ bitsandbytes/nn/modules.py,sha256=iQJUedMwq-NQA-tG6gqRGZKXi9QI5RW99gIIi2ESwlA,45482
38
+ bitsandbytes/nn/parametrize.py,sha256=thoaELsxt09Xe6GhOnZL-GI8EqxBWncXEQu-TqLo1lM,8571
39
+ bitsandbytes/optim/__init__.py,sha256=AvB75Z18WaU0EfmE5tH73CwLQxyhLFznOc2VZ97Ovcw,903
40
+ bitsandbytes/optim/adagrad.py,sha256=5KV3AyV-aA6NL9c43owtwe_5tlEwXRDS2WF5v3OQg6M,6961
41
+ bitsandbytes/optim/adam.py,sha256=5Cdz2JmRFNZdF4yfzfrkIqJLrAuqFIlPFxUCDkInupc,13178
42
+ bitsandbytes/optim/adamw.py,sha256=HG1I6N_Gf1H6BbYaELHcgo72mkgp61J_PfGd8UyXDZg,12786
43
+ bitsandbytes/optim/ademamix.py,sha256=6FVGN-U587a_Auo-AMonrdjQN9vGZq_BNNvdveoGX9g,13160
44
+ bitsandbytes/optim/lamb.py,sha256=QPSgNqHsTBEWb_mjKrh4lb-UotLPQY3JP8D9ZMjQDI4,7505
45
+ bitsandbytes/optim/lars.py,sha256=ogP3rgbKebrydIz16uJqnIEhxdpLC8mTgQogVAnpvUA,8585
46
+ bitsandbytes/optim/lion.py,sha256=WmRuaeVntkjkKvIivVh7t3Ac-nqKWFxtZ3NShQc3rJM,8575
47
+ bitsandbytes/optim/optimizer.py,sha256=pS8X47Bo3sgkDDIkGEp8C6stE-ZM_Hx1DvFWExyg9MI,28883
48
+ bitsandbytes/optim/rmsprop.py,sha256=wJel4HgLjCPEHjcB5vPFZF6HleKD4vh1ILYt0dPR0is,6304
49
+ bitsandbytes/optim/sgd.py,sha256=UYydMLYpBnW3nj4tnIq5FYjkhOLXz8YBaISKHQ3go6Q,5068
50
+ bitsandbytes-0.50.0.dist-info/licenses/LICENSE,sha256=8IqUv7C9wdfxy1m62vD4xVGxDbhxGFYi2_H9A2r_qcs,1107
51
+ bitsandbytes-0.50.0.dist-info/METADATA,sha256=LOUNQe0YquzfKPVjvoBIWBi4vGH8RFWX3VuqHGISEHQ,10823
52
+ bitsandbytes-0.50.0.dist-info/WHEEL,sha256=7p5VkX3z5OMy8JR5LmEJwjgGjqYEqLr-eMf5rGGwnq8,98
53
+ bitsandbytes-0.50.0.dist-info/top_level.txt,sha256=bK-Zzu-JyIIh4njm8jTYcbuqX-Z80XTcDal4lXCG0-M,13
54
+ bitsandbytes-0.50.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_arm64
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Facebook, Inc. and its affiliates.
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
+ bitsandbytes