-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconda-lock.yml
3600 lines (3600 loc) · 112 KB
/
conda-lock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT!
#
# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike
# e.g. `conda env create`, the resulting environment will not change as new package versions become
# available, unless you explicitly update the lock file.
#
# Install this environment as "YOURENV" with:
# conda-lock install -n YOURENV conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile conda-lock.yml --update PACKAGE
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
# conda-lock -f pyproject.toml --lockfile conda-lock.yml
version: 1
metadata:
content_hash:
win-64: b084fe1298c18cd8e75fee82dd27bdf3523d91c83b9c5308de39735088813644
linux-64: 8f5b15c066ac0cd66179baa9a4d664ef41e3b8041aa83ffe0d9487d132a030bc
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
- win-64
sources:
- pyproject.toml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
llvm-openmp: '>=9.0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2
hash:
md5: 562b26ba2e19059551a811e72ab7f793
sha256: 84a66275da3a66e3f3e70e9d8f10496d807d01a9e4ec16cd2274cc5e28c478fc
category: main
optional: false
- name: attr
version: 2.5.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
hash:
md5: d9c69a24ad678ffce24c6543a0176b00
sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
hash:
md5: 62ee74e96c5ebb0af99386de58cf9553
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
hash:
md5: 276e7ffe9ffe39688abc665ef0f45596
sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
category: main
optional: false
- name: ca-certificates
version: 2025.1.31
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda
hash:
md5: 19f3a56f68d2fd06c516076bff482c52
sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189
category: main
optional: false
- name: ca-certificates
version: 2025.1.31
manager: conda
platform: win-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda
hash:
md5: 5304a31607974dfc2110dfbb662ed092
sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155
category: main
optional: false
- name: cpython
version: 3.13.2
manager: conda
platform: linux-64
dependencies:
python: 3.13.2.*
python_abi: '*'
url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.13.2-py313hd8ed1ab_101.conda
hash:
md5: d6be72c63da6e99ac2a1b87b120d135a
sha256: 29bfebfbd410db5e90fa489b239a3a7473bc1ec776bdca24e8c26c68c5654a8c
category: main
optional: false
- name: cuda-crt-tools
version: 12.8.61
manager: conda
platform: linux-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-crt-tools-12.8.61-ha770c72_1.conda
hash:
md5: a5c66c2b4b7fb464129a1163a49c9e53
sha256: 80a2ddb433b3d3b0abbf97febf5504cbda451e19f3a504936ef961209c647238
category: main
optional: false
- name: cuda-cudart
version: 12.8.57
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-cudart_linux-64: 12.8.57
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-12.8.57-h5888daf_1.conda
hash:
md5: cc1b22f4f3734a8b0e80aa874e9f1744
sha256: cc58a25d7ab38d8d27aa88b151dd55406cdfe5429b03419a13af8e9aca2f2596
category: main
optional: false
- name: cuda-cudart
version: 12.8.57
manager: conda
platform: win-64
dependencies:
cuda-cudart_win-64: 12.8.57
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/cuda-cudart-12.8.57-he0c23c2_1.conda
hash:
md5: 997ba4805995b108676834f7872caef8
sha256: cb956c967953f4d8b2194338635fb6575b505e7ef6e8fe2a0cbea42c6619d9d0
category: main
optional: false
- name: cuda-cudart_linux-64
version: 12.8.57
manager: conda
platform: linux-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart_linux-64-12.8.57-h3f2d84a_1.conda
hash:
md5: dff7d2f9a0ee9ab03bfff88fff9621da
sha256: a60faad361f3f21a387d8c684114258de63305703db13c76417b5cf0956205a6
category: main
optional: false
- name: cuda-cudart_win-64
version: 12.8.57
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart_win-64-12.8.57-he0c23c2_1.conda
hash:
md5: d009d3872bdce2269322ab548a7835b5
sha256: d14ac316acd4a604d6011480ee1923c5d9212b0ee543a3251b9d689e033d8847
category: main
optional: false
- name: cuda-cuobjdump
version: 12.8.55
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-nvdisasm: ''
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-cuobjdump-12.8.55-hbd13f7d_0.conda
hash:
md5: 5ab6c95d69311e911bd98d48118ce047
sha256: 424bea1fdfca90acf5c8c255e4b648315e8a07a8065a234dd4b28108d7514d59
category: main
optional: false
- name: cuda-cupti
version: 12.8.57
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-cupti-12.8.57-hbd13f7d_0.conda
hash:
md5: 3a98112d0341979bbb2e75e71b36a4c0
sha256: ff8fb3a51c18a43e8de90df30094e0ae4bb4ae0f35a473aa2f8ab052c5318816
category: main
optional: false
- name: cuda-cupti
version: 12.8.57
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/cuda-cupti-12.8.57-he0c23c2_0.conda
hash:
md5: 2540d6de7aaf5364bb3cf04ff84555d9
sha256: b22df3b2aea6b32959e537e744063eebb0a609cd3234d6f3f34012a4855ff41b
category: main
optional: false
- name: cuda-nvcc-tools
version: 12.8.61
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-crt-tools: 12.8.61
cuda-nvvm-tools: 12.8.61
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=12'
libstdcxx: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-tools-12.8.61-he02047a_1.conda
hash:
md5: fb406ed72a4f4af7acfd591c6787b903
sha256: 2436f383674e29a788f17e8aa5fc9c86819e122725d2291eda63260f15100496
category: main
optional: false
- name: cuda-nvdisasm
version: 12.8.55
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvdisasm-12.8.55-hbd13f7d_0.conda
hash:
md5: 74f716637584db374166bf8b04f57a13
sha256: 53377e888305b28e5c249b423291de37478ea465b2e4ba0247584491999a1284
category: main
optional: false
- name: cuda-nvrtc
version: 12.8.61
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-12.8.61-hbd13f7d_0.conda
hash:
md5: 5e575e77672094ff71a3652230faddbf
sha256: 5d3894f8319670a30228af90a12a90a3aaccc7ee1edb265902a872bc553c8286
category: main
optional: false
- name: cuda-nvrtc
version: 12.8.61
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/cuda-nvrtc-12.8.61-he0c23c2_0.conda
hash:
md5: 941ecb15dffef0887dadd1e128f63bcc
sha256: 400350445c55ca70950f0394c1e92709fb5d0f955472f27a261e007c0e6e4c4c
category: main
optional: false
- name: cuda-nvtx
version: 12.8.55
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvtx-12.8.55-hbd13f7d_0.conda
hash:
md5: 3d2704345c0fb91ab9be2d10af38d550
sha256: 1963697ead002dd6a5e86a8281974cc6e4746ef6199aee8781b3eb9b2732c4a2
category: main
optional: false
- name: cuda-nvvm-tools
version: 12.8.61
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=12'
libstdcxx: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvm-tools-12.8.61-he02047a_1.conda
hash:
md5: f82afee87477746249975726453c56bf
sha256: a604b228e8aa84c3739c1b285857bf2c206a3d0ed7798216f5f651a0ac257ae3
category: main
optional: false
- name: cuda-version
version: '12.8'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-12.8-h5d125a7_3.conda
hash:
md5: 794eaca58880616a508dd6f6eb389266
sha256: 6f93ceb66267e69728d83cf98673221f6b1f95a3514b3a97777cfd0ef8e24f3f
category: main
optional: false
- name: cuda-version
version: '12.8'
manager: conda
platform: win-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-12.8-h5d125a7_3.conda
hash:
md5: 794eaca58880616a508dd6f6eb389266
sha256: 6f93ceb66267e69728d83cf98673221f6b1f95a3514b3a97777cfd0ef8e24f3f
category: main
optional: false
- name: cudnn
version: 9.7.1.26
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.28,<3.0.a0'
cuda-nvrtc: ''
cuda-version: '>=12,<13.0a0'
libcublas: ''
libgcc: '>=13'
libstdcxx: '>=13'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cudnn-9.7.1.26-h969bcc4_0.conda
hash:
md5: e9f44854d4028f87f471fed8ed5a6107
sha256: 0b11063289ce5f85f0bfd3cc7209168b6006dd5b09b094f78aa629d047ce76ef
category: main
optional: false
- name: cudnn
version: 9.7.1.26
manager: conda
platform: win-64
dependencies:
cuda-nvrtc: ''
cuda-version: '>=12,<13.0a0'
libcublas: ''
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/cudnn-9.7.1.26-hffc9a7f_0.conda
hash:
md5: a4d87a0e43c7b713b0654dbc29e4df08
sha256: 296f075a931a6cf72e674b5e0663e28d89ad1f6e502ea5cfe66c44fcbaf1f18e
category: main
optional: false
- name: cusparselt
version: 0.7.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.28,<3.0.a0'
cuda-version: '>=12.6,<13'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/cusparselt-0.7.0.0-hcd2ec93_0.conda
hash:
md5: 30ef91947144181eef7bc6e3fde2f1ed
sha256: edb7af1b963ba9de597695446ad8af37f622d7593c831f2b1f75f333c4d4272a
category: main
optional: false
- name: cusparselt
version: 0.7.0.0
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.6,<13'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/cusparselt-0.7.0.0-hffc9a7f_0.conda
hash:
md5: f7986992e27c65a57bb3eec3f4a9d955
sha256: ebbed4452e4e4f695281cfab36858ad24d13e7f30049e82ce29f6cbdb06fd983
category: main
optional: false
- name: filelock
version: 3.17.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.17.0-pyhd8ed1ab_0.conda
hash:
md5: 7f402b4a1007ee355bc50ce4d24d4a57
sha256: 006d7e5a0c17a6973596dd86bfc80d74ce541144d2aee2d22d46fd41df560a63
category: main
optional: false
- name: filelock
version: 3.17.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.17.0-pyhd8ed1ab_0.conda
hash:
md5: 7f402b4a1007ee355bc50ce4d24d4a57
sha256: 006d7e5a0c17a6973596dd86bfc80d74ce541144d2aee2d22d46fd41df560a63
category: main
optional: false
- name: fsspec
version: 2025.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.2.0-pyhd8ed1ab_0.conda
hash:
md5: d9ea16b71920b03beafc17fcca16df90
sha256: 7433b8469074985b651693778ec6f03d2a23fad9919a515e3b8545996b5e721a
category: main
optional: false
- name: fsspec
version: 2025.2.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.2.0-pyhd8ed1ab_0.conda
hash:
md5: d9ea16b71920b03beafc17fcca16df90
sha256: 7433b8469074985b651693778ec6f03d2a23fad9919a515e3b8545996b5e721a
category: main
optional: false
- name: gmp
version: 6.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
hash:
md5: c94a5994ef49749880a8139cf9afcbe1
sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
category: main
optional: false
- name: gmpy2
version: 2.1.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
gmp: '>=6.3.0,<7.0a0'
libgcc: '>=13'
mpc: '>=1.3.1,<2.0a0'
mpfr: '>=4.2.1,<5.0a0'
python: '>=3.13,<3.14.0a0'
python_abi: 3.13.*
url: https://conda.anaconda.org/conda-forge/linux-64/gmpy2-2.1.5-py313h11186cd_3.conda
hash:
md5: 846a773cdc154eda7b86d7f4427432f2
sha256: 72f64fedd8c4a3b41830d5b88e2ef503eb367ab92ee2cd1235ad5055fb72559b
category: main
optional: false
- name: intel-openmp
version: 2024.2.1
manager: conda
platform: win-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
hash:
md5: 2d89243bfb53652c182a7c73182cce4f
sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209
category: main
optional: false
- name: jinja2
version: 3.1.5
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
hash:
md5: 2752a6ed44105bfb18c9bef1177d9dcd
sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
category: main
optional: false
- name: jinja2
version: 3.1.5
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
markupsafe: '>=2.0'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
hash:
md5: 2752a6ed44105bfb18c9bef1177d9dcd
sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
category: main
optional: false
- name: ld_impl_linux-64
version: '2.43'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
hash:
md5: 048b02e3962f066da18efe3a21b77672
sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
category: main
optional: false
- name: libabseil
version: '20240722.0'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
hash:
md5: 488f260ccda0afaf08acb286db439c2f
sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
category: main
optional: false
- name: libabseil
version: '20240722.0'
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240722.0-cxx17_h4eb7d71_4.conda
hash:
md5: c57ee7f404d1aa84deb3e15852bec6fa
sha256: 846eacff96d36060fe5f7b351e4df6fafae56bf34cc6426497f12b5c13f317cf
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
mkl: '>=2024.2.2,<2025.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-29_h2556b6b_mkl.conda
hash:
md5: 2e89e3bbed2904b20acf7cd0af8e30d9
sha256: 899116419018e591466d619567969819f735b51404fc30da6037a171cd855637
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
mkl: 2024.2.2
url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-29_h576b46c_mkl.conda
hash:
md5: 2d25c162673da78c4329b963452bb0e1
sha256: 4027b6317b6f3d4b6f1b12600d8ca78057a3d2be2144bbc8aaeb3b0ad11b9bbd
category: main
optional: false
- name: libcap
version: '2.71'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
attr: '>=2.5.1,<2.6.0a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda
hash:
md5: dd19e4e3043f6948bd7454b946ee0983
sha256: 2bbefac94f4ab8ff7c64dc843238b6c8edcc9ff1f2b5a0a48407a904dc7ccfb2
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
mkl: '>=2024.2.2,<2025.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-29_h372d94f_mkl.conda
hash:
md5: a0764c205fe58e32d594f9c335612c83
sha256: b7cf8515c94ab59ab7d4086b47d41c32a062fd8d7ec71e60ed4ea281dd9689ae
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
libblas: 3.9.0
mkl: '>=2024.2.2,<2025.0a0'
url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-29_h7ad3364_mkl.conda
hash:
md5: 3d674200e7a1ee1561894501f81f821f
sha256: 983caad08c23475de33810d924a6818354dea2ece2c1a65ccc32e94ed5d29d14
category: main
optional: false
- name: libcublas
version: 12.8.3.14
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.28,<3.0.a0'
cuda-nvrtc: ''
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcublas-12.8.3.14-h9ab20c4_0.conda
hash:
md5: fefa94518dbb28f7d3e6f01a8f289c06
sha256: 4714718b9fefdf2761c3b2e57d7a3ca45ca92b0cede9a04e0a031fffd014a558
category: main
optional: false
- name: libcublas
version: 12.8.3.14
manager: conda
platform: win-64
dependencies:
cuda-nvrtc: ''
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcublas-12.8.3.14-he0c23c2_0.conda
hash:
md5: 2ede1755b97b42f42dc211ebf8c5df3a
sha256: 56bd908aaaa3a1126c3f52c5a4468e97c08718b26c775b8188f460a9cb260893
category: main
optional: false
- name: libcudss0
version: 0.4.0.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12,<13.0a0'
libcublas: ''
libgcc: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libcudss0-0.4.0.2-he55f5cd_2.conda
hash:
md5: 9fd556d98032e9b7a23d323da05b4f45
sha256: 68aa6d56096c0c6eb77a523409dcee8f41c10017579ac8c5d57abb0f37be7325
category: main
optional: false
- name: libcudss0
version: 0.4.0.2
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12,<13.0a0'
libcublas: ''
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcudss0-0.4.0.2-hdb9b9d5_2.conda
hash:
md5: 618a96f22c58d7570796896c836cafdb
sha256: 730ada32bf60912efa38c4719101b3489049b159eed9a3f4e698a9922df8d67a
category: main
optional: false
- name: libcufft
version: 11.3.3.41
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcufft-11.3.3.41-hbd13f7d_0.conda
hash:
md5: 5905bb7c4cc22c49c5f0a459af1822b5
sha256: 7554a3bc2cf8b48e749d376995053f20adb4bf7617198b60027e9be7c54e0a0d
category: main
optional: false
- name: libcufft
version: 11.3.3.41
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcufft-11.3.3.41-he0c23c2_0.conda
hash:
md5: ccf289c81aba235b59ddd22ba5e1b96d
sha256: 14291688ef0893679da008e2a81c9a6784ba4b750960911fa92c701a4fb39597
category: main
optional: false
- name: libcufile
version: 1.13.0.11
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
rdma-core: '>=55.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libcufile-1.13.0.11-h12f29b5_0.conda
hash:
md5: 970a3ef9cf154678046ea33fcfa7e314
sha256: 0552b43a20305ef298686e8240bea4d182782581f1affc735685a66586a51e75
category: main
optional: false
- name: libcurand
version: 10.3.9.55
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcurand-10.3.9.55-hbd13f7d_0.conda
hash:
md5: c12ae11bd1943cc1fbf72c711792b8e2
sha256: edaf0add2ce6742d17639f1551d853cde890cbbff455e2c7f278f7220b7d71d6
category: main
optional: false
- name: libcurand
version: 10.3.9.55
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcurand-10.3.9.55-he0c23c2_0.conda
hash:
md5: 95d055b504c4d8cfd33097fefc46348b
sha256: 2e7abc5246b33ced7eafc68923dff816076dd409fb2b289524b715cddde59779
category: main
optional: false
- name: libcusolver
version: 11.7.2.55
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.28,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libcublas: '>=12.8.3.14,<12.9.0a0'
libcusparse: '>=12.5.7.53,<12.6.0a0'
libgcc: '>=13'
libnvjitlink: '>=12.8.61,<12.9.0a0'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcusolver-11.7.2.55-h9ab20c4_0.conda
hash:
md5: bf6a3b34553d653fb672ddf138ce2d46
sha256: 453b6a5fd4d544a0f73a2f378378d5f5cad643d1a61b4640a4afdf254e11e7c8
category: main
optional: false
- name: libcusolver
version: 11.7.2.55
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
libcublas: '>=12.8.3.14,<12.9.0a0'
libcusparse: '>=12.5.7.53,<12.6.0a0'
libnvjitlink: '>=12.8.61,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcusolver-11.7.2.55-he0c23c2_0.conda
hash:
md5: 8187b9c1258e447ffbd38113f51f0087
sha256: 723799b022107fa0bfc4d4c14af4009173931bf4e299c3452f1c686273e90d74
category: main
optional: false
- name: libcusparse
version: 12.5.7.53
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.8,<12.9.0a0'
libgcc: '>=13'
libnvjitlink: '>=12.8.61,<12.9.0a0'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libcusparse-12.5.7.53-hbd13f7d_0.conda
hash:
md5: 9a7b21116b4c41a5260430077a8635fd
sha256: d58927a789b445d5fe48a446ae7f44598f691591a2e586655dd9c4d07c8923e3
category: main
optional: false
- name: libcusparse
version: 12.5.7.53
manager: conda
platform: win-64
dependencies:
cuda-version: '>=12.8,<12.9.0a0'
libnvjitlink: '>=12.8.61,<12.9.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcusparse-12.5.7.53-he0c23c2_0.conda
hash:
md5: c8efb4ee7d21da688bbc880eb85adc2b
sha256: a558828e912e1ece6a84761e0b29add03a504bf295c3a050008730715ab5cfec
category: main
optional: false
- name: libexpat
version: 2.6.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
hash:
md5: db833e03127376d461e1e13e76f09b6c
sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
category: main
optional: false
- name: libexpat
version: 2.6.4
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
hash:
md5: eb383771c680aa792feb529eaf9df82f
sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12
category: main
optional: false
- name: libffi
version: 3.4.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda
hash:
md5: e3eb7806380bc8bcecba6d749ad5f026
sha256: 67a6c95e33ebc763c1adc3455b9a9ecde901850eb2fceb8e646cc05ef3a663da
category: main
optional: false
- name: libffi
version: 3.4.6
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda
hash:
md5: 31d5107f75b2f204937728417e2e39e5
sha256: 77922d8dd2faf88ac6accaeebf06409d1820486fde710cff6b554d12273e46be
category: main
optional: false
- name: libgcc
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
_openmp_mutex: '>=4.5'
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
hash:
md5: 3cb76c3f10d3bc7f1105b2fc9db984df
sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
category: main
optional: false
- name: libgcc-ng
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
hash:
md5: e39480b9ca41323497b05492a63bc35b
sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
category: main
optional: false
- name: libgcrypt-lib
version: 1.11.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libgpg-error: '>=1.51,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.0-hb9d3cd8_2.conda
hash:
md5: e55712ff40a054134d51b89afca57dbc
sha256: ffc3602f9298da248786f46b00d0594d26a18feeb1b07ce88f3d7d61075e39e6
category: main
optional: false
- name: libgpg-error
version: '1.51'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda
hash:
md5: 168cc19c031482f83b23c4eebbb94e26
sha256: 9e0c09c1faf2151ade3ccb64e52d3c1f2dde85c00e37c6a3e6a8bced2aba68be
category: main
optional: false
- name: libhwloc
version: 2.11.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
libxml2: '>=2.13.4,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
hash:
md5: 804ca9e91bcaea0824a341d55b1684f2
sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69
category: main
optional: false
- name: libhwloc
version: 2.11.2
manager: conda
platform: win-64
dependencies:
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
libxml2: '>=2.13.4,<3.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda
hash:
md5: b87a0ac5ab6495d8225db5dc72dd21cd
sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842
category: main
optional: false
- name: libiconv
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
hash:
md5: d66573916ffcf376178462f1b61c941e
sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9
category: main
optional: false
- name: libiconv
version: '1.17'
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'