fastbaps 0.1.0__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.
- fastbaps-0.1.0/Cargo.lock +567 -0
- fastbaps-0.1.0/Cargo.toml +12 -0
- fastbaps-0.1.0/LICENSE-APACHE +201 -0
- fastbaps-0.1.0/LICENSE-MIT +21 -0
- fastbaps-0.1.0/PKG-INFO +121 -0
- fastbaps-0.1.0/README.md +92 -0
- fastbaps-0.1.0/crates/fastbaps-core/Cargo.toml +16 -0
- fastbaps-0.1.0/crates/fastbaps-core/README.md +26 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/bhc.rs +419 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/calc_ddk.rs +98 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/lgamma_table.rs +209 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/lib.rs +19 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/likelihood.rs +164 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/logspace.rs +117 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/summarise_clusters.rs +164 -0
- fastbaps-0.1.0/crates/fastbaps-core/src/tree_llk.rs +332 -0
- fastbaps-0.1.0/crates/fastbaps-py/Cargo.toml +19 -0
- fastbaps-0.1.0/crates/fastbaps-py/src/lib.rs +236 -0
- fastbaps-0.1.0/pyproject.toml +46 -0
- fastbaps-0.1.0/python/fastbaps/__init__.py +15 -0
- fastbaps-0.1.0/python/fastbaps/best_baps_partition.py +61 -0
- fastbaps-0.1.0/python/fastbaps/cli.py +55 -0
- fastbaps-0.1.0/python/fastbaps/fast_baps.py +301 -0
- fastbaps-0.1.0/python/fastbaps/import_fasta.py +148 -0
- fastbaps-0.1.0/python/fastbaps/initial_clustering.py +92 -0
- fastbaps-0.1.0/python/fastbaps/optimise_prior.py +138 -0
- fastbaps-0.1.0/python/fastbaps/sparse_data.py +40 -0
|
@@ -0,0 +1,567 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "alga"
|
|
7
|
+
version = "0.9.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"approx 0.3.2",
|
|
12
|
+
"num-complex 0.2.4",
|
|
13
|
+
"num-traits",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "approx"
|
|
18
|
+
version = "0.3.2"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"num-traits",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "approx"
|
|
27
|
+
version = "0.5.1"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"num-traits",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "autocfg"
|
|
36
|
+
version = "1.5.1"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "bytemuck"
|
|
42
|
+
version = "1.25.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "cfg-if"
|
|
48
|
+
version = "1.0.4"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "crossbeam-deque"
|
|
54
|
+
version = "0.8.6"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"crossbeam-epoch",
|
|
59
|
+
"crossbeam-utils",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "crossbeam-epoch"
|
|
64
|
+
version = "0.9.18"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"crossbeam-utils",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "crossbeam-utils"
|
|
73
|
+
version = "0.8.21"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "either"
|
|
79
|
+
version = "1.16.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "fastbaps-core"
|
|
85
|
+
version = "0.1.0"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"ndarray",
|
|
88
|
+
"rayon",
|
|
89
|
+
"sprs",
|
|
90
|
+
"statrs",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "fastbaps-py"
|
|
95
|
+
version = "0.1.0"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"fastbaps-core",
|
|
98
|
+
"ndarray",
|
|
99
|
+
"numpy",
|
|
100
|
+
"pyo3",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "getrandom"
|
|
105
|
+
version = "0.2.17"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"cfg-if",
|
|
110
|
+
"libc",
|
|
111
|
+
"wasi",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "heck"
|
|
116
|
+
version = "0.5.0"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "hermit-abi"
|
|
122
|
+
version = "0.5.2"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "libc"
|
|
128
|
+
version = "0.2.186"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "libm"
|
|
134
|
+
version = "0.2.16"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "matrixmultiply"
|
|
140
|
+
version = "0.3.10"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"autocfg",
|
|
145
|
+
"rawpointer",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "nalgebra"
|
|
150
|
+
version = "0.32.6"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"approx 0.5.1",
|
|
155
|
+
"matrixmultiply",
|
|
156
|
+
"nalgebra-macros",
|
|
157
|
+
"num-complex 0.4.6",
|
|
158
|
+
"num-rational",
|
|
159
|
+
"num-traits",
|
|
160
|
+
"rand",
|
|
161
|
+
"rand_distr",
|
|
162
|
+
"simba",
|
|
163
|
+
"typenum",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "nalgebra-macros"
|
|
168
|
+
version = "0.2.2"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"proc-macro2",
|
|
173
|
+
"quote",
|
|
174
|
+
"syn",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "ndarray"
|
|
179
|
+
version = "0.17.2"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"matrixmultiply",
|
|
184
|
+
"num-complex 0.4.6",
|
|
185
|
+
"num-integer",
|
|
186
|
+
"num-traits",
|
|
187
|
+
"portable-atomic",
|
|
188
|
+
"portable-atomic-util",
|
|
189
|
+
"rawpointer",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "num-complex"
|
|
194
|
+
version = "0.2.4"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"autocfg",
|
|
199
|
+
"num-traits",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "num-complex"
|
|
204
|
+
version = "0.4.6"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"num-traits",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "num-integer"
|
|
213
|
+
version = "0.1.46"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"num-traits",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "num-rational"
|
|
222
|
+
version = "0.4.2"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"num-integer",
|
|
227
|
+
"num-traits",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "num-traits"
|
|
232
|
+
version = "0.2.19"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"autocfg",
|
|
237
|
+
"libm",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "num_cpus"
|
|
242
|
+
version = "1.17.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"hermit-abi",
|
|
247
|
+
"libc",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "numpy"
|
|
252
|
+
version = "0.29.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"libc",
|
|
257
|
+
"ndarray",
|
|
258
|
+
"num-complex 0.4.6",
|
|
259
|
+
"num-integer",
|
|
260
|
+
"num-traits",
|
|
261
|
+
"pyo3",
|
|
262
|
+
"pyo3-build-config",
|
|
263
|
+
"rustc-hash",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "once_cell"
|
|
268
|
+
version = "1.21.4"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "paste"
|
|
274
|
+
version = "1.0.15"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "portable-atomic"
|
|
280
|
+
version = "1.13.1"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "portable-atomic-util"
|
|
286
|
+
version = "0.2.7"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"portable-atomic",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "ppv-lite86"
|
|
295
|
+
version = "0.2.21"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"zerocopy",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "proc-macro2"
|
|
304
|
+
version = "1.0.106"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"unicode-ident",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "pyo3"
|
|
313
|
+
version = "0.29.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"libc",
|
|
318
|
+
"once_cell",
|
|
319
|
+
"portable-atomic",
|
|
320
|
+
"pyo3-build-config",
|
|
321
|
+
"pyo3-ffi",
|
|
322
|
+
"pyo3-macros",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "pyo3-build-config"
|
|
327
|
+
version = "0.29.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"target-lexicon",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "pyo3-ffi"
|
|
336
|
+
version = "0.29.0"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"libc",
|
|
341
|
+
"pyo3-build-config",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "pyo3-macros"
|
|
346
|
+
version = "0.29.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"proc-macro2",
|
|
351
|
+
"pyo3-macros-backend",
|
|
352
|
+
"quote",
|
|
353
|
+
"syn",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "pyo3-macros-backend"
|
|
358
|
+
version = "0.29.0"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"heck",
|
|
363
|
+
"proc-macro2",
|
|
364
|
+
"quote",
|
|
365
|
+
"syn",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "quote"
|
|
370
|
+
version = "1.0.46"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"proc-macro2",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "rand"
|
|
379
|
+
version = "0.8.6"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"libc",
|
|
384
|
+
"rand_chacha",
|
|
385
|
+
"rand_core",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "rand_chacha"
|
|
390
|
+
version = "0.3.1"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"ppv-lite86",
|
|
395
|
+
"rand_core",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "rand_core"
|
|
400
|
+
version = "0.6.4"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"getrandom",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "rand_distr"
|
|
409
|
+
version = "0.4.3"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"num-traits",
|
|
414
|
+
"rand",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "rawpointer"
|
|
419
|
+
version = "0.2.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "rayon"
|
|
425
|
+
version = "1.12.0"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"either",
|
|
430
|
+
"rayon-core",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "rayon-core"
|
|
435
|
+
version = "1.13.0"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"crossbeam-deque",
|
|
440
|
+
"crossbeam-utils",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "rustc-hash"
|
|
445
|
+
version = "2.1.2"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "safe_arch"
|
|
451
|
+
version = "0.7.4"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"bytemuck",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "simba"
|
|
460
|
+
version = "0.8.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"approx 0.5.1",
|
|
465
|
+
"num-complex 0.4.6",
|
|
466
|
+
"num-traits",
|
|
467
|
+
"paste",
|
|
468
|
+
"wide",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "smallvec"
|
|
473
|
+
version = "1.15.2"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "sprs"
|
|
479
|
+
version = "0.11.4"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "6dca58a33be2188d4edc71534f8bafa826e787cc28ca1c47f31be3423f0d6e55"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"alga",
|
|
484
|
+
"ndarray",
|
|
485
|
+
"num-complex 0.4.6",
|
|
486
|
+
"num-traits",
|
|
487
|
+
"num_cpus",
|
|
488
|
+
"rayon",
|
|
489
|
+
"smallvec",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "statrs"
|
|
494
|
+
version = "0.17.1"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "f697a07e4606a0a25c044de247e583a330dbb1731d11bc7350b81f48ad567255"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"approx 0.5.1",
|
|
499
|
+
"nalgebra",
|
|
500
|
+
"num-traits",
|
|
501
|
+
"rand",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "syn"
|
|
506
|
+
version = "2.0.118"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"proc-macro2",
|
|
511
|
+
"quote",
|
|
512
|
+
"unicode-ident",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "target-lexicon"
|
|
517
|
+
version = "0.13.5"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "typenum"
|
|
523
|
+
version = "1.20.1"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "unicode-ident"
|
|
529
|
+
version = "1.0.24"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "wasi"
|
|
535
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "wide"
|
|
541
|
+
version = "0.7.33"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"bytemuck",
|
|
546
|
+
"safe_arch",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "zerocopy"
|
|
551
|
+
version = "0.8.52"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"zerocopy-derive",
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "zerocopy-derive"
|
|
560
|
+
version = "0.8.52"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"proc-macro2",
|
|
565
|
+
"quote",
|
|
566
|
+
"syn",
|
|
567
|
+
]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[workspace]
|
|
2
|
+
members = ["crates/fastbaps-core", "crates/fastbaps-py"]
|
|
3
|
+
resolver = "2"
|
|
4
|
+
|
|
5
|
+
[workspace.package]
|
|
6
|
+
version = "0.1.0"
|
|
7
|
+
edition = "2021"
|
|
8
|
+
license = "MIT OR Apache-2.0"
|
|
9
|
+
repository = "https://github.com/thanhleviet/fastbaps-py"
|
|
10
|
+
|
|
11
|
+
[workspace.dependencies]
|
|
12
|
+
ndarray = "0.17"
|