gfn2-rs-python 0.4.5__tar.gz

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 (76) hide show
  1. gfn2_rs_python-0.4.5/Cargo.lock +826 -0
  2. gfn2_rs_python-0.4.5/Cargo.toml +66 -0
  3. gfn2_rs_python-0.4.5/LICENSE +674 -0
  4. gfn2_rs_python-0.4.5/PKG-INFO +193 -0
  5. gfn2_rs_python-0.4.5/README.md +173 -0
  6. gfn2_rs_python-0.4.5/THIRD_PARTY_NOTICES.md +15 -0
  7. gfn2_rs_python-0.4.5/docs/python-api.md +249 -0
  8. gfn2_rs_python-0.4.5/docs/rust-api.md +210 -0
  9. gfn2_rs_python-0.4.5/examples/ase_singlepoint.py +11 -0
  10. gfn2_rs_python-0.4.5/examples/ferrocene.xyz +23 -0
  11. gfn2_rs_python-0.4.5/examples/ferrocene_pbc_20a.xyz +23 -0
  12. gfn2_rs_python-0.4.5/examples/ferrocene_pbc_24a.xyz +23 -0
  13. gfn2_rs_python-0.4.5/examples/h2.charges +2 -0
  14. gfn2_rs_python-0.4.5/examples/h2.multipoles +3 -0
  15. gfn2_rs_python-0.4.5/examples/h2.xyz +4 -0
  16. gfn2_rs_python-0.4.5/examples/h2_pbc_12a.xyz +4 -0
  17. gfn2_rs_python-0.4.5/examples/h2_slab.xyz +4 -0
  18. gfn2_rs_python-0.4.5/examples/spin_params_template.txt +15 -0
  19. gfn2_rs_python-0.4.5/examples/water_dimer_distorted.xyz +8 -0
  20. gfn2_rs_python-0.4.5/examples/water_dimer_pbc_16a.xyz +8 -0
  21. gfn2_rs_python-0.4.5/pyproject.toml +33 -0
  22. gfn2_rs_python-0.4.5/python/gfn2_rs/__init__.py +70 -0
  23. gfn2_rs_python-0.4.5/python/gfn2_rs/ase.py +339 -0
  24. gfn2_rs_python-0.4.5/src/aes.rs +2307 -0
  25. gfn2_rs_python-0.4.5/src/basis.rs +460 -0
  26. gfn2_rs_python-0.4.5/src/bin/gfn2_check_elements.rs +70 -0
  27. gfn2_rs_python-0.4.5/src/bin/gfn2_rs.rs +2326 -0
  28. gfn2_rs_python-0.4.5/src/bin/gradient_check.rs +572 -0
  29. gfn2_rs_python-0.4.5/src/bin/hessian_check.rs +665 -0
  30. gfn2_rs_python-0.4.5/src/bin/param_deriv.rs +750 -0
  31. gfn2_rs_python-0.4.5/src/bin/stress_check.rs +609 -0
  32. gfn2_rs_python-0.4.5/src/bin/water_cluster_opt.rs +1147 -0
  33. gfn2_rs_python-0.4.5/src/coordination.rs +444 -0
  34. gfn2_rs_python-0.4.5/src/cphf.rs +8701 -0
  35. gfn2_rs_python-0.4.5/src/cutoff.rs +215 -0
  36. gfn2_rs_python-0.4.5/src/d4_reference.rs +32620 -0
  37. gfn2_rs_python-0.4.5/src/data_tables.rs +250 -0
  38. gfn2_rs_python-0.4.5/src/dispersion.rs +2156 -0
  39. gfn2_rs_python-0.4.5/src/eeqbc.rs +746 -0
  40. gfn2_rs_python-0.4.5/src/eeqbc_mctc_data.rs +5395 -0
  41. gfn2_rs_python-0.4.5/src/eeqbc_params.rs +887 -0
  42. gfn2_rs_python-0.4.5/src/electronic.rs +9985 -0
  43. gfn2_rs_python-0.4.5/src/element_coverage.rs +204 -0
  44. gfn2_rs_python-0.4.5/src/error.rs +42 -0
  45. gfn2_rs_python-0.4.5/src/gradients.rs +356 -0
  46. gfn2_rs_python-0.4.5/src/hessian.rs +14048 -0
  47. gfn2_rs_python-0.4.5/src/hessian_pulay.rs +1361 -0
  48. gfn2_rs_python-0.4.5/src/integrals.rs +485 -0
  49. gfn2_rs_python-0.4.5/src/integrals_second_derivatives.rs +378 -0
  50. gfn2_rs_python-0.4.5/src/ko_ewald.rs +1732 -0
  51. gfn2_rs_python-0.4.5/src/kpoints.rs +691 -0
  52. gfn2_rs_python-0.4.5/src/lattice.rs +389 -0
  53. gfn2_rs_python-0.4.5/src/lib.rs +179 -0
  54. gfn2_rs_python-0.4.5/src/linalg.rs +323 -0
  55. gfn2_rs_python-0.4.5/src/lr_exchange.rs +650 -0
  56. gfn2_rs_python-0.4.5/src/math.rs +148 -0
  57. gfn2_rs_python-0.4.5/src/model.rs +408 -0
  58. gfn2_rs_python-0.4.5/src/multipole.rs +671 -0
  59. gfn2_rs_python-0.4.5/src/native_gradient.rs +2799 -0
  60. gfn2_rs_python-0.4.5/src/neighbor.rs +123 -0
  61. gfn2_rs_python-0.4.5/src/occupations.rs +628 -0
  62. gfn2_rs_python-0.4.5/src/one_center_d.rs +1448 -0
  63. gfn2_rs_python-0.4.5/src/optimizer.rs +572 -0
  64. gfn2_rs_python-0.4.5/src/pairlist.rs +701 -0
  65. gfn2_rs_python-0.4.5/src/params.rs +928 -0
  66. gfn2_rs_python-0.4.5/src/pme.rs +439 -0
  67. gfn2_rs_python-0.4.5/src/profile.rs +154 -0
  68. gfn2_rs_python-0.4.5/src/python.rs +1845 -0
  69. gfn2_rs_python-0.4.5/src/range_separation.rs +880 -0
  70. gfn2_rs_python-0.4.5/src/spin.rs +380 -0
  71. gfn2_rs_python-0.4.5/src/spin_projection.rs +135 -0
  72. gfn2_rs_python-0.4.5/src/sto.rs +908 -0
  73. gfn2_rs_python-0.4.5/src/system.rs +225 -0
  74. gfn2_rs_python-0.4.5/src/tda.rs +5224 -0
  75. gfn2_rs_python-0.4.5/tests/test_cli_scope_runtime.py +261 -0
  76. gfn2_rs_python-0.4.5/tests/test_python_api.py +159 -0
@@ -0,0 +1,826 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.5.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
10
+
11
+ [[package]]
12
+ name = "bitflags"
13
+ version = "2.13.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
16
+
17
+ [[package]]
18
+ name = "bytemuck"
19
+ version = "1.25.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
22
+ dependencies = [
23
+ "bytemuck_derive",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "bytemuck_derive"
28
+ version = "1.10.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
31
+ dependencies = [
32
+ "proc-macro2",
33
+ "quote",
34
+ "syn 2.0.117",
35
+ ]
36
+
37
+ [[package]]
38
+ name = "byteorder"
39
+ version = "1.5.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
42
+
43
+ [[package]]
44
+ name = "cfg-if"
45
+ version = "1.0.4"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
48
+
49
+ [[package]]
50
+ name = "crossbeam-deque"
51
+ version = "0.8.6"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
54
+ dependencies = [
55
+ "crossbeam-epoch",
56
+ "crossbeam-utils",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "crossbeam-epoch"
61
+ version = "0.9.18"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
64
+ dependencies = [
65
+ "crossbeam-utils",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "crossbeam-utils"
70
+ version = "0.8.21"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
73
+
74
+ [[package]]
75
+ name = "crunchy"
76
+ version = "0.2.4"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
79
+
80
+ [[package]]
81
+ name = "defer"
82
+ version = "0.2.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "930c7171c8df9fb1782bdf9b918ed9ed2d33d1d22300abb754f9085bc48bf8e8"
85
+
86
+ [[package]]
87
+ name = "dyn-stack"
88
+ version = "0.13.2"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
91
+ dependencies = [
92
+ "bytemuck",
93
+ "dyn-stack-macros",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "dyn-stack-macros"
98
+ version = "0.1.3"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
101
+
102
+ [[package]]
103
+ name = "either"
104
+ version = "1.16.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
107
+
108
+ [[package]]
109
+ name = "enum-as-inner"
110
+ version = "0.6.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
113
+ dependencies = [
114
+ "heck",
115
+ "proc-macro2",
116
+ "quote",
117
+ "syn 2.0.117",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "equator"
122
+ version = "0.2.2"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
125
+ dependencies = [
126
+ "equator-macro 0.2.1",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "equator"
131
+ version = "0.6.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "02da895aab06bbebefb6b2595f6d637b18c9ff629b4cd840965bb3164e4194b0"
134
+ dependencies = [
135
+ "equator-macro 0.6.0",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "equator-macro"
140
+ version = "0.2.1"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
143
+ dependencies = [
144
+ "proc-macro2",
145
+ "quote",
146
+ "syn 2.0.117",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "equator-macro"
151
+ version = "0.6.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "2b14b339eb76d07f052cdbad76ca7c1310e56173a138095d3bf42a23c06ef5d8"
154
+
155
+ [[package]]
156
+ name = "faer"
157
+ version = "0.24.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "02d2ecfb80b6f8b0c569e36988a052e64b14d8def9d372390b014e8bf79f299a"
160
+ dependencies = [
161
+ "bytemuck",
162
+ "dyn-stack",
163
+ "equator 0.6.0",
164
+ "faer-traits",
165
+ "gemm",
166
+ "generativity",
167
+ "libm",
168
+ "nano-gemm",
169
+ "num-complex",
170
+ "num-traits",
171
+ "private-gemm-x86",
172
+ "pulp",
173
+ "reborrow",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "faer-traits"
178
+ version = "0.24.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "b87d23ed7ab1f26c0cba0e5b9e061a796fbb7dc170fa8bee6970055a1308bb0f"
181
+ dependencies = [
182
+ "bytemuck",
183
+ "dyn-stack",
184
+ "generativity",
185
+ "libm",
186
+ "num-complex",
187
+ "num-traits",
188
+ "pulp",
189
+ "qd",
190
+ "reborrow",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "gemm"
195
+ version = "0.19.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
198
+ dependencies = [
199
+ "dyn-stack",
200
+ "gemm-c32",
201
+ "gemm-c64",
202
+ "gemm-common",
203
+ "gemm-f16",
204
+ "gemm-f32",
205
+ "gemm-f64",
206
+ "num-complex",
207
+ "num-traits",
208
+ "paste",
209
+ "raw-cpuid",
210
+ "seq-macro",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "gemm-c32"
215
+ version = "0.19.0"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
218
+ dependencies = [
219
+ "dyn-stack",
220
+ "gemm-common",
221
+ "num-complex",
222
+ "num-traits",
223
+ "paste",
224
+ "raw-cpuid",
225
+ "seq-macro",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "gemm-c64"
230
+ version = "0.19.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
233
+ dependencies = [
234
+ "dyn-stack",
235
+ "gemm-common",
236
+ "num-complex",
237
+ "num-traits",
238
+ "paste",
239
+ "raw-cpuid",
240
+ "seq-macro",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "gemm-common"
245
+ version = "0.19.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
248
+ dependencies = [
249
+ "bytemuck",
250
+ "dyn-stack",
251
+ "half",
252
+ "libm",
253
+ "num-complex",
254
+ "num-traits",
255
+ "once_cell",
256
+ "paste",
257
+ "pulp",
258
+ "raw-cpuid",
259
+ "seq-macro",
260
+ "sysctl",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "gemm-f16"
265
+ version = "0.19.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
268
+ dependencies = [
269
+ "dyn-stack",
270
+ "gemm-common",
271
+ "gemm-f32",
272
+ "half",
273
+ "num-complex",
274
+ "num-traits",
275
+ "paste",
276
+ "raw-cpuid",
277
+ "seq-macro",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "gemm-f32"
282
+ version = "0.19.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
285
+ dependencies = [
286
+ "dyn-stack",
287
+ "gemm-common",
288
+ "num-complex",
289
+ "num-traits",
290
+ "paste",
291
+ "raw-cpuid",
292
+ "seq-macro",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "gemm-f64"
297
+ version = "0.19.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
300
+ dependencies = [
301
+ "dyn-stack",
302
+ "gemm-common",
303
+ "num-complex",
304
+ "num-traits",
305
+ "paste",
306
+ "raw-cpuid",
307
+ "seq-macro",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "generativity"
312
+ version = "1.2.1"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
315
+
316
+ [[package]]
317
+ name = "gfn2-rs"
318
+ version = "0.4.5"
319
+ dependencies = [
320
+ "faer",
321
+ "libm",
322
+ "pyo3",
323
+ "rayon",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "half"
328
+ version = "2.7.1"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
331
+ dependencies = [
332
+ "bytemuck",
333
+ "cfg-if",
334
+ "crunchy",
335
+ "num-traits",
336
+ "zerocopy",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "heck"
341
+ version = "0.5.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
344
+
345
+ [[package]]
346
+ name = "hermit-abi"
347
+ version = "0.5.2"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
350
+
351
+ [[package]]
352
+ name = "indoc"
353
+ version = "2.0.7"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
356
+ dependencies = [
357
+ "rustversion",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "interpol"
362
+ version = "0.2.1"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "eb58032ba748f4010d15912a1855a8a0b1ba9eaad3395b0c171c09b3b356ae50"
365
+ dependencies = [
366
+ "proc-macro2",
367
+ "quote",
368
+ "syn 1.0.109",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "libc"
373
+ version = "0.2.186"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
376
+
377
+ [[package]]
378
+ name = "libm"
379
+ version = "0.2.16"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
382
+
383
+ [[package]]
384
+ name = "memoffset"
385
+ version = "0.9.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
388
+ dependencies = [
389
+ "autocfg",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "nano-gemm"
394
+ version = "0.2.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "9e04345dc84b498ff89fe0d38543d1f170da9e43a2c2bcee73a0f9069f72d081"
397
+ dependencies = [
398
+ "equator 0.2.2",
399
+ "nano-gemm-c32",
400
+ "nano-gemm-c64",
401
+ "nano-gemm-codegen",
402
+ "nano-gemm-core",
403
+ "nano-gemm-f32",
404
+ "nano-gemm-f64",
405
+ "num-complex",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "nano-gemm-c32"
410
+ version = "0.2.1"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "0775b1e2520e64deee8fc78b7732e3091fb7585017c0b0f9f4b451757bbbc562"
413
+ dependencies = [
414
+ "nano-gemm-codegen",
415
+ "nano-gemm-core",
416
+ "num-complex",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "nano-gemm-c64"
421
+ version = "0.2.1"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "9af49a20d58816e6b5ee65f64142e50edb5eba152678d4bb7377fcbf63f8437a"
424
+ dependencies = [
425
+ "nano-gemm-codegen",
426
+ "nano-gemm-core",
427
+ "num-complex",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "nano-gemm-codegen"
432
+ version = "0.2.1"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "6cc8d495c791627779477a2cf5df60049f5b165342610eb0d76bee5ff5c5d74c"
435
+
436
+ [[package]]
437
+ name = "nano-gemm-core"
438
+ version = "0.2.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "d998dfa644de87a0f8660e5ea511d7cb5c33b5a2d9847b7af57a2565105089f0"
441
+
442
+ [[package]]
443
+ name = "nano-gemm-f32"
444
+ version = "0.2.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "879d962e79bc8952e4ad21ca4845a21132540ed3f5e01184b2ff7f720e666523"
447
+ dependencies = [
448
+ "nano-gemm-codegen",
449
+ "nano-gemm-core",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "nano-gemm-f64"
454
+ version = "0.2.1"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "b9a513473dce7dc00c7e7c318481ca4494034e76997218d8dad51bd9f007a815"
457
+ dependencies = [
458
+ "nano-gemm-codegen",
459
+ "nano-gemm-core",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "num-complex"
464
+ version = "0.4.6"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
467
+ dependencies = [
468
+ "bytemuck",
469
+ "num-traits",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "num-traits"
474
+ version = "0.2.19"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
477
+ dependencies = [
478
+ "autocfg",
479
+ "libm",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "num_cpus"
484
+ version = "1.17.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
487
+ dependencies = [
488
+ "hermit-abi",
489
+ "libc",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "once_cell"
494
+ version = "1.21.4"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
497
+
498
+ [[package]]
499
+ name = "paste"
500
+ version = "1.0.15"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
503
+
504
+ [[package]]
505
+ name = "portable-atomic"
506
+ version = "1.13.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
509
+
510
+ [[package]]
511
+ name = "private-gemm-x86"
512
+ version = "0.1.20"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "0af8c3e5087969c323f667ccb4b789fa0954f5aa650550e38e81cf9108be21b5"
515
+ dependencies = [
516
+ "defer",
517
+ "interpol",
518
+ "num_cpus",
519
+ "raw-cpuid",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "proc-macro2"
524
+ version = "1.0.106"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
527
+ dependencies = [
528
+ "unicode-ident",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "pulp"
533
+ version = "0.22.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
536
+ dependencies = [
537
+ "bytemuck",
538
+ "cfg-if",
539
+ "libm",
540
+ "num-complex",
541
+ "paste",
542
+ "pulp-wasm-simd-flag",
543
+ "raw-cpuid",
544
+ "reborrow",
545
+ "version_check",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "pulp-wasm-simd-flag"
550
+ version = "0.1.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
553
+
554
+ [[package]]
555
+ name = "pyo3"
556
+ version = "0.23.5"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
559
+ dependencies = [
560
+ "cfg-if",
561
+ "indoc",
562
+ "libc",
563
+ "memoffset",
564
+ "once_cell",
565
+ "portable-atomic",
566
+ "pyo3-build-config",
567
+ "pyo3-ffi",
568
+ "pyo3-macros",
569
+ "unindent",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "pyo3-build-config"
574
+ version = "0.23.5"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
577
+ dependencies = [
578
+ "once_cell",
579
+ "target-lexicon",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "pyo3-ffi"
584
+ version = "0.23.5"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
587
+ dependencies = [
588
+ "libc",
589
+ "pyo3-build-config",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "pyo3-macros"
594
+ version = "0.23.5"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
597
+ dependencies = [
598
+ "proc-macro2",
599
+ "pyo3-macros-backend",
600
+ "quote",
601
+ "syn 2.0.117",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "pyo3-macros-backend"
606
+ version = "0.23.5"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
609
+ dependencies = [
610
+ "heck",
611
+ "proc-macro2",
612
+ "pyo3-build-config",
613
+ "quote",
614
+ "syn 2.0.117",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "qd"
619
+ version = "0.8.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "15f1304a5aecdcfe9ee72fbba90aa37b3aa067a69d14cb7f3d9deada0be7c07c"
622
+ dependencies = [
623
+ "bytemuck",
624
+ "libm",
625
+ "num-traits",
626
+ "pulp",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "quote"
631
+ version = "1.0.45"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
634
+ dependencies = [
635
+ "proc-macro2",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "raw-cpuid"
640
+ version = "11.6.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
643
+ dependencies = [
644
+ "bitflags",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "rayon"
649
+ version = "1.12.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
652
+ dependencies = [
653
+ "either",
654
+ "rayon-core",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "rayon-core"
659
+ version = "1.13.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
662
+ dependencies = [
663
+ "crossbeam-deque",
664
+ "crossbeam-utils",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "reborrow"
669
+ version = "0.5.5"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
672
+
673
+ [[package]]
674
+ name = "rustversion"
675
+ version = "1.0.22"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
678
+
679
+ [[package]]
680
+ name = "same-file"
681
+ version = "1.0.6"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
684
+ dependencies = [
685
+ "winapi-util",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "seq-macro"
690
+ version = "0.3.6"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
693
+
694
+ [[package]]
695
+ name = "syn"
696
+ version = "1.0.109"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
699
+ dependencies = [
700
+ "proc-macro2",
701
+ "quote",
702
+ "unicode-ident",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "syn"
707
+ version = "2.0.117"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
710
+ dependencies = [
711
+ "proc-macro2",
712
+ "quote",
713
+ "unicode-ident",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "sysctl"
718
+ version = "0.6.0"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
721
+ dependencies = [
722
+ "bitflags",
723
+ "byteorder",
724
+ "enum-as-inner",
725
+ "libc",
726
+ "thiserror",
727
+ "walkdir",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "target-lexicon"
732
+ version = "0.12.16"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
735
+
736
+ [[package]]
737
+ name = "thiserror"
738
+ version = "1.0.69"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
741
+ dependencies = [
742
+ "thiserror-impl",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "thiserror-impl"
747
+ version = "1.0.69"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
750
+ dependencies = [
751
+ "proc-macro2",
752
+ "quote",
753
+ "syn 2.0.117",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "unicode-ident"
758
+ version = "1.0.24"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
761
+
762
+ [[package]]
763
+ name = "unindent"
764
+ version = "0.2.4"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
767
+
768
+ [[package]]
769
+ name = "version_check"
770
+ version = "0.9.5"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
773
+
774
+ [[package]]
775
+ name = "walkdir"
776
+ version = "2.5.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
779
+ dependencies = [
780
+ "same-file",
781
+ "winapi-util",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "winapi-util"
786
+ version = "0.1.11"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
789
+ dependencies = [
790
+ "windows-sys",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "windows-link"
795
+ version = "0.2.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
798
+
799
+ [[package]]
800
+ name = "windows-sys"
801
+ version = "0.61.2"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
804
+ dependencies = [
805
+ "windows-link",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "zerocopy"
810
+ version = "0.8.52"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
813
+ dependencies = [
814
+ "zerocopy-derive",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "zerocopy-derive"
819
+ version = "0.8.52"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
822
+ dependencies = [
823
+ "proc-macro2",
824
+ "quote",
825
+ "syn 2.0.117",
826
+ ]