-
Notifications
You must be signed in to change notification settings - Fork 2
/
conda-lock.yml
1747 lines (1747 loc) · 50.6 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 --file 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 environment.yml --lockfile conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: ee726db1aed7cea8e604eadfa62bab3408d72aad7193e479bd24d8a6ae169258
channels:
- url: nvidia/label/cuda-12.1.0
used_env_vars: []
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- 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: auto-dotenv
version: '1.0'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/auto-dotenv-1.0-hd8ed1ab_0.conda
hash:
md5: 19bbf499e43ef66c26677573caffa1b1
sha256: de3e704b9c03b1b46c1524fb38b9341d251c1c1fef1f737303f03cbaae6b7381
category: main
optional: false
- name: ca-certificates
version: 2023.11.17
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.11.17-hbcca054_0.conda
hash:
md5: 01ffc8d36f9eba0ce0b3c1955fa780ee
sha256: fb4b9f4b7d885002db0b93e22f44b5b03791ef3d4efdc9d0662185a0faafd6b6
category: main
optional: false
- name: cuda-cccl
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cccl-12.1.55-0.tar.bz2
hash:
md5: f8c75fd990d23625997fa398f7e0f597
category: main
optional: false
- name: cuda-cudart
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cudart-12.1.55-0.tar.bz2
hash:
md5: ac2edbff74608d2b362c36e05ef80ff7
category: main
optional: false
- name: cuda-cuobjdump
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cuobjdump-12.1.55-0.tar.bz2
hash:
md5: 07cb2eca34b7b75ab61097930c3a54d7
category: main
optional: false
- name: cuda-cupti
version: 12.1.62
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cupti-12.1.62-0.tar.bz2
hash:
md5: 2ea7cb967e4dbc848d2483db90016d35
category: main
optional: false
- name: cuda-cuxxfilt
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cuxxfilt-12.1.55-0.tar.bz2
hash:
md5: d0fdd644b811df3982a36f76929253ed
category: main
optional: false
- name: cuda-demo-suite
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-demo-suite-12.1.55-0.tar.bz2
hash:
md5: 205e03024ead2d9d3f618bf14d261b1c
category: main
optional: false
- name: cuda-documentation
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-documentation-12.1.55-0.tar.bz2
hash:
md5: b08258eee900d85227b2b39fd1302c0d
category: main
optional: false
- name: cuda-driver-dev
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-driver-dev-12.1.55-0.tar.bz2
hash:
md5: 69f134333a7cdafe9f8a8a6f13b3776b
category: main
optional: false
- name: cuda-gdb
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-gdb-12.1.55-0.tar.bz2
hash:
md5: e35660a578cd86fce6d08a3317109cb0
category: main
optional: false
- name: cuda-nsight
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nsight-12.1.55-0.tar.bz2
hash:
md5: 779742b37c2aa7455f8aa4ba90d7c71b
category: main
optional: false
- name: cuda-nvcc
version: 12.1.66
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvcc-12.1.66-0.tar.bz2
hash:
md5: 759842f3191defa69c006c713ba3c9c3
category: main
optional: false
- name: cuda-nvdisasm
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvdisasm-12.1.55-0.tar.bz2
hash:
md5: 4bddf4b2118d568896e8ba1391d23ebc
category: main
optional: false
- name: cuda-nvml-dev
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvml-dev-12.1.55-0.tar.bz2
hash:
md5: 0cc41e96c967836ad1da7437a8dcf1e4
category: main
optional: false
- name: cuda-nvprof
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvprof-12.1.55-0.tar.bz2
hash:
md5: 7ad55b8bb3ca9e9aef4db467058176b4
category: main
optional: false
- name: cuda-nvprune
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvprune-12.1.55-0.tar.bz2
hash:
md5: 84f6a53b0cdad302f045ac843871789f
category: main
optional: false
- name: cuda-nvrtc
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvrtc-12.1.55-0.tar.bz2
hash:
md5: c0b77cf4cbc0dd94f6a1a78dd4a0cf02
category: main
optional: false
- name: cuda-nvtx
version: 12.1.66
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvtx-12.1.66-0.tar.bz2
hash:
md5: c605e0976ba11bc8929c2ae91a569da4
category: main
optional: false
- name: cuda-opencl
version: 12.1.56
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-opencl-12.1.56-0.tar.bz2
hash:
md5: 5f9163fc6ca27b910d3dbe8053b7b8ae
category: main
optional: false
- name: cuda-profiler-api
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-profiler-api-12.1.55-0.tar.bz2
hash:
md5: 7b32ce0c55e8e525d8c80f78a022b523
category: main
optional: false
- name: cuda-sanitizer-api
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-sanitizer-api-12.1.55-0.tar.bz2
hash:
md5: 616ab8f40c2999d3e6d1a2ab0ba1ed77
category: main
optional: false
- name: kernel-headers_linux-64
version: 2.6.32
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda
hash:
md5: 7ca122655873935e02c91279c5b03c8c
sha256: aaa8aa6dc776d734a6702032588ff3c496721da905366d91162e3654c082aef0
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: libcublas
version: 12.1.0.26
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcublas-12.1.0.26-0.tar.bz2
hash:
md5: 74f872929a02e01ef746a064fa46a80c
category: main
optional: false
- name: libcufft
version: 11.0.2.4
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufft-11.0.2.4-0.tar.bz2
hash:
md5: b53f7ea28a363eb6d218bcbffb9d26aa
category: main
optional: false
- name: libcufile
version: 1.6.0.25
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufile-1.6.0.25-0.tar.bz2
hash:
md5: 3ed21496abc43118bb592e4f3126658e
category: main
optional: false
- name: libcurand
version: 10.3.2.56
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcurand-10.3.2.56-0.tar.bz2
hash:
md5: b7f2c31cbf4f7fbe69584c36d9f02db4
category: main
optional: false
- name: libcusolver
version: 11.4.4.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusolver-11.4.4.55-0.tar.bz2
hash:
md5: 2d2fe4a7af91ec8a1eee7f1f0cf7b050
category: main
optional: false
- name: libcusparse
version: 12.0.2.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusparse-12.0.2.55-0.tar.bz2
hash:
md5: c295ea64ea0654af0cbe833431de6daa
category: main
optional: false
- name: libgcc-devel_linux-64
version: 10.4.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2
hash:
md5: b41d6540a78ba2518655eebcb0e41e20
sha256: a211a8a80846eb0096eeaf7012984b4c58f0c3c8229f6b4f8c58f36cd2d2a3c2
category: main
optional: false
- name: libnpp
version: 12.0.2.50
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnpp-12.0.2.50-0.tar.bz2
hash:
md5: 072e390c1e0e4909bdd7508dd6af1474
category: main
optional: false
- name: libnvjitlink
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvjitlink-12.1.55-0.tar.bz2
hash:
md5: c5024aa008ff6a48f551926d9bc81aa7
category: main
optional: false
- name: libnvjpeg
version: 12.1.0.39
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvjpeg-12.1.0.39-0.tar.bz2
hash:
md5: 53fdfc5a509ca41fbedd684136190594
category: main
optional: false
- name: libnvvm-samples
version: 12.1.55
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvvm-samples-12.1.55-0.tar.bz2
hash:
md5: 3dc6ec1a923f2eeee1a90aa7cf6f2871
category: main
optional: false
- name: libstdcxx-devel_linux-64
version: 10.4.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2
hash:
md5: 9367571bf3218f968a47c010618a9715
sha256: 0ddb167fe0d9d26fd0d5c9cf9afdae91de5c54da43806a21783092edd1d00540
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_3.conda
hash:
md5: 937eaed008f6bf2191c5fe76f87755e9
sha256: 6c6c49efedcc5709a66f19fb6b26b69c6a5245310fd1d9a901fd5e38aaf7f882
category: main
optional: false
- name: nsight-compute
version: 2023.1.0.15
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/nsight-compute-2023.1.0.15-0.tar.bz2
hash:
md5: 45105c239941b9ad3503269564f38714
category: main
optional: false
- name: python_abi
version: '3.9'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-4_cp39.conda
hash:
md5: bfe4b3259a8ac6cdf0037752904da6a7
sha256: 7e0157e35929711e1a986c18a8bfb7a38a2209cfada16b541ebb0481f74376d6
category: main
optional: false
- name: tzdata
version: 2023d
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023d-h0c530f3_0.conda
hash:
md5: 8dee24b8be2d9ff81e7bd4d7d97ff1b0
sha256: 04f2ab3e36f2015841551415bf16bf62933bd94b7085d4be5493b388e95a9c3d
category: main
optional: false
- name: cuda-command-line-tools
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-cupti: '>=12.1.62'
cuda-gdb: '>=12.1.55'
cuda-nvdisasm: '>=12.1.55'
cuda-nvprof: '>=12.1.55'
cuda-nvtx: '>=12.1.66'
cuda-sanitizer-api: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-command-line-tools-12.1.0-0.tar.bz2
hash:
md5: 5b3837bb22b9d8ea2187f56ef1159881
category: main
optional: false
- name: cuda-compiler
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-cuobjdump: '>=12.1.55'
cuda-cuxxfilt: '>=12.1.55'
cuda-nvcc: '>=12.1.66'
cuda-nvprune: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-compiler-12.1.0-0.tar.bz2
hash:
md5: 403e122b537979792ec1f8379839da8f
category: main
optional: false
- name: cuda-cudart-dev
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
cuda-cccl: ''
cuda-cudart: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cudart-dev-12.1.55-0.tar.bz2
hash:
md5: 5ef5f2644c393bc418aa158a842ff39d
category: main
optional: false
- name: cuda-cupti-static
version: 12.1.62
manager: conda
platform: linux-64
dependencies:
cuda-cupti: '>=12.1.62'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cupti-static-12.1.62-0.tar.bz2
hash:
md5: 2bf2a0e60e36cf41d93c6aa683531021
category: main
optional: false
- name: cuda-libraries
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-cudart: '>=12.1.55'
cuda-nvrtc: '>=12.1.55'
cuda-opencl: '>=12.1.56'
libcublas: '>=12.1.0.26'
libcufft: '>=11.0.2.4'
libcufile: '>=1.6.0.25'
libcurand: '>=10.3.2.56'
libcusolver: '>=11.4.4.55'
libcusparse: '>=12.0.2.55'
libnpp: '>=12.0.2.50'
libnvjitlink: '>=12.1.55'
libnvjpeg: '>=12.1.0.39'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-libraries-12.1.0-0.tar.bz2
hash:
md5: 8c08238819848e471a6213db526dbf15
category: main
optional: false
- name: cuda-nsight-compute
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
nsight-compute: '>=2023.1.0.15'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nsight-compute-12.1.0-0.tar.bz2
hash:
md5: c0ff20490199cf54e4128897a3f6e8e4
category: main
optional: false
- name: cuda-nvrtc-dev
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
cuda-nvrtc: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvrtc-dev-12.1.55-0.tar.bz2
hash:
md5: 684f92276c00f84ba5b9e8736bbf101d
category: main
optional: false
- name: cuda-nvvp
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
cuda-nvdisasm: ''
cuda-nvprof: ''
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvvp-12.1.55-0.tar.bz2
hash:
md5: c1a4f84a54a51dc0a7ae9a97ea5874f9
category: main
optional: false
- name: cuda-opencl-dev
version: 12.1.56
manager: conda
platform: linux-64
dependencies:
cuda-opencl: '>=12.1.56'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-opencl-dev-12.1.56-0.tar.bz2
hash:
md5: d5d4030bdce6b72d2a2ade9dd0004634
category: main
optional: false
- name: gds-tools
version: 1.6.0.25
manager: conda
platform: linux-64
dependencies:
libcufile: '>=1.6.0.25'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/gds-tools-1.6.0.25-0.tar.bz2
hash:
md5: 4c930cccfd5170081864e2f9a5b46857
category: main
optional: false
- name: libcublas-dev
version: 12.1.0.26
manager: conda
platform: linux-64
dependencies:
libcublas: '>=12.1.0.26'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcublas-dev-12.1.0.26-0.tar.bz2
hash:
md5: 41600d150d936797554be8c9ecec7570
category: main
optional: false
- name: libcufft-dev
version: 11.0.2.4
manager: conda
platform: linux-64
dependencies:
libcufft: '>=11.0.2.4'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufft-dev-11.0.2.4-0.tar.bz2
hash:
md5: 495aa4c22b1310d07ed07dd50b9d5ba6
category: main
optional: false
- name: libcufile-dev
version: 1.6.0.25
manager: conda
platform: linux-64
dependencies:
libcufile: '>=1.6.0.25'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufile-dev-1.6.0.25-0.tar.bz2
hash:
md5: 0495d25b0b8344cfa9026c1b923fc07c
category: main
optional: false
- name: libcurand-dev
version: 10.3.2.56
manager: conda
platform: linux-64
dependencies:
libcurand: '>=10.3.2.56'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcurand-dev-10.3.2.56-0.tar.bz2
hash:
md5: 6e1dc78078c7a94a81d777ff59c6f0c8
category: main
optional: false
- name: libcusolver-dev
version: 11.4.4.55
manager: conda
platform: linux-64
dependencies:
libcusolver: '>=11.4.4.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusolver-dev-11.4.4.55-0.tar.bz2
hash:
md5: 6609c0761e659b5624211b929593b15a
category: main
optional: false
- name: libcusparse-dev
version: 12.0.2.55
manager: conda
platform: linux-64
dependencies:
libcusparse: '>=12.0.2.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusparse-dev-12.0.2.55-0.tar.bz2
hash:
md5: f4b1cb0bdeabd4269a43fca8a762f0a2
category: main
optional: false
- name: libgomp
version: 13.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_3.conda
hash:
md5: 7124cbb46b13d395bdde68f2d215c989
sha256: 6ebedee39b6bbbc969715d0d7fa4b381cce67e1139862604ffa393f821c08e81
category: main
optional: false
- name: libnpp-dev
version: 12.0.2.50
manager: conda
platform: linux-64
dependencies:
libnpp: '>=12.0.2.50'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnpp-dev-12.0.2.50-0.tar.bz2
hash:
md5: 82198411e06b54727a4faf94fb5c4711
category: main
optional: false
- name: libnvjitlink-dev
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
libnvjitlink: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvjitlink-dev-12.1.55-0.tar.bz2
hash:
md5: dcd3e67024889179439ed8f0ba3a2707
category: main
optional: false
- name: libnvjpeg-dev
version: 12.1.0.39
manager: conda
platform: linux-64
dependencies:
libnvjpeg: '>=12.1.0.39'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvjpeg-dev-12.1.0.39-0.tar.bz2
hash:
md5: 884e98eac2d1e293424ecf3d8f7b7446
category: main
optional: false
- name: sysroot_linux-64
version: '2.12'
manager: conda
platform: linux-64
dependencies:
kernel-headers_linux-64: 2.6.32
url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda
hash:
md5: 071ea8dceff4d30ac511f4a2f8437cd1
sha256: 4c024b2eee24c6da7d3e08723111ec02665c578844c5b3e9e6b38f89000bec41
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
libgomp: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
category: main
optional: false
- name: binutils_impl_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies:
ld_impl_linux-64: '2.40'
sysroot_linux-64: ''
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
hash:
md5: 33084421a8c0af6aef1b439707f7662a
sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d
category: main
optional: false
- name: cuda-cudart-static
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
cuda-cudart-dev: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-cudart-static-12.1.55-0.tar.bz2
hash:
md5: eec1e3234f4096cc61ef5c264fd21a60
category: main
optional: false
- name: cuda-libraries-dev
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-cccl: '>=12.1.55'
cuda-cudart-dev: '>=12.1.55'
cuda-driver-dev: '>=12.1.55'
cuda-nvrtc-dev: '>=12.1.55'
cuda-opencl-dev: '>=12.1.56'
cuda-profiler-api: '>=12.1.55'
libcublas-dev: '>=12.1.0.26'
libcufft-dev: '>=11.0.2.4'
libcufile-dev: '>=1.6.0.25'
libcurand-dev: '>=10.3.2.56'
libcusolver-dev: '>=11.4.4.55'
libcusparse-dev: '>=12.0.2.55'
libnpp-dev: '>=12.0.2.50'
libnvjitlink-dev: '>=12.1.55'
libnvjpeg-dev: '>=12.1.0.39'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-libraries-dev-12.1.0-0.tar.bz2
hash:
md5: 8d41a8fd694dcc628d08ff8b31de5630
category: main
optional: false
- name: cuda-nvrtc-static
version: 12.1.55
manager: conda
platform: linux-64
dependencies:
cuda-nvrtc-dev: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-nvrtc-static-12.1.55-0.tar.bz2
hash:
md5: 44b447a0a3aa7649c31acb23044cb420
category: main
optional: false
- name: cuda-runtime
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-libraries: '>=12.1.0'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-runtime-12.1.0-0.tar.bz2
hash:
md5: 95e8c2f09ec28cce7cdecd6200b5d26e
category: main
optional: false
- name: libcublas-static
version: 12.1.0.26
manager: conda
platform: linux-64
dependencies:
libcublas-dev: '>=12.1.0.26'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcublas-static-12.1.0.26-0.tar.bz2
hash:
md5: 7c444bf26c91e38b982c36b79b99f4a5
category: main
optional: false
- name: libcufft-static
version: 11.0.2.4
manager: conda
platform: linux-64
dependencies:
libcufft-dev: '>=11.0.2.4'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufft-static-11.0.2.4-0.tar.bz2
hash:
md5: 7323b57af26d737d4d45b7b7b011e9e0
category: main
optional: false
- name: libcufile-static
version: 1.6.0.25
manager: conda
platform: linux-64
dependencies:
libcufile-dev: '>=1.6.0.25'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcufile-static-1.6.0.25-0.tar.bz2
hash:
md5: ceafedbf30b2f4a0c7d2f7dc9098b91e
category: main
optional: false
- name: libcurand-static
version: 10.3.2.56
manager: conda
platform: linux-64
dependencies:
libcurand-dev: '>=10.3.2.56'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcurand-static-10.3.2.56-0.tar.bz2
hash:
md5: 4ef15f75149242640800ffece0a5f948
category: main
optional: false
- name: libcusolver-static
version: 11.4.4.55
manager: conda
platform: linux-64
dependencies:
libcusolver-dev: '>=11.4.4.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusolver-static-11.4.4.55-0.tar.bz2
hash:
md5: 2f621ffa78fef4d9c8759a335f9fb7ab
category: main
optional: false
- name: libcusparse-static
version: 12.0.2.55
manager: conda
platform: linux-64
dependencies:
libcusparse-dev: '>=12.0.2.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libcusparse-static-12.0.2.55-0.tar.bz2
hash:
md5: f5c4e451f9981d9c6657f6ac7d42e684
category: main
optional: false
- name: libnpp-static
version: 12.0.2.50
manager: conda
platform: linux-64
dependencies:
libnpp-dev: '>=12.0.2.50'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnpp-static-12.0.2.50-0.tar.bz2
hash:
md5: 9a1fa7617d5ad4e9bcad587538c64f67
category: main
optional: false
- name: libnvjpeg-static
version: 12.1.0.39
manager: conda
platform: linux-64
dependencies:
libnvjpeg-dev: '>=12.1.0.39'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/libnvjpeg-static-12.1.0.39-0.tar.bz2
hash:
md5: 0c4c3f526738a0d570e5440256c9a7ad
category: main
optional: false
- name: cuda-libraries-static
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-cudart-static: '>=12.1.55'
cuda-cupti-static: '>=12.1.62'
cuda-nvrtc-static: '>=12.1.55'
libcublas-static: '>=12.1.0.26'
libcufft-static: '>=11.0.2.4'
libcufile-static: '>=1.6.0.25'
libcurand-static: '>=10.3.2.56'
libcusolver-static: '>=11.4.4.55'
libcusparse-static: '>=12.0.2.55'
libnpp-static: '>=12.0.2.50'
libnvjpeg-static: '>=12.1.0.39'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-libraries-static-12.1.0-0.tar.bz2
hash:
md5: 7cbabea1d56ac1745fb483024cbb7538
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_3.conda
hash:
md5: 23fdf1fef05baeb7eadc2aed5fb0011f
sha256: 5e88f658e07a30ab41b154b42c59f079b168acfa9551a75bdc972099453f4105
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: cuda-visual-tools
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
cuda-libraries-dev: '>=12.1.0'
cuda-libraries-static: '>=12.1.0'
cuda-nsight: '>=12.1.55'
cuda-nsight-compute: '>=12.1.0'
cuda-nvml-dev: '>=12.1.55'
cuda-nvvp: '>=12.1.55'
url: https://conda.anaconda.org/nvidia/label/cuda-12.1.0/linux-64/cuda-visual-tools-12.1.0-0.tar.bz2
hash:
md5: 86e0703d62d7fd92d577794a6e59fe3b
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: 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: libsanitizer
version: 10.4.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=10.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-10.4.0-h5246dfb_19.tar.bz2
hash:
md5: b068ad132a509367bc9e5a200a639429
sha256: 3f47701d3031ada2de72d4b85eaec9007fd6f95ed20e517ad8f55b792e0cb434
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: 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: libzlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'