Newer
Older
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
Date: Tue Oct 31 11:27:32 2023 +0100
* add Abseil/20230125.2-GCCcore-12.2.0,1
* remove ADIOS2/2.7.0-gompi-2020d,1
* remove AlphaFold/2.1.2-fosscuda-2020b-TensorFlow-2.5.0,1
* add AlphaFold/2.3.1-foss-2022a,1
* add AlphaFold/2.3.4-foss-2022a-ColabFold,1
* add AlphaFold/2.3.4-foss-2022a-CUDA-11.7.0-ColabFold,1
* remove AlphaPulldown/0.30.7-fosscuda-2020b,1
* remove Amber/20.11-fosscuda-2020b-AmberTools-21.3,1
* add Amber/22.0-foss-2022a-AmberTools-23.3-CUDA-11.7.0,1
* add Anaconda3/2023.07-2,1
* add ANSYS/2022R1-intel-2020b-alamerini,1
* add ANSYS/22.1-intel-2020b-alamerini,1
* add AOCC/4.1.0-GCCcore-12.2.0,1
* add AOCL/4.1.0-GCCcore-12.2.0,1
* remove apex/20210420-fosscuda-2020b,1
* add archspec/0.1.4-GCCcore-11.3.0,1
* remove Biopython/1.78-fosscuda-2020b,1
* add Biopython/1.79-foss-2022a,1
* add Blender/3.6.5-GCC-10.3.0,1
* remove Boost/1.72.0-gompi-2020a,1
* remove cctbx-base/2020.8-fosscuda-2020b,1
* add Clang/17.0.2-GCCcore-12.2.0,1
* add Clang/17.0.2-GCCcore-12.2.0-CUDA-12.2.0,1
* remove CP2K/8.2-fosscuda-2020b,1
* remove CuPy/8.5.0-fosscuda-2020b,1
* add DFT-D4/3.6.0-intel-2022b-Python-3.10.8,1
* remove ELPA/2020.11.001-fosscuda-2020b,1
* add ELPA/2022.05.001-foss-2022b,1
* add expecttest/0.1.3-GCCcore-12.2.0,1
* add FFmpeg/4.4.2-GCCcore-11.3.0,1
* remove FFTW/3.3.7-gompi-2018a,1
* remove foss/2018a,1
* add Forge/23.0.2,1
* add giflib/5.2.1-GCCcore-12.2.0,1
* remove gompi/2018a,1
* remove gompi/2020d,1
* remove GROMACS/2018.8-fosscuda-2020b-PLUMED-5.6-switch,1
* remove GROMACS/2020.4-fosscuda-2020b-PLUMED-2.7.0-patch,1
* remove GROMACS/2022-foss-2020a-constantph,1
* remove GROMACS/2022-foss-2020a-CUDA-12.0.0-constantph,1
* add GROMACS/2023.3-foss-2022a-CUDA-12.0.0,1
* add GROMACS/2023.3-foss-2022a-CUDA-12.0.0-v2,1
* remove h5py/3.1.0-fosscuda-2020b,1
* remove HDF5/1.12.0-gompi-2020d,1
* add HH-suite/3.3.0-gompi-2022a,1
* add HMMER/3.3.2-gompi-2022a,1
* add hwloc/2.8.0,1
* add hwloc/2.9.1-GCCcore-12.3.0,1
* add Hypre/2.27.0-foss-2022b,1
* remove IMOD/4.11.1-fosscuda-2020b,1
* add impi/2021.4.0-intel-compilers-2022.1.0,1
* add impi/2021.4.0-intel-compilers-2022.2.1,1
* add impi/2021.4.0-intel-compilers-2023.1.0,1
* remove jax/0.2.19-fosscuda-2020b,1
* add jax/0.3.25-foss-2022a,1
* add jax/0.3.25-foss-2022a-CUDA-11.7.0,1
* add Kalign/3.3.5-GCCcore-11.3.0,1
* add kim-api/2.3.0-GCCcore-11.3.0,1
* add LAMMPS/23Jun2022-foss-2022a-kokkos,1
* add LAMMPS/2Aug2023-foss-2021b-CUDA-12.2.0-kokkos,1
* add LAPACK/3.10.0-GCC-12.2.0,1
* add libevent/2.1.11-GCCcore-9.3.0,1
* add libevent/2.1.12,1
* add libevent/2.1.12-GCCcore-12.3.0,1
* add libfabric/1.11.0-GCCcore-9.3.0,1
* add libfabric/1.18.0-GCCcore-12.3.0,1
* remove libgpuarray/0.7.6-fosscuda-2020b,1
* add libpciaccess/0.17-GCCcore-12.3.0,1
* add libwebp/1.3.1-GCCcore-12.2.0,1
* add libxsmm/1.17-GCC-12.2.0,1
* add make/4.3-GCCcore-11.3.0,1
* add make/4.3-GCCcore-9.3.0,1
* remove MaSuRCA/4.0.7-foss-2020a-Perl-5.30.2,1
* add MATLAB/R2023b,1
* remove matplotlib/3.3.3-fosscuda-2020b,1
* add mpi4py/3.1.4-gompi-2022b,1
* remove mrcfile/1.3.0-fosscuda-2020b,1
* remove numba/0.52.0-fosscuda-2020b,1
* remove obspy/1.3.0-fosscuda-2020b,1
* remove OpenBLAS/0.2.20-GCC-6.3.0-2.27,1
* add OpenJPEG/2.5.0-GCCcore-11.3.0,1
* remove OpenMM/7.5.0-fosscuda-2020b,1
* add OpenMM/8.0.0-foss-2022a,1
* add OpenMM/8.0.0-foss-2022a-CUDA-11.7.0,1
* add OpenMolcas/23.06-intel-2022a,1
* add OpenMolcas/23.06-intel-2022a-noGA,1
* remove OpenMPI/3.1.4-GCC-6.3.0-2.27,1
* add OpenMPI/3.1.6-GCC-10.2.0,1
* remove OpenMPI/4.0.5-iccifort-2020.4.304,1
* remove OpenMPI/4.0.5-NVHPC-21.2-CUDA-11.2.2,1
* remove OpenMPI/4.0.5-NVHPC-21.2-CUDA-11.3.0,1
* add OpenMPI/4.1.5-GCC-12.2.0,1
* add OpenMX/3.8-intel-2023a,1
* remove openPMD-api/0.14.4-gompi-2020d,1
* remove ORCA/4.2.1-OpenMPI-3.1.4,1
* add OVITO/3.7.11-gompi-2022a-basic,1
* add OVITO/3.9.2-gompi-2022b-basic,1
* remove PhaseLink/20210503-fosscuda-2020b,1
* add PETSc/3.19.2-foss-2022b,1
* add phono3py/2.7.0-conda,1
* add phonopy/2.20.0-conda,1
* add phonopy/2.20.0-foss-2022a,1
* add Pillow/9.4.0-GCCcore-12.2.0,1
* remove PLUMED/2.5.6-fosscuda-2020b-patch,1
* remove PLUMED/2.5.6-fosscuda-2020b-switch,1
* remove PLUMED/2.7.0-fosscuda-2020b,1
* remove PLUMED/2.7.0-fosscuda-2020b-patch,1
* remove PLUMED/2.7.2-fosscuda-2020b,1
* remove PLUMED/2.8.0-fosscuda-2020b,1
* add PLUMED/2.8.1-foss-2022a,1
* add PLUMED/2.9.0-foss-2022a,1
* add PLUMED/2.9.0-foss-2022a-mpi,1
* add PMIx/3.1.5-GCCcore-9.3.0,1
* add PMIx/3.2.5,1
* add PMIx/4.2.6,1
* add PMIx/4.2.6-GCC-12.2.0,1
* add PMIx/5.0.1,1
* add PnetCDF/1.12.3-gompi-2022a,1
* add poppler/22.12.0-GCC-11.3.0,1
* add protobuf/23.0-GCCcore-12.2.0,1
* add protobuf-python/4.23.0-GCCcore-12.2.0,1
* add pytest-rerunfailures/12.0-GCCcore-12.2.0,1
* add pytest-shard/0.1.2-GCCcore-12.2.0,1
* remove PyTorch/1.10.0-fosscuda-2020b,1
* add PyTorch/1.13.1-foss-2022b,1
* add Qt6/6.5.3-GCCcore-12.2.0,1
* remove ScaLAPACK/2.0.2-gompi-2018a-OpenBLAS-0.2.20,1
* add ScaFaCoS/1.0.4-foss-2022a,1
* remove scikit-learn/0.23.2-fosscuda-2020b,1
* remove SciPy-bundle/2020.11-fosscuda-2020b,1
* add spglib-python/2.0.0-foss-2022a,1
* add SuperLU_DIST/8.1.2-foss-2022b,1
* add SWIG/4.0.2-GCCcore-11.3.0,1
* add tbb/2021.5.0-GCCcore-11.3.0,1
* add TensorFlow/2.11.0-foss-2022a-CUDA-11.7.0,1
* remove TensorFlow/2.4.1-fosscuda-2020b,1
* remove TensorFlow/2.5.0-fosscuda-2020b,1
* add texlive/20230313-GCC-11.3.0,1
* remove Theano/1.1.2-fosscuda-2020b-PyMC,1
* remove torchaudio/0.10.0-fosscuda-2020b-PyTorch-1.10.0,1
* remove torchvision/0.11.3-fosscuda-2020b-PyTorch-1.10.0,1
* add UCC/1.2.0-GCCcore-12.3.0,1
* add UCX/1.14.1-GCCcore-11.3.0,1
* add UCX-CUDA/1.14.1-GCCcore-11.3.0-CUDA-12.2.0,1
* add VASP/6.4.2-intel-2022b,1
* add VASP/6.4.2-intel-2022b-DFT-D4,1
* add VisIt/2.13.3,1
* remove VMD/1.9.4a51-fosscuda-2020b,1
* add Voro++/0.4.6-GCCcore-11.3.0,1
* add VTK/9.2.2-foss-2022a,1
* add Wannier90/3.1.0-intel-2022b-serial,1
* add xorg-macros/1.20.0-GCCcore-12.3.0,1
* add Z3/4.12.2-GCCcore-12.2.0,1
* add zlib/1.2.12-GCCcore-12.3.0,1
Date: Wed Sep 13 13:15:03 2023 +0200
* add arpack-ng/3.8.0-intel-2022a,1
* add pkg-config/0.29.2-GCCcore-11.3.0,1
Date: Wed Sep 13 13:00:03 2023 +0200
* add DFTB+/23.1-intel-2022a,1
* add dftd3-lib/0.9.2-GCC-11.3.0,1
Date: Wed Sep 13 12:30:03 2023 +0200
* add ELSI/2.9.1-intel-2022a,1
* add tblite/0.3.0-intel-2022a,1
Date: Wed Sep 13 10:45:03 2023 +0200
* add ELPA/2022.05.001-intel-2022a,1
Date: Wed Sep 13 10:00:03 2023 +0200
* add dftd3-lib/0.9.2-GCC-12.2.0,1
Date: Wed Sep 13 09:15:03 2023 +0200
* add tblite/0.3.0-intel-2022b,1
Date: Wed Sep 13 09:00:03 2023 +0200
* add OVITO/3.9.2-GCCcore-12.2.0-pro,1
Date: Wed Sep 13 08:30:03 2023 +0200
* add CMake/3.26.3-GCCcore-12.3.0,1
* add double-conversion/3.3.0-GCCcore-12.3.0,1
* add libarchive/3.6.2-GCCcore-12.3.0,1
* add libpng/1.6.39-GCCcore-12.3.0,1
* add Meson/1.1.1-GCCcore-12.3.0,1
* add PCRE2/10.42-GCCcore-12.3.0,1
* add Python/2.7.18-GCCcore-12.3.0,1
* add re2c/3.1-GCCcore-12.3.0,1
Date: Wed Sep 13 08:15:03 2023 +0200
* add gperf/3.1-GCCcore-12.3.0,1
* add Ninja/1.11.1-GCCcore-12.3.0,1
Date: Tue Sep 12 09:00:02 2023 +0200
* add cURL/8.0.1-GCCcore-12.3.0,1
* add expat/2.5.0-GCCcore-12.3.0,1
* add git/2.41.0-GCCcore-12.3.0-nodocs,1
Date: Tue Sep 12 08:45:03 2023 +0200
* add EasyBuild/4.8.1,1
Date: Fri Sep 8 11:00:03 2023 +0200
* add parallel/20230722-GCCcore-12.2.0,1
Date: Thu Sep 7 19:45:03 2023 +0200
* add ANSYS/2023R1-alamerini,1
Date: Thu Sep 7 12:00:03 2023 +0200
* add ANSYS/2023R1-intel-2022a-alamerini,1
Date: Mon Sep 4 15:00:02 2023 +0200
* add MUMPS/5.6.1-foss-2022b-metis,1
Date: Mon Sep 4 14:45:09 2023 +0200
* add ParMETIS/4.0.3-gompi-2022b,1
Date: Mon Sep 4 14:30:03 2023 +0200
* add SuiteSparse/5.13.0-foss-2022b-METIS-5.1.0,1
Date: Mon Sep 4 14:00:03 2023 +0200
* add HDF5/1.10.3-foss-2022b,1
* add MEDCoupling/9.10.0-foss-2022b,1
* add medfile/4.1.1-foss-2022b,1
* add SALOME_CONFIGURATION/9.10.0,1
* add SWIG/4.1.1-GCCcore-12.2.0,1
Date: Mon Sep 4 12:45:03 2023 +0200
* add GCC/12.3.0,1
* add gettext/0.21.1-GCCcore-12.3.0,1
* add gzip/1.12-GCCcore-12.3.0,1
* add ICU/73.2-GCCcore-12.3.0,1
* add libxml2/2.11.4-GCCcore-12.3.0,1
* add lz4/1.9.4-GCCcore-12.3.0,1
* add Python/3.11.3-GCCcore-12.3.0,1
* add Python/3.11.3-GCCcore-12.3.0-test,1
* add Python/3.8.6-GCCcore-10.2.0-alpha,1
* add SQLite/3.33.0-GCCcore-9.3.0,1
* add zstd/1.5.5-GCCcore-12.3.0,1
Date: Mon Sep 4 10:00:02 2023 +0200
* add libffi/3.4.4-GCCcore-12.3.0,1
* add SQLite/3.42.0-GCCcore-12.3.0,1
* add Tcl/8.6.13-GCCcore-12.3.0,1
Date: Mon Sep 4 09:45:03 2023 +0200
* add AlphaPulldown/0.30.7-fosscuda-2020b,1
* add bzip2/1.0.8-GCCcore-12.3.0,1
* add libreadline/8.2-GCCcore-12.3.0,1
* add ncurses/6.4-GCCcore-12.3.0,1
* add UnZip/6.0-GCCcore-12.3.0,1
* add XZ/5.4.2-GCCcore-12.3.0,1
Date: Mon Sep 4 09:30:03 2023 +0200
* remove AlphaPulldown/0.30.7-fosscuda-2020b,1
Date: Fri Sep 1 16:45:03 2023 +0200
* add ORCA/5.0.3-foss-2022a,1
Date: Fri Sep 1 16:15:03 2023 +0200
* add ORCA/5.0.3-foss-2022b,1
Date: Tue Aug 29 09:30:03 2023 +0200
* add PSI4/1.8.1-foss-2022b,1
Date: Tue Aug 29 08:45:03 2023 +0200
* add networkx/3.1-foss-2022b,1
* add psutil/5.9.5-GCCcore-12.2.0,1
Date: Mon Aug 28 11:45:03 2023 +0200
* add libxc/6.1.0-GCC-12.2.0,1
Date: Mon Aug 28 11:15:03 2023 +0200
* add pytest/7.2.2-GCCcore-12.2.0,1
Date: Mon Aug 28 09:15:03 2023 +0200
* add CheMPS2/1.8.12-foss-2022b,1
Date: Mon Aug 28 08:45:03 2023 +0200
* add xtb/6.5.1-foss-2022a,1
Date: Wed Aug 23 11:15:02 2023 +0200
* add imkl-FFTW/2023.1.0-iimpi-2023a,1
* add intel/2023a,1
Date: Wed Aug 23 11:00:03 2023 +0200
* add iimpi/2023a,1
* add imkl/2023.1.0,1
* add impi/2021.9.0-intel-compilers-2023.1.0,1
* add intel-compilers/2023.1.0,1
Date: Tue Aug 22 13:15:04 2023 +0200
* add Autoconf/2.71,1
* add Automake/1.16.5,1
* add Autotools/20220317,1
* add libtool/2.4.7,1
* add NCCL/2.18.3-NVHPC-23.7-CUDA-12.2.0,1
* add numactl/2.0.16,1
* add NVHPC/23.7,1
Date: Thu Aug 17 14:00:04 2023 +0200
* add NCCL/2.12.12-CUDA-12.2.0,1
* add NCCL/2.12.12-GCCcore-12.2.0-CUDA-12.2.0,1
* add NCCL/2.18.3-CUDA-12.2.0,1
Date: Thu Aug 17 13:45:03 2023 +0200
* add VASP/6.4.2-NVHPC-23.5-CUDA-12.2.0,1
Date: Thu Aug 17 13:30:04 2023 +0200
* remove OpenMPI/4.1.5-NVHPC-23.5,1
Date: Thu Aug 17 13:15:03 2023 +0200
* add NCCL/2.18.3-GCCcore-12.2.0-CUDA-12.2.0,1
Date: Thu Aug 17 12:00:04 2023 +0200
* add FFTW.MPI/3.3.10-NVHPC-23.5-CUDA-12.2.0,1
* add ScaLAPACK/3.0-NVHPC-23.5-CUDA-12.2.0,1
Date: Thu Aug 17 11:45:03 2023 +0200
* add OpenMPI/4.1.5-NVHPC-23.5-CUDA-12.2.0,1
Date: Thu Aug 17 11:00:04 2023 +0200
* add FFTW/3.3.10-NVHPC-23.5-CUDA-12.2.0,1
Date: Thu Aug 17 10:45:02 2023 +0200
* add HDF5/1.14.0-NVHPC-23.5,1
Date: Thu Aug 17 10:30:05 2023 +0200
* add BLIS/3.1-GCCcore-12.2.0-amd,1
* add libFLAME/5.2.0-GCCcore-12.2.0,1
* add QD/2.3.17-NVHPC-23.5,1
* add ScaLAPACK/3.0-NVHPC-23.5,1
Date: Wed Aug 16 11:15:02 2023 +0200
* add AlphaPulldown/0.30.7-fosscuda-2020b,1
Date: Tue Aug 15 12:30:02 2023 +0200
* add cctbx-base/2020.8-fosscuda-2020b,1
* add mrcfile/1.3.0-fosscuda-2020b,1
* add TensorFlow/2.4.1-fosscuda-2020b,1
Date: Tue Aug 15 10:30:04 2023 +0200
* add OpenMM/7.5.0-fosscuda-2020b,1
Date: Mon Aug 14 13:15:03 2023 +0200
* add AlphaPulldown/0.30.7-foss-2020b,1
Date: Mon Aug 14 12:45:02 2023 +0200
* add IPython/7.18.1-GCCcore-10.2.0,1
* add JupyterLab/2.2.8-GCCcore-10.2.0,1
* add libsodium/1.0.18-GCCcore-10.2.0,1
* add OpenPGM/5.2.122-GCCcore-10.2.0,1
* add TensorFlow/2.4.1-foss-2020b,1
* add tqdm/4.56.2-GCCcore-10.2.0,1
* add ZeroMQ/4.3.3-GCCcore-10.2.0,1
Date: Mon Aug 14 10:30:04 2023 +0200
* add h5py/3.1.0-foss-2020b,1
Date: Mon Aug 14 10:15:02 2023 +0200
* add Biopython/1.78-foss-2020b,1
* add cctbx-base/2020.8-foss-2020b,1
* add jax/0.2.19-foss-2020b,1
* add LIBSVM/3.25-GCCcore-10.2.0,1
* add mrcfile/1.3.0-foss-2020b,1
Date: Mon Aug 14 09:30:05 2023 +0200
* add OpenMM/7.5.0-foss-2020b,1
Date: Thu Aug 10 13:15:02 2023 +0200
* add DMTCP/3.0.0-GCCcore-11.3.0,1
Date: Wed Aug 9 11:45:02 2023 +0200
* add FFTW/3.3.10-NVHPC-23.5,1
Date: Tue Aug 8 20:45:02 2023 +0200
* add OpenMPI/4.1.5-NVHPC-23.5,1
Date: Tue Aug 8 20:30:03 2023 +0200
* remove OpenMPI/4.1.5-NVHPC-23.5,1
Date: Tue Aug 8 12:30:03 2023 +0200
* add UCC/1.1.0-GCCcore-12.2.0,1
Date: Tue Aug 8 12:15:03 2023 +0200
* remove UCC/1.1.0-GCCcore-12.2.0,1
Date: Tue Aug 8 12:00:10 2023 +0200
* add OpenMPI/4.1.5-NVHPC-23.5,1
Date: Tue Aug 8 11:00:03 2023 +0200
* add UCX-CUDA/1.14.1-GCCcore-12.2.0-CUDA-12.2.0,1
Date: Tue Aug 8 10:45:03 2023 +0200
* add UCX/1.14.1-GCCcore-12.2.0,1
* remove UCX-CUDA/1.14.1-GCCcore-12.2.0-CUDA-12.2.0,1
Date: Tue Aug 8 10:15:03 2023 +0200
* remove UCX/1.14.1-GCCcore-12.2.0,1
Date: Tue Aug 8 10:00:02 2023 +0200
* add NCCL/2.16.2-GCCcore-12.2.0-CUDA-12.2.0,1
* add UCC-CUDA/1.1.0-GCCcore-12.2.0-CUDA-12.2.0,1
Date: Tue Aug 8 09:45:02 2023 +0200
* add UCX/1.14.0-GCCcore-12.2.0,1
* add UCX/1.14.1-GCCcore-12.2.0,1
* add UCX-CUDA/1.14.1-GCCcore-12.2.0-CUDA-12.2.0,1
Date: Mon Aug 7 08:30:03 2023 +0200
* add NVSHMEM/2.7.0-gompi-2022a-CUDA-11.7.0,1
Date: Fri Jul 28 10:45:03 2023 +0200
* add cst-studio/2019,1
* add libxml2/2.9.9,1
* add libxslt/1.1.33,1
Date: Wed Jul 26 10:30:03 2023 +0200
* add LAre3d/20230726-intel-2022b,1
Date: Wed Jul 26 09:30:03 2023 +0200
* add CUDA/12.2.0,1
Date: Wed Jul 26 09:15:03 2023 +0200
* add Autoconf/2.71-GCCcore-12.3.0,1
* add Automake/1.16.5-GCCcore-12.3.0,1
* add Autotools/20220317-GCCcore-12.3.0,1
* add binutils/2.40-GCCcore-12.3.0,1
* add flex/2.6.4-GCCcore-12.3.0,1
* add GDRCopy/2.3.1-GCCcore-12.3.0,1
* add libtool/2.4.7-GCCcore-12.3.0,1
* add NCCL/2.18.3-GCCcore-12.3.0-CUDA-12.1.1,1
* add numactl/2.0.16-GCCcore-12.3.0,1
* add Perl/5.36.1-GCCcore-12.3.0,1
* add pkgconf/1.9.5-GCCcore-12.3.0,1
* add UCX/1.14.1-GCCcore-12.3.0,1
* add UCX-CUDA/1.14.1-GCCcore-12.3.0-CUDA-12.1.1,1
* add VisIt/3.3.3,1
Date: Wed Jul 26 09:00:03 2023 +0200
* add Bison/3.8.2-GCCcore-12.3.0,1
* add GCCcore/12.3.0,1
* add help2man/1.49.3-GCCcore-12.3.0,1
* add M4/1.4.19-GCCcore-12.3.0,1
* add zlib/1.2.13-GCCcore-12.3.0,1
Date: Wed Jul 26 08:30:02 2023 +0200
* add binutils/2.40,1
* add EasyBuild/4.8.0,1
* add zlib/1.2.13,1
Date: Mon Jul 17 12:45:05 2023 +0200
* add GROMACS/2022-foss-2020a-CUDA-12.0.0-constantph,1
Date: Mon Jul 17 10:15:10 2023 +0200
* add GROMACS/2023.1-foss-2022a,1
Date: Mon Jul 17 09:45:06 2023 +0200
* add GROMACS/2023.1-foss-2022a-CUDA-12.0.0,1
Date: Mon Jul 17 09:15:06 2023 +0200
* add CMake/3.24.3-GCCcore-11.3.0,1
* add UCX-CUDA/1.12.1-GCCcore-11.3.0-CUDA-12.0.0,1
Date: Thu Jul 13 12:00:03 2023 +0200
* add HyperQueue/0.16.0,1
Date: Thu Jul 13 09:15:03 2023 +0200
* add LAMMPS/23Jun2022-foss-2021b-kokkos-SNAP,1
Date: Thu Jul 13 09:00:03 2023 +0200
* add CUDA/12.1.1,1
* add cuDNN/8.9.2.26-CUDA-12.1.1,1
Date: Thu Jul 13 08:45:03 2023 +0200
* add cuDNN/8.8.0.121-CUDA-12.0.0,1
Date: Tue Jul 11 15:15:03 2023 +0200
* add Amber/22.0-foss-2021b-AmberTools-23.3,1
Date: Tue Jul 11 12:00:03 2023 +0200
* add matplotlib/3.4.3-foss-2021b,1
* add Qhull/2020.2-GCCcore-11.2.0,1
* add Tkinter/3.9.6-GCCcore-11.2.0,1
Date: Tue Jul 11 11:45:02 2023 +0200
* add Pillow/8.3.2-GCCcore-11.2.0,1
* add PnetCDF/1.12.3-gompi-2021b,1
* add Tk/8.6.11-GCCcore-11.2.0,1
Date: Tue Jul 11 11:30:03 2023 +0200
* add cppy/1.1.0-GCCcore-11.2.0,1
* add netCDF-Fortran/4.5.3-gompi-2021b,1
Date: Thu Jun 29 12:30:03 2023 +0200
* add GDB/13.2-GCCcore-12.2.0,1
* add ISL/0.24-GCCcore-12.2.0,1
* add makeinfo/6.8-GCCcore-12.2.0,1
Date: Thu Jun 29 12:15:03 2023 +0200
* add ISL/0.24,1
* add MPC/1.2.1-GCCcore-12.2.0,1
Date: Thu Jun 29 11:45:03 2023 +0200
* add GMP/6.2.1,1
Date: Tue Jun 13 13:45:03 2023 +0200
* add gperftools/2.10-GCCcore-12.2.0,1
* add OpenBabel/3.1.1-gompi-2022b,1
Date: Tue Jun 13 13:30:03 2023 +0200
* add ANN/1.1.2-GCC-12.2.0,1
Date: Tue Jun 13 13:15:02 2023 +0200
* add LEMON/1.3.1-GCC-12.2.0,1
Date: Tue Jun 13 13:00:03 2023 +0200
* add OpenBabel/3.1.1-GCC-12.2.0,1
Date: Tue Jun 13 10:15:03 2023 +0200
* add CoordgenLibs/3.0.1-gompi-2022b,1
* add maeparser/1.3.0-gompi-2022b,1
* add PCRE/8.45-GCCcore-12.2.0,1
* add RapidJSON/1.1.0-GCCcore-12.2.0,1
* add SWIG/4.0.2-GCCcore-12.2.0,1
Date: Tue Jun 13 10:00:03 2023 +0200
* add Cgicc/3.2.19-GCC-12.2.0,1
* add JsonCpp/1.9.5-GCCcore-12.2.0,1
Date: Tue Jun 13 09:45:02 2023 +0200
* add FastCGI/2.4.2-GCC-12.2.0,1
Date: Tue Jun 13 08:00:02 2023 +0200
* add PNGwriter/0.7.0-GCC-10.2.0,1
Date: Mon Jun 12 13:15:02 2023 +0200
* add openPMD-api/0.14.4-gompi-2020d,1
Date: Mon Jun 12 13:00:03 2023 +0200
* add ADIOS2/2.7.0-gompi-2020d,1
Date: Mon Jun 12 12:45:03 2023 +0200
* add c-blosc/1.21.0-GCC-10.2.0,1
Date: Mon Jun 12 12:30:03 2023 +0200
* add HDF5/1.12.0-gompi-2020d,1
Date: Mon Jun 12 12:15:05 2023 +0200
* add gompi/2020d,1
* add OpenMPI/3.1.4-GCC-10.2.0,1
Date: Mon Jun 12 12:00:03 2023 +0200
* add hwloc/1.11.7-GCC-10.2.0,1
Date: Mon Jun 12 09:00:09 2023 +0200
* add LAMMPS/23Jun2022-foss-2021b-kokkos,1
Date: Mon Jun 12 08:45:03 2023 +0200
* add FFmpeg/4.3.2-GCCcore-11.2.0,1
* add FriBidi/1.0.10-GCCcore-11.2.0,1
* add PLUMED/2.7.3-foss-2021b,1
* add ScaFaCoS/1.0.1-foss-2021b,1
* add VTK/9.1.0-foss-2021b,1
* add x265/3.5-GCCcore-11.2.0,1
* add xxd/8.2.4220-GCCcore-11.2.0,1
* add Yasm/1.3.0-GCCcore-11.2.0,1
Date: Mon Jun 12 08:30:02 2023 +0200
* add kim-api/2.3.0-GCCcore-11.2.0,1
* add LAME/3.100-GCCcore-11.2.0,1
Date: Mon Jun 12 08:15:03 2023 +0200
* add archspec/0.1.3-GCCcore-11.2.0,1
* add Doxygen/1.9.1-GCCcore-11.2.0,1
* add libiconv/1.16-GCCcore-11.2.0,1
* add netCDF/4.8.1-gompi-2021b,1
* add tbb/2020.3-GCCcore-11.2.0,1
* add Voro++/0.4.6-GCCcore-11.2.0,1
* add x264/20210613-GCCcore-11.2.0,1
Date: Fri Jun 9 09:30:03 2023 +0200
* add HDF5/1.14.0-iimpi-2022b-serial,1
Date: Fri Jun 9 09:00:02 2023 +0200
* add HDF5/1.12.2-NVHPC-22.7-CUDA-11.7.0-serial,1
Date: Fri Jun 9 08:30:05 2023 +0200
* add HDF5/1.13.1-GCC-11.3.0-serial,1
Date: Fri Jun 9 08:15:03 2023 +0200
* add HDF5/1.12.2-GCC-11.3.0-serial,1
Date: Thu Jun 8 15:15:03 2023 +0200
* add NVHPC/23.1,1
* add NVHPC/23.1-CUDA-12.0.0,1
Date: Thu Jun 8 15:00:03 2023 +0200
* remove NVHPC/23.1,1
* remove NVHPC/23.1-CUDA-12.0.0,1
* remove NVHPC/23.3-manual,1
* add NVHPC/23.3,1
Date: Thu Jun 8 14:45:02 2023 +0200
* remove NVHPC/23.3,1
* add NVHPC/23.5,1
Date: Thu Jun 8 14:30:03 2023 +0200
* remove NVHPC/23.5,1
Date: Thu Jun 8 12:15:03 2023 +0200
* add NVHPC/22.2-test,1
Date: Thu Jun 8 12:00:03 2023 +0200
* add NVHPC/23.5,1
Date: Thu Jun 8 11:15:03 2023 +0200
* add Spack/0.20.0,1
Date: Thu Jun 8 11:00:05 2023 +0200
* add NVHPC/23.3-manual,1
Date: Thu Jun 8 10:30:02 2023 +0200
* add NVHPC/23.1-CUDA-12.0.0,1
Date: Mon Jun 5 16:30:03 2023 +0200
* add Spack/0.17.2,1
Date: Thu Jun 1 12:00:03 2023 +0200
* add Qiskit/0.43.0,1
Date: Thu Jun 1 10:15:03 2023 +0200
* add Ansys-Rocky/23.1.1,1
Date: Tue May 30 07:45:04 2023 +0200
* add Advisor/2021.2.0,1
* add AlphaFold/2.1.2-fosscuda-2020b-TensorFlow-2.5.0,1
* add Amber/20.11-foss-2020b-AmberTools-21.3,1
* add Amber/20.11-fosscuda-2020b-AmberTools-21.3,1
* add ambit/733c529-foss-2021b-psi4,1
* add Anaconda3/2021.05,1
* add Anaconda3/2021.11,1
* add Anaconda3/2022.05,1
* remove ANSYS/20.2-intel-2017c,1
* add ANSYS/20.2-intel-2017c,1
* add ant/1.10.11-Java-13,1
* add ant/1.10.9-Java-11,1
* remove AOCL/3.0-6-GCCcore-10.2.0,1
* add AOCL/3.0-6-GCCcore-10.2.0,1
* add apex/20210420-fosscuda-2020b,1
* add apptainer/1.1.5,1
* add apptainer-wrappers/1.0,1
* add aria2/1.35.0-GCCcore-10.3.0,1
* add arpack-ng/3.8.0-intel-2020b,1
* remove Advisor/2021.2.0,1
* remove AlphaFold/2.1.2-fosscuda-2020b-TensorFlow-2.5.0,1
* remove Amber/20.11-foss-2020b-AmberTools-21.3,1
* remove Amber/20.11-fosscuda-2020b-AmberTools-21.3,1
* remove Anaconda3/2021.05,1
* remove Anaconda3/2021.11,1
* remove Anaconda3/2022.05,1
* add at-spi2-atk/2.34.2-GCCcore-9.3.0,1
* add at-spi2-atk/2.38.0-GCCcore-10.3.0,1
* add at-spi2-atk/2.38.0-GCCcore-11.3.0,1
* add at-spi2-atk/2.38.0-GCCcore-12.2.0,1
* add at-spi2-core/2.36.0-GCCcore-9.3.0,1
* add at-spi2-core/2.40.2-GCCcore-10.3.0,1
* add at-spi2-core/2.44.1-GCCcore-11.3.0,1
* add at-spi2-core/2.46.0-GCCcore-12.2.0,1
* remove BEEF/0.1.1-intel-2020a,1
* remove BLIS/0.8.1-GCC-10.3.0,1
* remove BLIS/0.8.1-GCC-11.2.0,1
* remove BLIS/0.9.0-GCC-11.3.0,1
* remove BLIS/0.9.0-GCC-12.2.0,1
* remove BLIS/2.2-GCCcore-10.2.0,1
* remove BLIS/3.0-GCCcore-10.3.0-amd,1
* remove BLIS/3.0.1-GCCcore-10.2.0,1
* remove BLIS/3.0.1-GCCcore-10.2.0-amd,1
* remove BLIS/3.0.1-GCCcore-10.3.0-amd,1
* remove BLIS/3.1-GCCcore-11.2.0-amd,1
* remove BWA/0.7.17-intel-2020b,1
* add awscli/1.22.9-GCCcore-10.2.0-Python-3.8.6,1
* add awscli/1.27.75-GCCcore-12.2.0-Python-3.10.8,1
* add BEEF/0.1.1-intel-2020a,1
* add binutils/2.27,1
* add binutils/2.27-GCCcore-6.3.0,1
* add binutils/2.31.1,1
* add binutils/2.31.1-GCCcore-8.2.0,1
* add binutils/2.32,1
* add binutils/2.32-GCCcore-8.3.0,1
* add binutils/2.34,1
* add binutils/2.34-GCCcore-9.3.0,1
* add binutils/2.35,1
* add binutils/2.35-GCCcore-10.2.0,1
* add binutils/2.36.1,1
* add binutils/2.36.1-GCCcore-10.3.0,1
* add binutils/2.37,1
* add binutils/2.37-GCCcore-11.2.0,1
* add binutils/2.38,1
* add binutils/2.38-GCCcore-11.3.0,1
* add binutils/2.38-GCCcore-12.1.0,1
* add binutils/2.39,1
* add binutils/2.39-GCCcore-12.2.0,1
* add BLIS/0.8.1-GCC-10.3.0,1
* add BLIS/0.8.1-GCC-11.2.0,1
* add BLIS/0.9.0-GCC-11.3.0,1
* add BLIS/0.9.0-GCC-12.2.0,1
* add BLIS/2.2-GCCcore-10.2.0,1
* add BLIS/3.0.1-GCCcore-10.2.0,1
* add BLIS/3.0.1-GCCcore-10.2.0-amd,1
* add BLIS/3.0.1-GCCcore-10.3.0-amd,1
* add BLIS/3.0-GCCcore-10.3.0-amd,1
* add BLIS/3.1-GCCcore-11.2.0-amd,1
* remove Boost.MPI/1.79.0-gompi-2022a,1
* add Boost.MPI/1.79.0-gompi-2022a,1
* add BWA/0.7.17-intel-2020b,1
* add bwidget/1.9.15-GCCcore-11.3.0,1
* add byacc/20170509,1
* add bzip2/1.0.6,1
* add bzip2/1.0.8,1
* add bzip2/1.0.8-GCCcore-10.2.0,1
* add bzip2/1.0.8-GCCcore-10.3.0,1
* add bzip2/1.0.8-GCCcore-11.2.0,1
* add bzip2/1.0.8-GCCcore-11.3.0,1
* add bzip2/1.0.8-GCCcore-12.2.0,1
* add bzip2/1.0.8-GCCcore-9.3.0,1
* add cairo/1.16.0-GCCcore-10.2.0,1
* add cairo/1.16.0-GCCcore-10.3.0,1
* add cairo/1.16.0-GCCcore-11.2.0,1
* add cairo/1.16.0-GCCcore-9.3.0,1
* add cairo/1.17.4-GCCcore-11.3.0,1
* add cairo/1.17.4-GCCcore-12.2.0,1
* add c-ares/1.17.2-GCCcore-10.3.0,1
* add CentOS/7,1
* add CGAL/5.2.4-gompi-2022b,1
* remove CGAL/5.2.4-gompi-2022b,1
* add Check/0.15.2-GCCcore-10.2.0,1
* add Check/0.15.2-GCCcore-9.3.0,1
* add CheMPS2/1.8.11-foss-2021b,1
* add CheMPS2/1.8.12-foss-2022a,1
* add CheMPS2/1.8.12-intel-2022a,1
* add CheMPS2/1.8.9-intel-2020a,1
* add CheMPS2/1.8.9-intel-2020b,1
* add CheMPS2/1.8.9-intel-2021a,1
* add Clang/11.0.1-GCCcore-10.2.0,1
* add Clang/11.0.1-gcccuda-2020b,1
* add Clang/13.0.1-GCCcore-11.3.0,1
* add CoordgenLibs/3.0.1-iimpi-2020a,1
* add Cordax/20220830-foss-2020b,1
* add cppe/0.3.1-GCCcore-11.2.0,1
* add CppUnit/1.15.1-GCCcore-10.3.0,1
* add cppy/1.2.1-GCCcore-11.3.0,1
* add ctffind/4.1.14-foss-2021a,1
* add Cube/4.6-GCCcore-10.2.0,1
* add CubeGUI/4.6-GCCcore-10.2.0,1
* add CubeLib/4.6-GCCcore-10.2.0,1
* add CubeLib/4.8-GCCcore-11.2.0,1
* add CubeWriter/4.6-GCCcore-10.2.0,1
* add CubeWriter/4.8-GCCcore-11.2.0,1
* remove CVXOPT/1.2.6-foss-2021a,1
* remove CentOS/7,1
* remove CheMPS2/1.8.11-foss-2021b,1
* remove CheMPS2/1.8.12-foss-2022a,1
* remove CheMPS2/1.8.12-intel-2022a,1
* remove CheMPS2/1.8.9-intel-2020a,1
* remove CheMPS2/1.8.9-intel-2020b,1
* remove CheMPS2/1.8.9-intel-2021a,1
* remove Check/0.15.2-GCCcore-10.2.0,1
* remove Check/0.15.2-GCCcore-9.3.0,1
* remove Clang/11.0.1-GCCcore-10.2.0,1
* remove Clang/11.0.1-gcccuda-2020b,1
* remove Clang/13.0.1-GCCcore-11.3.0,1
* remove CoordgenLibs/3.0.1-iimpi-2020a,1
* remove Cordax/20220830-foss-2020b,1
* remove CppUnit/1.15.1-GCCcore-10.3.0,1
* add cuDNN/8.0.4.30-CUDA-11.1.1,1
* add cuDNN/8.2.1.32-CUDA-11.3.1,1
* add cuDNN/8.2.2.26-CUDA-11.4.1,1
* add cuDNN/8.4.1.50-CUDA-11.7.0,1
* remove Cube/4.6-GCCcore-10.2.0,1
* remove CubeGUI/4.6-GCCcore-10.2.0,1
* remove CubeLib/4.6-GCCcore-10.2.0,1
* remove CubeLib/4.8-GCCcore-11.2.0,1
* remove CubeWriter/4.6-GCCcore-10.2.0,1
* remove CubeWriter/4.8-GCCcore-11.2.0,1
* add cURL/7.65.3,1
* add cURL/7.69.1-GCCcore-9.3.0,1
* add cURL/7.72.0,1
* add cURL/7.72.0-GCCcore-10.2.0,1
* add cURL/7.76.0,1
* add cURL/7.76.0-GCCcore-10.3.0,1
* add cURL/7.76.0-GCCcore-10.3.0-test,1
* add cURL/7.78.0-GCCcore-11.2.0,1
* add cURL/7.83.0-GCCcore-11.3.0,1
* add cURL/7.86.0-GCCcore-12.2.0,1
* add cuTENSOR/1.2.2.5-CUDA-11.1.1,1
* add CVXOPT/1.2.6-foss-2021a,1
* add Dakota/6.15.0-foss-2021b,1
* add Dakota/6.15.0-intel-2021b,1
* remove DFT-D3/3.2.0-intel-compilers-2021.2.0,1
* remove DFT-D3/3.2.0-intel-compilers-2022.1.0,1
* add deepdiff/4.0.6-GCCcore-9.3.0-Python-3.8.2,1
* add deepdiff/5.7.0-GCCcore-11.2.0,1
* remove DL_MG/2.1.4-intel-2021b,1
* remove Dakota/6.15.0-foss-2021b,1
* remove Dakota/6.15.0-intel-2021b,1
* add DFT-D3/3.2.0-intel-compilers-2021.2.0,1
* add DFT-D3/3.2.0-intel-compilers-2022.1.0,1
* add dftd3-lib/0.9.2-GCC-10.2.0,1
* add dftd3-lib/0.9-GCC-9.3.0,1
* add dill/0.3.4-GCCcore-10.3.0,1
* add dill/0.3.4-GCCcore-11.2.0,1
* add dill/0.3.6-GCCcore-11.3.0,1
* add dkh/1.2-foss-2021b-psi4,1
* add DL_MG/2.1.4-intel-2021b,1
* add double-conversion/3.1.5-GCCcore-10.2.0,1
* add double-conversion/3.1.5-GCCcore-10.3.0,1
* add double-conversion/3.1.5-GCCcore-11.2.0,1
* add double-conversion/3.2.0-GCCcore-11.3.0,1
* add double-conversion/3.2.1-GCCcore-12.2.0,1
* remove ELPA/2019.11.001-intel-2020b,1
* remove ELPA/2020.11.001-fosscuda-2020b,1
* remove ELPA/2020.11.001-intel-2020b,1
* remove ELPA/2021.05.001-intel-2021a,1
* remove ELPA/2021.11.001-intel-2022a,1
* remove ELSI/2.5.0-intel-2020b,1
* remove ELSI/2.6.4-intel-2020b,1
* add ecCodes/2.22.1-gompi-2021a,1
* add elfutils/0.183-GCCcore-10.2.0,1
* add elfutils/0.185-GCCcore-11.2.0,1
* add elfutils/0.187-GCCcore-11.3.0,1
* add elfutils/0.189-GCCcore-12.2.0,1
* add ELPA/2019.11.001-intel-2020b,1
* add ELPA/2020.11.001-fosscuda-2020b,1
* add ELPA/2020.11.001-intel-2020b,1
* add ELPA/2021.05.001-intel-2021a,1
* add ELPA/2021.11.001-intel-2022a,1
* add ELSI/2.5.0-intel-2020b,1
* add ELSI/2.6.4-intel-2020b,1
* add expat/2.2.0,1
* add expat/2.2.9,1
* add expat/2.2.9-GCCcore-10.2.0,1
* add expat/2.2.9-GCCcore-10.3.0,1
* add expat/2.2.9-GCCcore-9.3.0,1
* add expat/2.4.1-GCCcore-11.2.0,1
* add expat/2.4.8-GCCcore-11.3.0,1
* add expat/2.4.9-GCCcore-12.2.0,1
* add expecttest/0.1.3-GCCcore-10.2.0,1
* add expecttest/0.1.3-GCCcore-10.3.0,1
* remove FFTW.MPI/3.3.10-gompi-2022a,1
* remove FFTW.MPI/3.3.10-gompi-2022b,1
* remove FFTW.MPI/3.3.8-NVHPC-22.2,1
* add Fedora/latest,1
* add FFmpeg/4.3.1-GCCcore-10.2.0,1
* add FFmpeg/4.3.2-GCCcore-10.3.0,1
* add FFmpeg/5.0.1-GCCcore-11.3.0,1
* add FFmpeg/5.1.2-GCCcore-11.3.0,1
* add FFmpeg/5.1.2-GCCcore-12.2.0,1
* add ffnvcodec/11.1.5.2,1
* remove FFTW/3.3.10-NVHPC-21.9,1
* add FFTW/3.3.10-NVHPC-21.9,1
* remove FFTW/3.3.8-NVHPC-22.2,1
* add FFTW/3.3.8-NVHPC-22.2,1
* remove FFmpeg/4.3.1-GCCcore-10.2.0,1
* remove FFmpeg/4.3.2-GCCcore-10.3.0,1
* remove FFmpeg/5.0.1-GCCcore-11.3.0,1
* remove FFmpeg/5.1.2-GCCcore-11.3.0,1
* remove FFmpeg/5.1.2-GCCcore-12.2.0,1
* add FFTW.MPI/3.3.10-gompi-2022a,1
* add FFTW.MPI/3.3.10-gompi-2022b,1
* add FFTW.MPI/3.3.8-NVHPC-22.2,1
* add fio/3.32-GCCcore-11.3.0,1
* remove FLINT/2.7.1-GCC-10.3.0,1
* remove FLTK/1.3.5-GCCcore-10.2.0,1
* remove FLTK/1.3.6-GCCcore-10.3.0,1
* remove FPM/1.15.0-Ruby-3.0.3,1
* remove FPM/1.3.3-Ruby-2.1.6,1
* remove Fedora/latest,1
* remove FlexiBLAS/3.0.4-GCC-10.3.0,1
* remove FlexiBLAS/3.0.4-GCC-11.2.0,1
* remove FlexiBLAS/3.2.0-GCC-11.3.0,1
* remove FlexiBLAS/3.2.1-GCC-12.2.0,1
* remove FoX/4.1.2-intel-2020b,1
* remove FoldX/5.0,1
* remove Forge/19.1.1,1
* remove Forge/20.1.1,1
* remove Forge/21.1.3,1
* remove Forge/22.0.2,1
* remove FriBidi/1.0.10-GCCcore-10.2.0,1
* remove FriBidi/1.0.10-GCCcore-10.3.0,1
* remove FriBidi/1.0.12-GCCcore-11.3.0,1
* add flatbuffers/1.12.0-GCCcore-10.2.0,1
* add flatbuffers/2.0.0-GCCcore-10.3.0,1
* add flatbuffers/2.0.0-GCCcore-11.2.0,1
* add flatbuffers/2.0.0-GCCcore-11.3.0,1
* add flatbuffers/2.0.7-GCCcore-11.3.0,1
* add flatbuffers-python/1.12-GCCcore-10.2.0,1
* add flatbuffers-python/2.0-GCCcore-10.3.0,1
* add flatbuffers-python/2.0-GCCcore-11.2.0,1
* add flatbuffers-python/2.0-GCCcore-11.3.0,1
* add flex/2.6.3,1
* add flex/2.6.4,1
* add flex/2.6.4-GCCcore-10.2.0,1
* add flex/2.6.4-GCCcore-10.3.0,1
* add flex/2.6.4-GCCcore-11.2.0,1
* add flex/2.6.4-GCCcore-11.3.0,1
* add flex/2.6.4-GCCcore-12.1.0,1
* add flex/2.6.4-GCCcore-12.2.0,1
* add flex/2.6.4-GCCcore-8.3.0,1
* add flex/2.6.4-GCCcore-9.3.0,1
* add FlexiBLAS/3.0.4-GCC-10.3.0,1
* add FlexiBLAS/3.0.4-GCC-11.2.0,1
* add FlexiBLAS/3.2.0-GCC-11.3.0,1
* add FlexiBLAS/3.2.1-GCC-12.2.0,1
* add FLINT/2.7.1-GCC-10.3.0,1
* add FLTK/1.3.5-GCCcore-10.2.0,1
* add FLTK/1.3.6-GCCcore-10.3.0,1
* add FoldX/5.0,1
* add fontconfig/2.13.92-GCCcore-10.2.0,1
* add fontconfig/2.13.92-GCCcore-9.3.0,1
* add fontconfig/2.13.93,1
* add fontconfig/2.13.93-GCCcore-10.3.0,1
* add fontconfig/2.13.94-GCCcore-11.2.0,1
* add fontconfig/2.14.0-GCCcore-11.3.0,1
* add fontconfig/2.14.1-GCCcore-12.2.0,1
* add Forge/19.1.1,1
* add Forge/20.1.1,1
* add Forge/21.1.3,1
* add Forge/22.0.2,1
* add foss/2018a,1
* add foss/2020a,1
* add foss/2020b,1
* add foss/2021a,1
* add foss/2021b,1
* add foss/2022a,1
* add foss/2022b,1
* add fosscuda/2020b,1
* add FoX/4.1.2-intel-2020b,1
* add FPM/1.15.0-Ruby-3.0.3,1
* add FPM/1.3.3-Ruby-2.1.6,1
* add freetype/2.10.1-GCCcore-9.3.0,1
* add freetype/2.10.3-GCCcore-10.2.0,1
* add freetype/2.10.4,1
* add freetype/2.10.4-GCCcore-10.3.0,1
* add freetype/2.11.0-GCCcore-11.2.0,1
* add freetype/2.12.1-GCCcore-11.3.0,1
* add freetype/2.12.1-GCCcore-12.2.0,1
* add freetype/2.9.1-libpng-1.6.34,1
* add FriBidi/1.0.10-GCCcore-10.2.0,1
* add FriBidi/1.0.10-GCCcore-10.3.0,1
* add FriBidi/1.0.12-GCCcore-11.3.0,1
* add fromage/1.1.0-foss-2021b,1
* add gau2grid/2.0.7-foss-2021b-lmax-5-psi4,1
* add gau2grid/2.0.7-foss-2022a-lmax-5-psi4,1
* add Gaussian/09-a02,1
* add Gaussian/09-d01,1
* add Gaussian/16_rev_c2,1
* add gc/7.6.12-GCCcore-9.3.0,1
* add gcccuda/2020b,1
* add gcccuda/2022b,1
* add Gdk-Pixbuf/2.42.10-GCCcore-12.2.0,1
* add Gdk-Pixbuf/2.42.6-GCCcore-10.3.0,1
* add Gdk-Pixbuf/2.42.8-GCCcore-11.3.0,1
* add gdma/2.2.6-foss-2021b,1
* add geopy/2.1.0-GCCcore-10.2.0,1
* remove GLPK/4.65-GCCcore-10.2.0,1
* remove GLPK/5.0-GCCcore-10.3.0,1
* add gettext/0.19.4,1
* add gettext/0.20.1,1
* add gettext/0.20.1-GCCcore-9.3.0,1
* add gettext/0.21,1
* add gettext/0.21.1,1
* add gettext/0.21.1-GCCcore-12.2.0,1
* add gettext/0.21-GCCcore-10.2.0,1
* add gettext/0.21-GCCcore-10.3.0,1
* add gettext/0.21-GCCcore-11.2.0,1
* add gettext/0.21-GCCcore-11.3.0,1
* add gfbf/2022b,1
* add gh/2.14.7,1
* add Ghostscript/9.53.3-GCCcore-10.2.0,1
* add Ghostscript/9.54.0-GCCcore-10.3.0,1
* add giflib/5.2.1-GCCcore-10.2.0,1
* add giflib/5.2.1-GCCcore-10.3.0,1
* add giflib/5.2.1-GCCcore-11.2.0,1
* add giflib/5.2.1-GCCcore-11.3.0,1
* add git/2.28.0-GCCcore-10.2.0-nodocs,1
* add git/2.31.1,1
* add git/2.32.0-GCCcore-10.3.0-nodocs,1
* add git/2.32.0-GCCcore-10.3.0-nodocs-test,1
* add git/2.33.1-GCCcore-11.2.0-nodocs,1
* add git/2.36.0-GCCcore-11.3.0-nodocs,1
* add git/2.38.1,1
* add git/2.38.1-GCCcore-12.2.0-nodocs,1
* add git-lfs/3.1.2,1
* add glibc/2.19,1
* add glibc/2.30-GCCcore-10.2.0,1
* add glibc/2.37-GCCcore-12.2.0,1
* add GlobalArrays/5.8.1-intel-2022a,1
* add GlobalArrays/5.8-intel-2020b,1
* add GlobalArrays/5.8-intel-2021a,1
* add GLPK/4.65-GCCcore-10.2.0,1
* add GLPK/5.0-GCCcore-10.3.0,1
* add gmpy2/2.1.0b5-GCC-10.2.0,1
* add gmpy2/2.1.0b5-GCC-10.3.0,1
* add gnuplot/5.2.3,1
* add gnuplot/5.2.8,1
* add gnuplot/5.4.1-GCCcore-10.2.0,1
* add gnuplot/5.4.2-GCCcore-10.3.0,1
* add gnuplot/5.4.6-GCCcore-12.2.0,1
* add Go/1.13.5,1
* add Go/1.17.3,1
* add Go/1.17.6,1
* add Go/1.18.1,1
* add gompi/2018a,1
* add gompi/2020a,1
* add gompi/2020b,1
* add gompi/2020c,1
* add gompi/2021a,1
* add gompi/2021b,1
* add gompi/2022.05,1
* add gompi/2022a,1
* add gompi/2022b,1
* add gompic/2020b,1
* add googletest/1.11.0-GCCcore-10.3.0,1
* add googletest/1.11.0-GCCcore-11.2.0,1
* add gperf/3.1,1
* add gperf/3.1-GCCcore-10.2.0,1
* add gperf/3.1-GCCcore-10.3.0,1
* add gperf/3.1-GCCcore-11.2.0,1
* add gperf/3.1-GCCcore-11.3.0,1
* add gperf/3.1-GCCcore-12.2.0,1
* add gperf/3.1-GCCcore-9.3.0,1
* add gperftools/2.8-GCCcore-9.3.0,1
* add grace/5.1.25-gompi-2022a,1
* add Graphene/1.10.8-GCCcore-12.2.0,1
* add graphite2/1.3.14-GCCcore-10.2.0,1
* add graphite2/1.3.14-GCCcore-11.2.0,1
* add graphite2/1.3.14-GCCcore-11.3.0,1
* add graphite2/1.3.14-GCCcore-12.2.0,1
* add groff/1.22.4-GCCcore-10.2.0,1
* add groff/1.22.4-GCCcore-10.3.0,1
* add groff/1.22.4-GCCcore-11.2.0,1
* add groff/1.22.4-GCCcore-11.3.0,1
* add groff/1.22.4-GCCcore-12.2.0,1
* add groff/1.22.4-GCCcore-9.3.0,1
* remove Gaussian/09-a02,1
* remove Gaussian/09-d01,1
* remove Gaussian/16_rev_c2,1
* remove Gdk-Pixbuf/2.42.10-GCCcore-12.2.0,1
* remove Gdk-Pixbuf/2.42.6-GCCcore-10.3.0,1
* remove Gdk-Pixbuf/2.42.8-GCCcore-11.3.0,1
* remove Ghostscript/9.53.3-GCCcore-10.2.0,1
* remove Ghostscript/9.54.0-GCCcore-10.3.0,1
* remove GlobalArrays/5.8-intel-2020b,1
* remove GlobalArrays/5.8-intel-2021a,1
* remove GlobalArrays/5.8.1-intel-2022a,1
* remove Go/1.13.5,1
* remove Go/1.17.3,1
* remove Go/1.17.6,1
* remove Go/1.18.1,1
* remove Graphene/1.10.8-GCCcore-12.2.0,1
* add guile/1.8.8,1
* add gzip/1.10-GCCcore-10.2.0,1
* add gzip/1.10-GCCcore-10.3.0,1
* add gzip/1.10-GCCcore-11.2.0,1
* add gzip/1.10-GCCcore-9.3.0,1
* add gzip/1.12-GCCcore-11.3.0,1
* add gzip/1.12-GCCcore-12.2.0,1
* add h5py/3.1.0-fosscuda-2020b,1
* add h5py/3.1.0-intel-2020b,1
* add h5py/3.2.1-foss-2021a,1
* add h5py/3.6.0-foss-2021b,1
* add h5py/3.6.0-intel-2021b,1
* add h5py/3.7.0-foss-2022a,1
* add HarfBuzz/2.6.4-GCCcore-9.3.0,1
* add HarfBuzz/2.6.7-GCCcore-10.2.0,1
* add HarfBuzz/2.8.1-GCCcore-10.3.0,1
* add HarfBuzz/2.8.2-GCCcore-11.2.0,1
* add HarfBuzz/4.2.1-GCCcore-11.3.0,1
* add HarfBuzz/5.3.1-GCCcore-12.2.0,1
* remove HDF5/1.12.1-NVHPC-21.11,1
* remove HDF5/1.12.1-NVHPC-21.9,1
* remove HDF5/1.12.1-NVHPC-22.2,1
* add HDF5/1.12.1-NVHPC-21.11,1
* add HDF5/1.12.1-NVHPC-21.9,1
* add HDF5/1.12.1-NVHPC-22.2,1
* add help2man/1.47.12-GCCcore-9.3.0,1
* add help2man/1.47.16-GCCcore-10.2.0,1
* add help2man/1.47.4,1
* add help2man/1.47.8-GCCcore-8.3.0,1
* add help2man/1.48.3-GCCcore-10.3.0,1
* add help2man/1.48.3-GCCcore-11.2.0,1
* add help2man/1.49.2-GCCcore-11.3.0,1
* add help2man/1.49.2-GCCcore-12.1.0,1
* add help2man/1.49.2-GCCcore-12.2.0,1
* add hipify-clang/4.2.0-gcccuda-2020b,1
* add hipSYCL/0.9.1-GCC-10.2.0,1
* add hipSYCL/0.9.1-gcccuda-2020b,1
* add hipSYCL/0.9.2-gcccuda-2020b,1
* remove HarfBuzz/2.6.4-GCCcore-9.3.0,1
* remove HarfBuzz/2.6.7-GCCcore-10.2.0,1
* remove HarfBuzz/2.8.1-GCCcore-10.3.0,1
* remove HarfBuzz/2.8.2-GCCcore-11.2.0,1
* remove HarfBuzz/4.2.1-GCCcore-11.3.0,1
* remove HarfBuzz/5.3.1-GCCcore-12.2.0,1
* add htop/3.2.1,1
* add hwloc/1.11.7-GCC-6.3.0-2.27,1
* add hwloc/2.2.0-GCCcore-10.2.0,1
* add hwloc/2.2.0-GCCcore-9.3.0,1
* add hwloc/2.4.1-AOCL-3.0.1-AOCC-3.1.0,1
* add hwloc/2.4.1-GCCcore-10.3.0,1
* add hwloc/2.5.0-GCCcore-11.2.0,1
* add hwloc/2.7.1-GCCcore-11.3.0,1
* add hwloc/2.8.0-GCCcore-12.2.0,1
* add hypothesis/5.41.2-GCCcore-10.2.0,1
* add hypothesis/5.41.5-GCCcore-10.2.0,1
* add hypothesis/6.13.1-GCC-10.2.0,1
* add hypothesis/6.13.1-GCCcore-10.3.0,1
* add hypothesis/6.14.6-GCCcore-10.2.0,1