-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathXC-PE-21.09-04-ReleaseNotes.txt
1414 lines (1067 loc) · 50.7 KB
/
XC-PE-21.09-04-ReleaseNotes.txt
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
Abnormal Termination Processing (ATP) 3.14.5:
================================================
Release Date:
--------------
August 2021
Product Description:
--------------------
Abnormal Termination Processing (ATP) is a system that
monitors user applications, and should an application
take a system trap, ATP preforms analysis on the dying
application. All of the stack backtraces of the
application processes are gathered into a merged
stack backtrace tree and written to disk as the file
"atpMergedBT.dot". The stack backtrace for the first process
to die is sent to stderr as is the number of the signal that
caused the death. If the core file size limit (RLIMIT_CORE)
is non-zero, a heuristically selected set of processes dump
their core.
atpMergedBT.dot can be viewed with 'statview', a component
of the STAT package (module load stat). The merged stack
backtrace tree provides a concise, yet comprehensive, view
of what the application was doing at the time of its death.
Purpose:
---------
This release includes the following new features and bugfixes:
- Full support for CPU and GPU kernel debugging on AMD GPUs
using the ROCm runtime.
- Support analysis of binaries built with PGI and Intel compilers.
Note: there is a known issue with corefile generation for Intel-
built binaries. If corefile support is desired, set
ATP_GDB_BINARY to the path to your system's GDB binary.
Product and OS Dependencies:
-----------------------------
The ATP 3.14.5 release is supported on the following Cray systems:
- HPE/Cray XC systems with CLE release 7.0 or later
- HPE/Cray CS systems with CentOS/RH 8.0 or later
- HPE/Cray Shasta systems with SLES 15 service pack 1 or later
- HPE Apollo systems with Slurm or PBS Pro, and RH 8.0 or later
- Baymax systems with RH 8.0 or later
Product Dependencies:
- GCC 8.1.0 associated runtime libraries are required on all systems.
- Cray cray-cti rpm installed
- Cray cray-cdst-support rpm installed
Documentation:
---------------
Type `man atp` with the atp module loaded to read the atp(1) man page.
Installation instructions:
--------------------------
Installation instructions for x86_64:
=============================================
rpm -ivh atp-3.14.5-20210816095233_6fb22f7c-1.sles15sp2.x86_64.rpm
To make ATP 3.14.5 the default version of ATP, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_atp_3.14.5
Certain components, files or programs contained within this package or product are
Copyright 2010-2021 Hewlett Packard Enterprise Development LP.
################################################################################
HPE Cray Compiling Environment (CCE) 12.0.3
==============================================
Release Date:
-------------
September 2021
Purpose:
--------
CCE 12.0.3 provides Fortran, C, and C++ compilers for Cray XC and CS systems,
HPE Cray supercomputer systems, HPE Apollo 2000 Gen10Plus systems, and HPE Apollo 80 systems.
Key Changes:
------------
CCE 12.0.3:
- Bugfixes only
CCE 12.0.2:
- Bugfixes only
CCE 12.0.1:
- Bugfixes only
CCE 12.0.0:
- The C and C++ compilers are based on Clang/LLVM 12.0
- For C and C++, a new -floopmark-style option has been added to control the style of the loopmark
listing file produced when the -fsave-loopmark option is used. Allowed values are “grouped”
(all messages placed at the end of the listing) and “interspersed” (each message placed after
the relevant source code line). The default is “grouped”.
- For C and C++, support for "#pragma ivdep" has been added.
- For Fortran, directive-based and automatic cache blocking is now controlled by -hcblock{n},
where {n} is 0, 1, 2, or 3. The default is -hcblock0.
- For Fortran, the cache optimization level is now -hcache0,cblock0 unless directly specified.
For cache optimizations similar to what CCE 11.0 used by default, please add -hcache2,cblock2
to your CCE 12.0 command line.
- Support for the following OpenMP 5.0 features has been added for Fortran, C, and C++, unless noted otherwise
- Task affinity clause
- Conditional lastprivate (C/C++ only)
- Inclusive and exclusive scan operations (C/C++ only)
- if clause on simd construct (C/C++ only)
- Iterator support in depend clause (C/C++ only)
- Depend objects (C/C++ only)
- Lvalue expressions in depend clause
- mutexinoutset dependence type (C/C++ only)
- Task reductions (C/C++ only)
- Support for the following OpenACC 2.6 features has been added for Fortran
- Attach/detach behavior and clauses
- default(present) clause
- Implied present-or behavior for copy, copyin, copyout, and create data clauses
Issues or Bugs Resolved:
------------------------
CCE 12.0.3:
-----------
CAST-27000 CCE ftn "invalid addrspacecast" link-time error
CAST-27030 quoted openmp_metadirective flagged as error
CAST-26867 OO Fortran standard compliance of cce with parameterized derived types
CCE 12.0.2:
-----------
CAST-26722 CCE Internal error Invalid bitcast
CAST-26659 CCE Fortran ICE on BLOCK construct with PARAMETER array variable inside OpenMP Parallel region
CAST-26251 Internal CCE error when building COSMO POMPA
CAST-25894 Code only works with lowest optimization level (-O0)
CAST-25773 "CRAY_ACC_ERROR - Link not registered" when mapping pointer component of "omp declare target" variable
CCE 12.0.1:
-----------
CAST-26308 Fortran compiler internal error
CAST-25674 CCE Fortran 10.0.3 incorrectly interprets boz-literal-constants in DSHIFTL and DSHIFTR
CCE 12.0.0:
-----------
CAST-26051 Runaway Fortran preprocessing with -eZ
CAST-25850 FTN OPTCG goes into infinite loop trying to compile a file
CAST-25604 Derived type pointer component has invalid value after being unmapped and remapped
CAST-25318 libcraymath executable segment varies from run to run
CAST-25270 User's fortran code fails to compile with "-O2"
CAST-24759 CCE 11.0.1 compiled openmp_mem_usage_hip maps incorrect result back from GPU for 0.26GB or larger inputs
CAST-24702 CCE Fortran does not allow -hnofp_trap to override -hfp_trap that comes with -hfp0
CAST-24551 CCE libcraymath.so has unwritable segment with mutable contents
CAST-24540 CCE 11.0.1 compiled openmp_mem_usage_hip unexpected hangs for 0.25GB input size
CAST-24226 error parsing namelist
CAST-22787 crayftn/OPTCG gets into an infinite loop and never finishes compiling attached code when using -O2 or higher
CAST-22751 Cray Fortran does not recognize ENCODING=UTF-8
CAST-22749 Cray Fortran error message lib-5002 is misleading
CAST-22678 Cray Fortran compiler does not flag multiple use of symbols with bind(c)
CAST-22553 Cray Fortran ICE compiling code that uses iall intrinsic
CAST-15415 CCE: ftn-605 on code that compiles ok with intel, gnu
Product and OS Dependencies:
----------------------------
This CCE release is supported on
- Cray XC systems running CLE 7.0 (or later)
- Cray CS systems with RedHat/CentOS 8
- HPE Cray supercomputer systems running Shasta V1.3 (or later) or SLES15 SP2
- HPE Apollo 2000 Gen10Plus systems running RedHat/CentOS 8
- HPE Apollo 80 systems running RedHat/CentOS 8
AMD GPU offloading support requires at least ROCm 4.0 and has been validated up to ROCm 4.2.0
ROCm 4.3.0 is based on LLVM 13 and is not compatible with CCE 12, which is based on LLVM 12
Notes and Limitations:
----------------------
None
Documentation:
--------------
- S-5212 Cray Compiling Environment Release Overview (12.0)
- S-3901 Cray Fortran Reference Manual
- S-2179 Cray C and C++ Quick Reference
- Basic man pages: crayftn(1), craycc(1), crayCC(1), intro_openmp()
- Please see https://clang.llvm.org/docs/UsersManual.html or use the -help command line option for
more information on using Clang
Modulefile:
-----------
The following will load the modules necessary to use CCE:
module load PrgEnv-cray
The following will switch to x.y.z version of CCE:
module swap cce cce/x.y.z
Installation instructions:
--------------------------
rpm -ivh cce-12.0.3-202108161741.32d4751edd230-0.x86_64.rpm
The following script will set CCE version 12.0.3 default:
/opt/cray/pe/admin-pe/set_default_files/set_default_cce_12.0.3
License:
--------
Except for the third party components and software licensed by HPE through
proprietary agreements, components, files or programs contained within this
package or product are Copyright -2021 Hewlett Packard Enterprise Development LP.
Attribution notices for open source licensed software for this
package are detailed in the file:
/opt/cray/pe/cce/12.0.3/ATTRIBUTIONS_12.0.txt
################################################################################
CCDB 4.12.4:
==================
Release Date:
--------------
August 2021
Product Description:
--------------------
CCDB, Cray's next generation debugging tool extends the comparative
debugging capabilities of gdb4hpc with a Graphical User Interface (GUI)
enabling programmers to compare corresponding data structures
between two executing applications. Comparative debugging assists users with
locating sections of code containing data deviations introduced by algorithm
changes, compiler differences, and porting to new architectures/libraries.
Some features of ccdb include:
* Side-by-side debugging session execution of two parallel applications
* Automatic creation of comparison statements for all local variables in
scope
* Type templates for structured data types to selectively compare members
* Warning/error epsilon tolerance values for floating point comparison
* PBS PRO, MOAB/TORQUE, and SLURM workload manager support
Purpose:
---------
This is a feature and bug fix release.
- CAST-23989 fix eye button in application panel and procset focus display
- Fix installation of multiple versions of ccdb on Shasta.
- Improve documentation and handling for defset
- Automatically scroll to output in command tool
Product and OS Dependencies:
-----------------------------
The CCDB is supported on the following Cray systems.
- HPE/Cray XC systems with CLE 7.0 or later
- HPE/Cray CS systems with CentOS/RH 8.0 or later
- HPE/Cray Shasta systems with SLES 15 service pack 1 or later
- HPE Apollo systems with Slurm and RH 8.0 or later
- Baymax systems with RH 8.0 or later
Product Dependencies:
- gdb4hpc/4.10.x
- Cray cray-cti rpm installed
- Cray cray-cdst-support rpm installed
Documentation:
---------------
Type `man ccdb` with the cray-ccdb module loaded to read the
ccdb(1) man page.
Documentation is available through CCDB from the 'Help'
menu.
Installation instructions:
--------------------------
Installation instructions for .sles15sp2.x86_64:
=============================================
rpm -ivh --oldpackage cray-ccdb-4.12.4-20210816095218_a6b020d-1.sles15sp2.x86_64.rpm
To make cray-ccdb 4.12.4 the default version of cray-ccdb, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_cray-ccdb_4.12.4
Certain components, files or programs contained within this package or product are
Copyright 2007-2021 Hewlett Packard Enterprise Development LP.
################################################################################
Cray Common Tools Interface (CTI) 2.15.5:
======================================
Release Date:
--------------
August 2021
Product Description:
--------------------
Cray Common Tools Interface (CTI) is a library that abstracts debugger
tool support to a common interface regardless of the underlying
work load manager. It facilitates the staging of files and
the launch of tool daemons on the compute nodes associated
with a parallel job.
Purpose:
---------
This bugfix release resolves the following issues:
- Segfault when launching an application with GDB4hpc
Product and OS Dependencies:
-----------------------------
The Cray CTI 2.15.5 release is supported on the following Cray systems:
- HPE/Cray XC systems with CLE 7.0 or later
- HPE/Cray CS systems with CentOS/RH 8.0 or later
- HPE/Cray Shasta systems with SLES 15 service pack 1 or later
- HPE Apollo systems with Slurm and RH 8.0 or later
- Baymax systems with RH 8.0 or later
Product Dependencies:
- GCC 8.1.0 associated runtime libraries are required on all systems.
- Cray cray-cdst-support rpm installed
Documentation:
---------------
Currently the only documentation available is found in
common_tools_fe.h, common_tools_be.h, and the tests in the 'tests'
directory.
Installation instructions:
--------------------------
Installation instructions for x86_64:
=============================================
rpm -ivh cray-cti-2.15.5-8.sles15sp2.x86_64.rpm
To make cti 2.15.5 the default version of cray-cti, execute:
/opt/cray/admin-pe/set_default_files/set_default_cray-cti-2.15.5
Certain components, files or programs contained within this package or
product are Copyright 2010-2021 Hewlett Packard Enterprise Development LP
################################################################################
gcc 11.2.0
=========
Release Date:
-------------
September 2021
Purpose:
--------
The gcc 11.2.0 release.
Product and OS Dependencies:
----------------------------
The gcc 11.2.0 release is supported on
- Cray XC systems running CLE 7.0
- Cray Shasta systems
- HPE Apollo systems running RedHat 8.0
Documentation:
--------------
http://gcc.gnu.org/gcc-11
Modulefile:
---------------------
module load gcc/11.2.0
This modulefile defines the system paths and environment variables
needed to use gcc, g++ and gfortran on Cray systems. The gcc modulefile
can be swapped for other gcc versions. This modulefile may be loaded
as a standalone modulefile or as part of the GNU Programming Environment,
PrgEnv-gnu. The CrayPE drivers, cc, CC, and ftn, are recommended for
use with PrgEnv-gnu to generate compilation and link lines.
Installation instructions:
--------------------------
rpm -ihv cray-gcc-11.2.0-202108140546.ce81a09c5272c-13.sles15.x86_64.rpm
To change the product version to default after installation:
/opt/admin-pe/set_default_files/set_default_gcc_11.2.0
Certain components, files or programs contained within this package or product are
Copyright -2021 Hewlett Packard Enterprise Development LP
################################################################################
Cray Message Passing Toolkit 21.09:
==================================
Release Date:
-------------
September 2021
Purpose:
--------
The following new features has been added to Cray MPT 7.7.18 since
the Cray MPT 7.7.17 release:
- New compiler/compiler version support
- Intel OneAPI 2021.3.0
- GNU 11.2.0
- Allinea 21.0
- Nvidia SDK 21.5
- Support for CUDA 11.3
Additional Cray MPICH changes:
- No new features.
Additional Cray SHMEM changes:
- No new features.
The following bugs have been fixed since the Cray MPT 7.7.17 releases:
- No new bug fixes
Cray MPICH
- Fix a minor lmod issue
Cray SHMEM
- No new bug fixes
PLEASE NOTE:
Cray MPICH:
- GNU compiler support does not include Fortran 2008 language
bindings support for Cray MPICH.
- The Allinea 21.0 compiler (first supported in this release
MPT 7.7.18) is ABI incompatibile with previous Allinea
compilers. If an older Alliena compiler is desired an older
MPT must be used.
Cray SHMEM:
- Cray SHMEM is not supported for aarch64. Please use Cray
OpenSHMEMX instead.
Product and OS Dependencies:
----------------------------
The Cray MPT 7.7.18 release is supported on the following Cray systems:
* Cray XC systems with CLE version 7.0 or later
Product and OS Dependencies by network type:
------------------------------------------------------+
| Aries (XC30) |
--------------------------+---------------------------+
craype | >= 2.6.1 |
--------------------------+---------------------------+
pmi | >= 5.0.4 |
--------------------------+---------------------------+
cray-libugni | >= 5.0 |
--------------------------+---------------------------+
cray-libugni-devel | >= 5.0 |
--------------------------+---------------------------+
cray-libudreg | >= 2.3.2 |
--------------------------+---------------------------+
cray-libudreg-devel | >= 2.3.2 |
--------------------------+---------------------------+
cray-libxpmem | >= 0.1 |
--------------------------+---------------------------+
cray-libxpmem-devel | >= 0.1 |
--------------------------+---------------------------+
cray-libdmapp | >= 7.0.1 |
--------------------------+---------------------------+
cray-libdmapp-devel | >= 7.0.1 |
--------------------------+---------------------------+
alps | default |
--------------------------+---------------------------+
Exact compiler versions supported by Cray vary for each PE monthly
release. Please refer to the monthly PE Release Announcement that
corresponds to this version of CMPT for the final list of supported
compiler versions.
Documentation:
--------------
For more information see the intro_mpi and intro_shmem man pages.
Modulefile:
-----------
module load cray-mpich/7.7.18
module load cray-shmem/7.7.18
Installation:
-------------
For XC (x86_64) systems, the Craype-installer must be used to install
this release. Please see the PE release announcement that corresponds
to this version of Cray MPT for a more information on which Craype-installer
version to use.
Certain components, files or programs contained within this package or
product are Copyright 2007-2021 Hewlett Packard Enterprise Development LP
################################################################################
cray-papi
=================
Release date:
-------------
February 2021
Purpose:
--------
New version of papi 6.0.0.9
Documentation:
--------------
Overview: https://bitbucket.org/icl/papi
Web Site: http://icl.utk.edu/papi
Product description:
--------------------
PAPI aims to provide the tool designer and application engineer with a
consistent interface and methodology for use of the performance counter
hardware found in most major microprocessors. PAPI enables software
engineers to see, in near real time, the relation between software
performance and processor events.
Dependencies:
-------------
For a list of software used when validating this version of
PAPI on Cray and HPE systems, see the HPE Cray Programming
Environment release announcements.
Copyright 2015-2017,2019-2020 Hewlett Packard Enterprise Development LP
################################################################################
CrayPE 2.7.10
==============
Release Date:
--------------
September 2021
Purpose:
--------
- Bug Fix release
Bugs Fixed in This Release:
-------------------------------------------
- CAST-26810 - A wrong target option for nvidia compilers is
used in the craype-x86-milan module.
Dependencies:
---------------------------------------------
The CrayPE 2.7.10 release is dependent on .pc files in the following
software products:
ATP 1.6.3 or later
FFTW 3.3.0.4 or later
FFTW 2.1.5.6 or later
Global Arrays 5.1.0.2 or later
HDF5 1.8.11 or later
iobuf 2.0.5 or later
LibSci 12.1.01 or later
MPT 6.0.2 or later
NetCDF 4.3.0 or later
Parallel-NetCDF 1.3.1.1 or later
PMI 4.0.1 or later
PETSc 3.4.2.0 or later
Trilinos 11.4.1.0 or later
TPSL 1.3.04 or later
TotalView 8.12-totalview-support-1.1.5 or later
Documentation:
---------------
See manpages for cc, CC, ftn, intro_craype-api, intro_hugepages and pkg-config
See section 2.6 Using Targeting Modules of the Cray Programming Environment
User's Guide (S-2529-116)
See http://www.freedesktop.org/wiki/Software/pkg-config for a pkg-config
introduction.
Installation instructions:
--------------------------
rpm -ivh craype-2.7.10-202108181602.d75445c1bce85-1.xc.sles15.x86_64.rpm
To make this the default version, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_craype_2.7.10
Product description:
--------------------
CrayPE contains drivers, cc, CC, and ftn to compile for the CCE, PGI, GNU,
and Intel Programming Environments.
The craype-* targeting modules are also provided in this product.
Certain components, files or programs contained within this package or product
are Copyright 2013-2021 Hewlett Packard Enterprise Development LP.
################################################################################
PETSc 3.14.5.0
=============
Release Date:
-------------
May 2021
Purpose:
--------
The Cray PETSc 3.14.5.0 release is supported on Cray XC series systems.
Cray PETSc is supported on the host CPU but not on the accelerator of Cray
XC series systems.
The Cray PETSc 3.14.5.0 release is based on the official patch release of
PETSc 3.14.5 by Argonne National Laboratory. For further information about the
PETSc 3.14.5 release, see
https://www.mcs.anl.gov/petsc/documentation/changes/312.html
The Cray PETSc 3.14.5.0 release provides the following:
* Update to upstream release 3.14.5.
Bugs Closed with Cray PETSc 3.14.5.0:
------------------------------------
* CAST-23670 -- missing 'broadwell' libraries for cray-petsc
* CAST-23637 -- cray-petsc-complex and cray-petsc-complex-64
modules are missing the standard version variables.
Product and OS Dependencies:
----------------------------
The Cray PETSc 3.14.5.0 release is supported on the following Cray systems:
* Cray XC systems with CLE 7.0 or later.
The Cray PETSc 3.14.5.0 release requires the following software products:
For Cray XC series systems:
CrayPE 2.1.2 or later
Libsci 13.0.0 or later
TPSL 20.03.*
MPT 7.7.7 or later
HDF5 1.12.0.*
One or more compilers:
CCE 9.1 or later
GCC 8.2 or later
Intel 19.1 or later
Documentation:
--------------
http://www.mcs.anl.gov/petsc/documentation/index.html
See the intro_petsc man page for additional information.
Modulefile:
-----------
module load cray-petsc
module load cray-petsc-complex
module load cray-petsc-64
module load cray-petsc-complex-64
Installation instructions:
--------------------------
On CLE 7.0:
rpm -ivh cray-petsc-3.14.5.0-*-.x86_64.rpm
The "*" in the install command represents compiler version combinations.
To make this the default version,
on CLE 7.0 execute
/opt/cray/pe/admin-pe/set_default_files/set_default_petsc_3.14.5.0
License:
--------
Except for the third party modules and software licensed by Cray
through proprietary agreements, components, files or programs
contained within this package or product are Copyright 2001-2021
Cray Inc.
Attribution notices for open source licensed software contained in
this package are detailed in the file:
/opt/cray/petsc/3.14.5.0/ATTRIBUTIONS_petsc3.14.5.0.txt
################################################################################
Craypkg-gen 1.3.18
==============
Release Date:
-------------
September 2021
Purpose:
--------
- Enable Intel module generation inside a chroot.
Dependencies:
-------------
The craypkg-gen 1.3.18 release is supported on the following Cray
systems running Cray Linux Environment (CLE) operating system:
o Cray XC/XE/XK systems with CLE version 5.2 or later.
Driver support for integrating Third Party C, C++, and Fortran libraries
through .pc files using pkg-config is used in CrayPE 2.x and later
Limitation:
-----------
o Library dependencies for static libraries are not added to the .pc files
for keywords Requires.private and Libs.private. A warning is issued by
the craypkg-gen tool to advise users to add this information to the
libraries .pc files.
o RPM limits packages to 4GB
Documentation:
--------------
Man pages for craypkg-gen are found by executing ‘module load craypkg-gen’
and then ‘man craypkg-gen’ See
http://www.freedesktop.org/wiki/Software/pkg-config for a pkg-config
introduction.
Examples for creating modulefiles for Intel, PGI and Python are included in
the craypkg-gen ‘doc’ directory:
/opt/cray/craypkg-gen/1.3.18/doc/intel_example.txt
/opt/cray/craypkg-gen/1.3.18/doc/pgi_example.txt
/opt/cray/craypkg-gen/1.3.18/doc/python_example.txt
Example:
As an example, the Intel 16.0.3.210 compiler was recently released.
After installing the compiler the administrator creates a modulefile for
this release by executing the following commands:
# module load craypkg-gen
# craypkg-gen -m /opt/intel/compilers_and_libraries_2016.3.210
This version of the Intel compiler is made default by executing the
command:
# /opt/admin-pe/set_default_craypkg/set_default_intel_16.0.3.210
Installation instructions:
--------------------------
rpm -ivh craypkg-gen-1.3.18-*-0.sles15sp1.202108181633.67974629b6697.x86_64.rpm
To change the product version to default after installation:
/opt/cray/pe/admin-pe/set_default_files/set_default_craypkg-gen_1.3.18
Product description:
The craypkg-gen 1.3.18 utility provides the system administrator
a tool to integrate third party software with the Cray software stack.
Craypkg-gen assists with integration by creating .pc files for C, C++, and
Fortran libraries, pkg-config enabled modulefiles and RPMs.
The workflow for using craypkg-gen is
1) Build the open source software
2) Create .pc files for libraries
3) Create pkg-config enabled modulefiles
4) Customize pkg-config and modulefiles if needed
5) Package rpms
6) Install the rpms on the Cray system
Certain components, files or programs contained within this package or product
are Copyright 2013-2021 Hewlett Packard Enterprise Development LP.
################################################################################
cray-python 3.9.4.1
===================
Release Date:
-------------
September 2021
Purpose:
--------
The cray-python 3.9.4.1 release contains
python 3.9.4
numpy 1.20.1
scipy 1.6.2
mpi4py 3.0.3
dask 2021.4.0
Cray Python is an implementation of the Python programming language for the Cray
Programming Environment. The numpy and scipy modules are configured to call Cray
Libsci routines. The mpi4py module is configured to call Cray MPICH routines.
Cray Python is designed to run Python codes on the compute nodes of an HPE
supercomputer. HPE does not make changes to the Python source or any of its
libraries nor does it plan to make changes in future releases.
Product and OS Dependencies:
----------------------------
The cray-python 3.9.4.1 release is supported on
- Cray XC systems running CLE 7.0 or later operating systems
- Cray EX systems running SLES 15
Documentation:
--------------
https://www.python.org/doc
Modulefile:
---------------------
module load cray-python/3.9.4.1
Installation:
-------------
rpm -ihv cray-python-3.9.4.1-202108131723_038f7ca-3.sles15.x86_64.rpm
To make this the default version, execute:
/opt/admin-pe/set_default_files/set_default_python_3.9.4.1
Certain components, files or programs contained within this package or
product are © Copyright 2021 Hewlett Packard Enterprise Development LP
################################################################################
cray-R 4.1.1.0
============
Release Date:
-------------
September 2021
Purpose:
--------
The cray-R 4.1.1.0 release.
cray-R is configured to call cray-libsci routines.
Product and OS Dependencies:
----------------------------
The cray-R 4.1.1.0 release is supported on
- Cray XC systems running CLE 7.0 or later operating systems
- Cray Shasta and Cray Everest systems
Documentation:
--------------
https://cran.r-project.org/manuals.html
Modulefile:
---------------------
module load cray-R/4.1.1.0
Installation:
-------------
rpm -ihv cray-R-4.1.1.0-202108160555.7c237fd116155-01.sles15.x86_64.rpm
To make this the default version, execute:
/opt/admin-pe/set_default_files/set_default_R_4.1.1.0
Certain components, files or programs contained within this package or product are
Copyright 2018-2021 Hewlett Packard Enterprise Development LP
################################################################################
Cray Message Passing Toolkit 21.09:
==================================
SNP Launcher 7.7.18
==================
Release Date:
--------------
September 2021
Purpose:
--------
The Single Node Parallel (SNP) Launcher allows a user
to launch single node MPI applications on Service MAMU nodes.
Please see the CLE documentation for further information about
Service MAMU nodes.
Product and OS Dependencies:
----------------------------
The Cray SNP Launcher 7.7.18 release is supported on the following
Cray systems:
- Cray XC systems with CLE version 7.0 or later
Product and OS Dependencies by network type:
-------------------------------------------------------+
| Aries (XC30) |
--------------------------+---------------------------+
craype | >= 2.4.0 |
--------------------------+---------------------------+
pmi | >= 5.0.4 |
--------------------------+---------------------------+
cray-libugni | >= 5.0 |
--------------------------+---------------------------+
cray-libugni-devel | >= 5.0 |
--------------------------+---------------------------+
cray-libudreg | >= 2.3.2 |
--------------------------+---------------------------+
cray-libudreg-devel | >= 2.3.2 |
--------------------------+---------------------------+
cray-libxpmem | >= 0.1 |
--------------------------+---------------------------+
cray-libxpmem-devel | >= 0.1 |
--------------------------+---------------------------+
cray-libdmapp | >= 7.0.1 |
--------------------------+---------------------------+
cray-libdmapp-devel | >= 7.0.1 |
--------------------------+---------------------------+
alps | default |
--------------------------+---------------------------+
Exact compiler versions supported by Cray vary for each PE monthly
release. Please refer to the monthly PE Release Announcement that
corresponds to this version of CMPT for the final list of supported
compiler versions.
Documentation:
--------------
For more information see the mpiexec(1) man page after
loading the cray-snplauncher module.
Installation:
------------
For XC (x86_64) systems, the Craype-installer must be used to
install this release. Please see the PE release announcement that
corresponds to this version of Cray MPT for a more information on
which Craype-installer version to use.
Certain components, files or programs contained within this package or
product are Copyright 2007-2021 Hewlett Packard Enterprise Development LP
===================================================================
To re-display cray-snplauncher/7.7.18 copyright information,
type: less /opt/cray/snplauncher/7.7.18/COPYRIGHT
To re-display cray-snplauncher/7.7.18 release information,
type: less /opt/cray/snplauncher/7.7.18/release_info
===================================================================
################################################################################
Cray-Stat 4.11.5
=============
Release Date:
-------------
August 2021
Purpose:
--------
This is a bug fix release.
- Added support for gathering stack traces on an Nvidia GPU.
To enable, the environment variable STAT_GDB must be set to either
cuda-gdb, which will require cuda-gdb to be available in PATH. Or it can
be set a specific debugger. We suggest the version of cuda-gdb packaged
with gdb4hpc, as in:
export STAT_GDB=/opt/cray/pe/gdb4hpc/$GDB4HPC_VERSION/libexec/cuda110-gdb-guard
After which stat-cl would be called using the options: -w -G -i
Product and OS Dependencies:
----------------------------
The Cray-Stat 4.11.5 release is supported on the following Cray systems:
- HPE/Cray XC systems with CLE 7.0 or later
- HPE/Cray CS systems with CentOS/RH 8.0 or later
- HPE/Cray Shasta systems with SLES 15 service pack 1 or later
- HPE Apollo systems with Slurm and RH 8.0 or later
- Baymax systems with RH 8.0 or later
Product Dependencies:
- Cray cray-cti rpm installed
- Cray cray-cdst-support rpm installed
NOTE: There are missing dependencies that cause stat-view to not work on some installations,
it will show up a failure to load xdot.py
- The simplest work-around is to load cray-stat 4.7.x or older to run stat-view.
- Or arrange to have the following packages installed:
python3-gobject, python3-gobject-Gdk, python3-cairo, python3-numpy and make sure
an openblas module is loaded if available.
Documentation:
--------------
https://computing.llnl.gov/code/STAT/
Installation Instructions:
-------------
Installation Instructions for .sles15sp2.x86_64: