forked from tomas-gajarsky/facetorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpu.conda-lock.yml
1743 lines (1743 loc) · 51.5 KB
/
gpu.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 --file new.gpu.conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile new.gpu.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 gpu.environment.yml --lockfile new.gpu.conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: 8649404504aa9095e646d1e32e95c72e378a7c23b645582fd58eaf86d3ff30ac
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- gpu.environment.yml
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: antlr-python-runtime
version: 4.9.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/antlr-python-runtime-4.9.3-pyhd8ed1ab_1.tar.bz2
hash:
md5: c88eaec8de9ae1fa161205aa18e7a5b1
sha256: b91f8ab4ac2b48972fbee1fc8e092cc452fdf59156e4ff2322c94bbf73650f94
category: main
optional: false
- name: aom
version: 3.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2
hash:
md5: a08150fd2298460cd1fcccf626305642
sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c
category: main
optional: false
- name: beautifulsoup4
version: 4.12.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
soupsieve: '>=1.2'
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
hash:
md5: 332493000404d8411859539a5a630865
sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda
hash:
md5: 1f95722c94f00b69af69a066c7433714
sha256: e22268d81905338570786921b3def88e55f9ed6d0ccdd17d9fbae31a02fbef69
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
hash:
md5: 69b8b6202a07720f448be700e300ccf4
sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
category: main
optional: false
- name: ca-certificates
version: 2024.2.2
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda
hash:
md5: 2f4327a1cbe7f022401b236e915a5fef
sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb
category: main
optional: false
- name: certifi
version: 2024.2.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda
hash:
md5: 0876280e409658fc6f9e75d035960333
sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54
category: main
optional: false
- name: cffi
version: 1.16.0
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
pycparser: ''
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda
hash:
md5: 45846a970e71ac98fd327da5d40a0a2c
sha256: 007e7f69ab45553b7bf11f2c1b8d3f3a13fd42997266a0d57795f41c7d38df36
category: main
optional: false
- name: charset-normalizer
version: 3.3.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
hash:
md5: 7f4a9e3fcff3f6356ae99244a014da6a
sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
category: main
optional: false
- name: codetiming
version: 1.4.0
manager: conda
platform: linux-64
dependencies:
dataclasses: ''
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/codetiming-1.4.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: a1f3168974155fc60367ef1a88e57569
sha256: fe95abca179c43648fb36957d7dd5526c5e28ee04092e303e7b1778c9e964355
category: main
optional: false
- name: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3faab06a954c2a04039983f2c4a50d99
sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
category: main
optional: false
- name: cuda-version
version: '11.8'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-11.8-h70ddcb2_2.conda
hash:
md5: 601900ec9ff06f62f76a247148e52c04
sha256: cb8a81465d5fa1b27e14981b7e1a9be4fc90945261a7459427e7bfb42129e26c
category: main
optional: false
- name: cudatoolkit
version: 11.8.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cudatoolkit-11.8.0-h4ba93d1_13.conda
hash:
md5: eb43f5f1f16e2fad2eba22219c3e499b
sha256: 1797bacaf5350f272413c7f50787c01aef0e8eb955df0f0db144b10be2819752
category: main
optional: false
- name: cudnn
version: 8.8.0.121
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=11.0,<12.0a0'
cudatoolkit: 11.*
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cudnn-8.8.0.121-hcdd5f01_4.conda
hash:
md5: d51a9b97e9ad89deae47bec4293ad0b6
sha256: 3766ed675d40bf656a641c43dd354c06db48bb3c95465ab40cd62777579799a9
category: main
optional: false
- name: dataclasses
version: '0.8'
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2
hash:
md5: a362b2124b06aad102e2ee4581acee7d
sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92
category: main
optional: false
- name: expat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libexpat: 2.5.0
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
hash:
md5: 8b9b5aca60558d02ddaa09d599e55920
sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f
category: main
optional: false
- name: ffmpeg
version: 4.4.2
manager: conda
platform: linux-64
dependencies:
aom: '>=3.5.0,<3.6.0a0'
bzip2: '>=1.0.8,<2.0a0'
fontconfig: '>=2.14.1,<3.0a0'
fonts-conda-ecosystem: ''
freetype: '>=2.12.1,<3.0a0'
gmp: '>=6.2.1,<7.0a0'
gnutls: '>=3.7.8,<3.8.0a0'
lame: '>=3.100,<3.101.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libva: '>=2.16.0,<3.0a0'
libvpx: '>=1.11.0,<1.12.0a0'
libxml2: '>=2.10.3,<3.0.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
openh264: '>=2.3.1,<2.3.2.0a0'
svt-av1: '>=1.4.1,<1.4.2.0a0'
x264: '>=1!164.3095,<1!165'
x265: '>=3.5,<3.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-4.4.2-gpl_h8dda1f0_112.conda
hash:
md5: 3a2af583ab741078cd7336fc16a94c24
sha256: 92ceac7ac2f09846c963b1687a0b72194deefa0920653e9d4ff2b0bcae706523
category: main
optional: false
- name: filelock
version: 3.13.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda
hash:
md5: 0c1729b74a8152fde6a38ba0a2ab9f45
sha256: 4d742d91412d1f163e5399d2b50c5d479694ebcd309127abb549ca3977f89d2b
category: main
optional: false
- name: font-ttf-dejavu-sans-mono
version: '2.37'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
hash:
md5: 0c96522c6bdaed4b1566d11387caaf45
sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
category: main
optional: false
- name: font-ttf-inconsolata
version: '3.000'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
hash:
md5: 34893075a5c9e55cdafac56607368fc6
sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
category: main
optional: false
- name: font-ttf-source-code-pro
version: '2.038'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
hash:
md5: 4d59c254e01d9cde7957100457e2d5fb
sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
category: main
optional: false
- name: font-ttf-ubuntu
version: '0.83'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda
hash:
md5: 6185f640c43843e5ad6fd1c5372c3f80
sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792
category: main
optional: false
- name: fontconfig
version: 2.14.2
manager: conda
platform: linux-64
dependencies:
expat: '>=2.5.0,<3.0a0'
freetype: '>=2.12.1,<3.0a0'
libgcc-ng: '>=12'
libuuid: '>=2.32.1,<3.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda
hash:
md5: 0f69b688f52ff6da70bccb7ff7001d1d
sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83
category: main
optional: false
- name: fonts-conda-ecosystem
version: '1'
manager: conda
platform: linux-64
dependencies:
fonts-conda-forge: ''
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
hash:
md5: fee5683a3f04bd15cbd8318b096a27ab
sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
category: main
optional: false
- name: fonts-conda-forge
version: '1'
manager: conda
platform: linux-64
dependencies:
font-ttf-dejavu-sans-mono: ''
font-ttf-inconsolata: ''
font-ttf-source-code-pro: ''
font-ttf-ubuntu: ''
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
hash:
md5: f766549260d6815b0c52253f1fb1bb29
sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
category: main
optional: false
- name: freetype
version: 2.12.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libpng: '>=1.6.39,<1.7.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
hash:
md5: 9ae35c3d96db2c94ce0cef86efdfa2cb
sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6
category: main
optional: false
- name: gdown
version: 5.1.0
manager: conda
platform: linux-64
dependencies:
beautifulsoup4: ''
filelock: ''
python: '>=3.8'
requests: ''
tqdm: ''
url: https://conda.anaconda.org/conda-forge/noarch/gdown-5.1.0-pyhd8ed1ab_0.conda
hash:
md5: 6f880647c0270648f710f334c60bc76c
sha256: 1ab1e5cf5c851f91abebfc6a6c094bc6e2afa3639e6586f6ff890acc8551a63d
category: main
optional: false
- name: gettext
version: 0.21.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
hash:
md5: 14947d8770185e5153fdd04d4673ed37
sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a
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-h59595ed_0.conda
hash:
md5: 0e33ef437202db431aa5a928248cf2e8
sha256: 2a50495b6bbbacb03107ea0b752d8358d4a40b572d124a8cade068c147f344f5
category: main
optional: false
- name: gnutls
version: 3.7.9
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libidn2: '>=2,<3.0a0'
libstdcxx-ng: '>=12'
libtasn1: '>=4.19.0,<5.0a0'
nettle: '>=3.9.1,<3.10.0a0'
p11-kit: '>=0.24.1,<0.25.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda
hash:
md5: 33eded89024f21659b1975886a4acf70
sha256: 52d824a5d2b8a5566cd469cae6ad6920469b5a15b3e0ddc609dd29151be71be2
category: main
optional: false
- name: googleapis-common-protos
version: 1.62.0
manager: conda
platform: linux-64
dependencies:
protobuf: '>=3.19.5,<5.0.0dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.62.0-pyhd8ed1ab_0.conda
hash:
md5: ca3d0c7ba3a15e943d9c715aba03ae62
sha256: 70da3fc08a742022c666d9807f0caba60be1ddbf09b6642c168001bace18c724
category: main
optional: false
- name: hydra-core
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
antlr-python-runtime: 4.9.*
importlib_resources: ''
omegaconf: '>=2.2,<2.4'
packaging: ''
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/hydra-core-1.3.2-pyhd8ed1ab_0.conda
hash:
md5: 297d09ccdcec5b347d44c88f2b61cf03
sha256: 35044b4bb1059c4ed7d8392b776e663a390ad7a2bb6f7e2f09ecd5e9b5d40b75
category: main
optional: false
- name: icu
version: '73.2'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda
hash:
md5: cc47e1facc155f91abd89b11e48e72ff
sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8
category: main
optional: false
- name: idna
version: '3.6'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.6-pyhd8ed1ab_0.conda
hash:
md5: 1a76f09108576397c41c0b0c5bd84134
sha256: 6ee4c986d69ce61e60a20b2459b6f2027baeba153f0a64995fd3cb47c2cc7e07
category: main
optional: false
- name: importlib_resources
version: 6.1.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=3.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.1-pyhd8ed1ab_0.conda
hash:
md5: 3d5fa25cf42f3f32a12b2d874ace8574
sha256: e584f9ae08fb2d242af0ce7e19e3cd2f85f362d8523119e08f99edb962db99ed
category: main
optional: false
- name: jpeg
version: 9e
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda
hash:
md5: c7a069243e1fbe9a556ed2ec030e6407
sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b
category: main
optional: false
- name: lame
version: '3.100'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
hash:
md5: a8832b479f93521a9e7b5b743803be51
sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
category: main
optional: false
- name: lcms2
version: '2.15'
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9e,<10a'
libgcc-ng: '>=12'
libtiff: '>=4.5.0,<4.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda
hash:
md5: aa8840cdf17ef0c6084d1e24abc7a28b
sha256: 443e926b585528112ec6aa4d85bf087722914ed8d85a2f75ae47c023c55c4238
category: main
optional: false
- name: ld_impl_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
hash:
md5: 7aca3059a1729aa76c597603f10b0dd3
sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
hash:
md5: 76bbff344f0134279f225174e9064c8f
sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
mkl: '>=2022.1.0,<2023.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: 85f61af03fd291dae33150ffe89dc09a
sha256: 24e656f13b402b6fceb88df386768445ab9beb657d451a8e5a88d4b3380cf7a4
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: 361bf757b95488de76c4f123805742d3
sha256: 892ba10508f22310ccfe748df1fd3b6c7f20e7b6f6b79e69ed337863551c1bd8
category: main
optional: false
- name: libdeflate
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda
hash:
md5: 5cc781fd91968b11a8a7fdbee0982676
sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c
category: main
optional: false
- name: libdrm
version: 2.4.114
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libpciaccess: '>=0.17,<0.18.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2
hash:
md5: efb58e80f5d0179a783c4e76c3df3b9c
sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3
category: main
optional: false
- name: libexpat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
hash:
md5: 6305a3dd2752c76335295da4e581f2fd
sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
category: main
optional: false
- name: libffi
version: 3.4.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
category: main
optional: false
- name: libgcc-ng
version: 13.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-ng-13.2.0-h807b86a_5.conda
hash:
md5: d4ff227c46917d3b4565302a2bbb276b
sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4
category: main
optional: false
- name: libhwloc
version: 2.9.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libxml2: '>=2.11.5,<3.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda
hash:
md5: f36ddc11ca46958197a45effdd286e45
sha256: 6950fee24766d03406e0f6f965262a5d98829c71eed8d1004f313892423b559b
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: libidn2
version: 2.3.7
manager: conda
platform: linux-64
dependencies:
gettext: '>=0.21.1,<1.0a0'
libgcc-ng: '>=12'
libunistring: '>=0,<1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda
hash:
md5: 2b7b0d827c6447cc1d85dc06d5b5de46
sha256: 253f9be445c58bf07b39d8f67ac08bccc5010c75a8c2070cddfb6c20e1ca4f4f
category: main
optional: false
- name: liblapack
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: a2f166748917d6d6e4707841ca1f519e
sha256: d6201f860b2d76ed59027e69c2bbad6d1cb211a215ec9705cc487cde488fa1fa
category: main
optional: false
- name: libnsl
version: 2.0.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
hash:
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
category: main
optional: false
- name: libpciaccess
version: '0.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2
hash:
md5: b7463391cf284065294e2941dd41ab95
sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2
category: main
optional: false
- name: libpng
version: 1.6.42
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.42-h2797004_0.conda
hash:
md5: d67729828dc6ff7ba44a61062ad79880
sha256: 1a0c3a4b7fd1e101cb37dd6d2f8b5ec93409c8cae422f04470fe39a01ef59024
category: main
optional: false
- name: libprotobuf
version: 3.20.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.20.3-h3eb15da_0.conda
hash:
md5: af581c55e6ff3a93af3ae710e091a80d
sha256: f9a34009abbaee35f570d0e3f27a9f606e5fedd953bd7b4a6fe17febe86a15a8
category: main
optional: false
- name: libsqlite
version: 3.45.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.1-h2797004_0.conda
hash:
md5: fc4ccadfbf6d4784de88c41704792562
sha256: 1b379d1c652b25d0540251d422ef767472e768fd36b77261045e97f9ba6d3faa
category: main
optional: false
- name: libstdcxx-ng
version: 13.2.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda
hash:
md5: f6f6600d18a4047b54f803cf708b868a
sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777
category: main
optional: false
- name: libtasn1
version: 4.19.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2
hash:
md5: 93840744a8552e9ebf6bb1a5dffc125a
sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8
category: main
optional: false
- name: libtiff
version: 4.5.0
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9e,<10a'
lerc: '>=4.0.0,<5.0a0'
libdeflate: '>=1.17,<1.18.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libwebp-base: '>=1.2.4,<2.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.2,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda
hash:
md5: 2e648a34072eb39d7c4fc2a9981c5f0c
sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee
category: main
optional: false
- name: libunistring
version: 0.9.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
hash:
md5: 7245a044b4a1980ed83196176b78b73a
sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d
category: main
optional: false
- name: libuuid
version: 2.38.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
hash:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
category: main
optional: false
- name: libva
version: 2.18.0
manager: conda
platform: linux-64
dependencies:
libdrm: '>=2.4.114,<2.5.0a0'
libgcc-ng: '>=12'
xorg-libx11: '>=1.8.4,<2.0a0'
xorg-libxext: '>=1.3.4,<2.0a0'
xorg-libxfixes: ''
url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda
hash:
md5: 56e049224de34bbe0478aad422227942
sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b
category: main
optional: false
- name: libvpx
version: 1.11.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
libstdcxx-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.11.0-h9c3ff4c_3.tar.bz2
hash:
md5: ebe18273eebadbb4dfb13f1062e054e9
sha256: e2c2a0bb21db1724af90cab5aa1fb3096db4c11df1ab85178571dcb8395e7a15
category: main
optional: false
- name: libwebp-base
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda
hash:
md5: 30de3fd9b3b602f7473f30e684eeea8c
sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0
category: main
optional: false
- name: libxcb
version: '1.13'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
pthread-stubs: ''
xorg-libxau: ''
xorg-libxdmcp: ''
url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2
hash:
md5: b3653fdc58d03face9724f602218a904
sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9
category: main
optional: false
- name: libxcrypt
version: 4.4.36
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
hash:
md5: 5aa797f8787fe7a17d1b0821485b5adc
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
category: main
optional: false
- name: libxml2
version: 2.12.5
manager: conda
platform: linux-64
dependencies:
icu: '>=73.2,<74.0a0'
libgcc-ng: '>=12'
libiconv: '>=1.17,<2.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
xz: '>=5.2.6,<6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.5-h232c23b_0.conda
hash:
md5: c442ebfda7a475f5e78f1c8e45f1e919
sha256: db9bf97e9e367985204331b58a059ebd5a4e0cb9e1c8754e9ecb23046b7b7bc1
category: main
optional: false
- name: libzlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
hash:
md5: f36c115f1ee199da648e0597ec2047ad
sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
category: main
optional: false
- name: llvm-openmp
version: 17.0.6
manager: conda
platform: linux-64
dependencies:
libzlib: '>=1.2.13,<1.3.0a0'
zstd: '>=1.5.5,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-17.0.6-h4dfa4b3_0.conda
hash:
md5: c1665f9c1c9f6c93d8b4e492a6a39056
sha256: 18a9db4cc139e72e8eac80a34f6536491fe318d3785bc2c35fac42cd00676376
category: main
optional: false
- name: magma
version: 2.5.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17'
_openmp_mutex: '>=4.5'
cudatoolkit: '>=11.2,<12'
libblas: '>=3.9.0,<4.0a0'
libgcc-ng: '>=12'
liblapack: '>=3.9.0,<4.0a0'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/magma-2.5.4-hc72dce7_4.tar.bz2
hash:
md5: 28b66f41a7651afdec24a1e64de25743
sha256: bab08cf461fa12815e66f001bf00424ae59fd9f4091d92594205bc54d4a96663
category: main
optional: false
- name: mkl
version: 2022.2.1
manager: conda
platform: linux-64
dependencies:
_openmp_mutex: '>=4.5'
llvm-openmp: '>=15.0.6'
tbb: 2021.*
url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2022.2.1-h84fe81f_16997.conda
hash:
md5: a7ce56d5757f5b57e7daabe703ade5bb
sha256: 5322750d5e96ff5d96b1457db5fb6b10300f2bc4030545e940e17b57c4e96d00
category: main
optional: false
- name: nccl
version: 2.19.4.1
manager: conda
platform: linux-64
dependencies: