-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathXC-PE-23.02-02-ReleaseNotes.txt
executable file
·1786 lines (1303 loc) · 64.6 KB
/
XC-PE-23.02-02-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
HPE Cray Compiling Environment (CCE) 15.0.1
===========================================
Release Date:
-------------
February 2023
Purpose:
--------
CCE 15.0.1 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 and Support with CCE 15.0.1:
-------------------------------------------
CCE 15.0.1
- Bug Fixes
- Fixed incorrect libraries linked with --gcc-toolchain option
- Add new feature as extension to the Fortran standard: Allow Arithmetic operator followed by
Unary operator. Also add Ansi message for -en.
- Add Fortran support for split DWARF and compressed DWARF:
- Split DWARF: -gsplit-dwarf={split, single} Set this command-line option to 'split' to
cause most DWARF information to be split into a separate .dwo file. The default is
single, which embeds DWARF information into the program binary as usual.
- Compressed DWARF: -gz={none, zlib, zlib-gnu} Set this command-line option to 'zlib' or
'zlib-gnu' to compress debug sections using the specified compression type. 'none' is
the default.
------------
CCE-15.0.0
- LLVM 15 base
- SVE Support (beta)
- Support for Intel Sapphire Rapids with High Bandwidth Memory
- Support for AMD Genoa
- Support for NVIDIA Grace (beta)
- Additions to existing DWARF Support includes
- AMD's heterogeneous DWARF in C/C++ is enabled by default. It can be disabled with the
'-gno-heterogeneous-dwarf' command-line option.
- Breakpoint and line number support in Fortran for GPU modules
- much-improved support for aggregate types in CPU modules
- The Fortran option -htcmalloc is deprecated and planned to be removed in CCE-16.0.0
- Complete support for AddressSanitizer & ThreadSanitizer for Fortran programs (CPU only).
Enabled using the command line option
-fsanitize=address|thread
The following options are recommended to be used when enabling sanitizers:
-g to ensure optimizations do not elide genuine code bugs
-hsystem_alloc to force use of system allocator, as opposed to tcmalloc as it is known to
produce spurious LSAN diagnostics (note that tcmalloc is deprecated and planned to be
removed in a future release).
Note: AddressSanitizer does not support Fortran COMMON variables.
- The following Fortran OpenACC 2.x/3.x features have been added in this release
- "finalize" clause on "exit data"
- "no_create" clause on structured data and compute constructs
- "if" clause on "host_data"
- The following OpenMP 5.x features have been added in this release
- "in_reduction" clause on "target" construct
- "error" directive (Fortran)
- "compare" clause on atomic construct (C/C++)
- "assume" and "assumes" directives (Fortran)
- "nothing" directive (Fortran)
- "otherwise" clause for metadirective (Fortran)
User and Application Impact:
----------------------------
CCE-15.0.1
User binaries built with the --gcc-toolchain option will now link to libraries
in the specified GCC toolchain. Binaries built with the --gcc-toolchain option
in CCE 14 and prior versions of CCE 15 may need to be rebuilt. Users who do not
use the --gcc-toolchain option are unaffected.
Signed constant or variable (integer or real) following arithmetic operator does not have to be
put in parentheses. The result is similar to gfortran.
-----------
CCE-15.0.0
C++ applications built using CCE 13 or earlier may need to be recompiled due to the significant
changes that were necessary to implement C++17. This is expected to be a one-time requirement.
Some non-standard Cray Fortran extensions supporting shorthand notation for logical operations
will be removed in a future release. CCE 14 will issue warning messages when these are
encountered, providing time to adapt the application to use standard Fortran.
Issues or Bugs Resolved:
------------------------
CCE 15.0.1:
-----------
CCE-15.0.1
CAST-28155 Request for enhancement of error reporting on a continuation line in CCE Fortran
CAST-28157 Internal Compiler Error on a ""select type"" line with CCE Fortran
CAST-29666 Fortran Compiler potentially incorrectly indexing arrays incorrectly in the SELECT TYPE construct
CAST-29704 CCE FE - internal compiler error with polymorphic
CAST-29910 HPE-Cray EX: Cray Fortran compiler RFE
CAST-31262 Cray compiler error
CAST-31374 Simple OMP offload code crashes the Cray fortran compiler at -O3, -O2, -O1, but not at -O0
CAST-31578 Difficulty debugging on EAS3: gdb can't print ftn variables with pointer attribute
CAST-31579 OpenMP offloading: incorrect result for atomic update on complex(8)
CAST-31666 CCE 15.0.0 & ROCm 5.3.0: Link errors with undefined reference due to --no-allow-shlib-undefined: .omp_offloading.img_start.cray_amdgcn-amd-amdhsa
CAST-31679 CCE 15.0.0 internal error on UMT compiler with -O0 -g - elevation of case 5369442858
CAST-31687 CCE 15.0.0 doesn't accept -o file.f with -eP? - Elevation of Case 5369474306
CAST-31726 Crayftn bug: zero-sized array assignment
CAST-31828 mfem: cast<Ty>() argument of incompatible type! - CCE 15.0.0, ROCM 5.4.0,<-O3,-O2>
-----------
CCE-15.0.0
CAST-31062 Compiler can overwrite source file
CAST-31033 Cannot find construct_x to match END directive with crayftn openmp offload
CAST-30937 optcg internal compiler error when compiling E3SM code
CAST-30918 CCE HIP failure compiling Trillinos -llvm::RegPressureTracker::recedeSkipDebugValues
CAST-30919 CCE HIP - Trilinos: Panzer and Intrepid2: Out of Registers (unit test build)
CAST-30920 CCE 14.0.2 fails compiling Trillinos unit test in llvm::ScheduleDAGMILive::scheduleMI
CAST-30905 Linking error when using malloc/new in OpenMP target regions
CAST-30834 Cray compiler internal error compiling Trillinos:Zoltan2 unit tests
CAST-30790 Compile error when using ?!$omp declare target? for nested subroutines
CAST-30781 omp loop construct not implemented in Cray ftn
CAST-30725 Compile error-INTERNAL COMPILER ERROR:
CAST-30549 LAMMPS CCE build failure when perftools or perftools-lite are loaded
CAST-30500 ftn omp target offload internal compiler error
CAST-30478 LAMMPS RIGID package build failure with CCE14+ROCm5.1
CAST-30362 CCE 14 Fortran OpenMP omp_target_associate_ptr() fails with HSA_XNACK=1
CAST-30308 CCE FTN OpenMP ICE
CAST-30293 CCE+Fortran+OpenMP ExaStar/thornado runtime error
CAST-30227 CCE+Fortran+OpenMP Internal Compiler Error
CAST-30226 CCE 14 Fortran OpenMP Compile and Linking issue
CAST-29985 Cray compiler support for atomic update in target region for complex variables
CAST-29723 OLCFDEV-765 provided code produces compile, link, runtime errors
CAST-29649 Invalid bitcast compile error using provided code
CAST-28950 CCE OpenMP OMP_WAIT_POLICY default (auto) performing poorly
CAST-27337 cce-sve ftn compile-time abort
CAST-27314 Fortran array subsections not passing to a subroutine when OpenMP in use
CAST-27065 CCE fortran "Unexpected partitioned loop schedule type" when craype-accel-host module not loaded
CAST-26890 [SVE] ftn segfault comiling code with -O2
CAST-26658 Poor performance of SW4CK Kernels
CAST-25678 RFE: Add compiler option -fopenmp-simd
CAST-15724 crayftn segfault with MPI user defined reduction
Product and OS Dependencies:
----------------------------
This CCE release is supported on
- Cray XC systems running CLE 7.0 UP03
- Cray CS systems running RedHat 8
- HPE Cray supercomputer systems running CSM with COS 2.1.X (SLES15 SP2) or COS 2.2.X (SLES15 SP3)
- HPE Cray supercomputer systems running HPCM with SLES15 SP2 or SLES15 SP3
- HPE Cray supercomputer systems running HPCM with RHEL 8.4
- HPE Apollo 2000 Gen10Plus systems running RedHat 8
- HPE Apollo 80 systems running RedHat 8
AMD GPU offloading support requires at least ROCm 5.0
Notes and Limitations:
----------------------
None
Documentation:
--------------
- S-5212 Cray Compiling Environment Release Overview (15.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-15.0.1-202301182246.130abdd91aed1-5.sles15sp2.x86_64.rpm.x86_64.rpm
The following script will set CCE version 15.0.1 default:
/opt/cray/pe/admin-pe/set_default_files/set_default_cce_15.0.1
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 -2022 Hewlett Packard Enterprise Development LP.
Attribution notices for open source licensed software for this
package are detailed in the file:
/opt/cray/pe/cce/15.0.1/ATTRIBUTIONS_15.0.txt
################################################################################
Cray Common Tools Interface (CTI) 2.16.0:
======================================
Release Date:
--------------
September 2022
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.
Options and interfaces can be found in the cti(1) and cti(3) manpages.
Changelog:
---------
=======================================================================
## [2.16.0] - 2022-09-07 (22.10)
=======================================================================
### Bug Fixes
* PE-42842: Expand WLM checks based on system type
### Features
* Implement cti_releaseApp function to allow jobs to continue past CTI exit
* Add Slurm function submitBatchScript to launch jobs via sbatch script
* Enable attaching to PALS jobs outside of interactive allocation
=======================================================================
## [2.15.14] - 2022-08-03 (22.09)
=======================================================================
### Bug Fixes
* CTI Frontend daemon conflicting with Dyninst breakpoints
=======================================================================
## [2.15.13] - 2022-07-07 (22.08)
=======================================================================
### Bug Fixes
* Capture srun stderr output during launch
* Default to HSN interface for HPCM PALS and HPCM Slurm
* Copy environment to back end in generic/ssh implementation
### Features
* Add Slurm multi-cluster / allocation detection
* Switch to HPCM PALS highspeed network
* Added support for rhel86 x86 - PE-41140
=======================================================================
## [2.15.12] - 2022-05-06 (22.06)
=======================================================================
### Bug Fixes
* Resolve ordering issues with HPCM PALS backend
* Ending main loop from signal handler in daemon will also end in-progress MPIR launch
### Features
* Added support for sles15sp4 x86 - PE-39146 #423
* Added autogen changelog/release notes functionality - PE-40699 #421
=======================================================================
## [2.15.11] - 2022-04-14 (22.05)
=======================================================================
### Bug Fixes
* PALS implementation's getApid function - PE-40533
* Re-add CTI manpages to RPM
### Features
* Update release notes
* Added sles15sp1 aarch64 jenkinsfile - PE-36379 #418
* Added support for rhel85 x86 - PE-40102
=======================================================================
## [2.15.10] - 2022-03-21 (22.04)
=======================================================================
* Update Shasta PALS implementation to use PALS utilities and deprecate
the previous Shasta PALS API
* Update the HPCM PALS implementations to use PALS utilities
This release fixes the following bugs:
* Fix the usage of the `aprun` launcher with HPCM PALS instead of
the default `mpiexec` launcher
* Fix HPCM PALS backend startup when node hostnames are in xname format
=======================================================================
## [2.15.9] - 2022-01-21 (22.02)
=======================================================================
* Default Shasta PALS node count in job launches to 1
* Include `--overlap` in Slurm tool daemon launches for Slurm versions
20.11 and above
=======================================================================
## [2.15.8] - 2021-12-01 (21.12)
=======================================================================
* Added user documentation manpage cti(1), and developer
documentation manpage cti(3).
* Preliminary support for the Flux workload manager.
Note that passwordless SSH access to compute nodes must be
configured for Flux support. This limitation will be
removed in a future release.
* Flux, Shasta PALS, and ALPS support can be disabled at
compile-time if development headers are not available.
* Updated gen compilers to cray-gcc-10.3.0
=======================================================================
## [2.15.7] - 2021-10-21 (21.11)
=======================================================================
* Fix potential deadlock during job launch / attach for HPCM PALS systems,
as well as the generic SSH interface
* Fix Slurm job attach when running on compute node where hostname does
not match the Slurm node name
* Add environment variable CTI_SLURM_DAEMON_GRES to set the --gres
for Slurm daemon launches. For Slurm versions 21.08 and newer, this
should be set to an empty string (see SchedMD bug)
https://bugs.schedmd.com/show_bug.cgi?id=12642
Product and OS Dependencies:
-----------------------------
The Cray CTI 2.16.0 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.4 or later
- HPE/Cray Shasta systems with SLES 15 service pack 2 or later
- HPE Apollo systems with Slurm and RH 8.4 or later
- Baymax systems with RH 8.4 or later
Product Dependencies:
- 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 .sles15sp1.x86_64:
=============================================
rpm -ivh cray-cti-2.16.0-9.sles15sp1.x86_64.rpm
To make cti 2.16.0 the default version of cray-cti, execute:
/opt/cray/admin-pe/set_default_files/set_default_cray-cti-2.16.0
Certain components, files or programs contained within this package or
product are Copyright 2010-2022 Hewlett Packard Enterprise Development LP.
################################################################################
Cray Common Tools Interface (CTI) 2.17.2:
======================================
Release Date:
--------------
January 2023
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.
Options and interfaces can be found in the cti(1) and cti(3) manpages.
Changelog:
---------
CTI 2.17.1 (PE 22.12) contains a new feature, file deduplication, for
Slurm and PALS workload managers. If enabled, CTI will run a check on
compute nodes to determine if files can be excluded from the shipped
package. This can significantly improve application startup time.
To enable, set the environment variable CTI_DEDUPLICATE_FILES=1.
NOTE:
Race condition workaround for PALS 1.2.3 in CTI 2.17.0 (22.11)
In PALS 1.2.3, there is a race condition between the tool launcher releasing a
job from the startup barrier and the job actually getting to the startup
barrier. This can result in the job receiving the startup barrier release
signal before it actually arrives there, resulting in the job getting stuck
in the barrier. As a workaround, the environment variable CTI_PALS_BARRIER_RELEASE_DELAY
can be set to add a delay between job startup and barrier release. If set to a
positve integer n, CTI will wait n seconds between starting a job and releasing
it from the barrier on PALS. A delay as small as one second works in most cases.
=======================================================================
## [2.17.2] - 2023-01-09 (23.02)
=======================================================================
### Bug Fixes
* Fix broken pkg-config --libs path in relocated install
* PE-45079 - Added dynamic update of copyrights to installed files
* PE-44117: Remove unused session directories on backend
* PE-44686: Detect library fork in destructors
### Features
* PE-44972: Support Slurm wrapper scripts including Xalt
* PE-44594: Launch tool helpers in container if enabled
=======================================================================
## [2.17.1] - 2022-11-04 (22.12)
=======================================================================
### Bug Fixes
* PE-43943: Remove UAI workaround from hostname detection
* PE-43805 Check library path in library auditor
* PE-43298: Override system Sbcast send-libs setting
### Features
* PE-43465: File shipping deduplication for Slurm and PALS
* PE-43547 - Added support for sp3/4 aarch64
=======================================================================
## [2.17.0] - 2022-10-05 (22.11)
=======================================================================
### Bug Fixes
* Add CTI_PALS_BARRIER_RELEASE_DELAY workaround on PALS systems
* PE-43308: Fix PALS application status check
* PE-43171: Skip invalid libraries when determining module base address
* Fix failure to deliver some signals via cti_killApp on ALPS
### Features
* PE-43234: Add cti_containsSymbols to check for presence of specific symbols in binary
=======================================================================
## [2.16.0] - 2022-09-07 (22.10)
=======================================================================
### Bug Fixes
* PE-42842: Expand WLM checks based on system type
### Features
* Implement cti_releaseApp function to allow jobs to continue past CTI exit
* Add Slurm function submitBatchScript to launch jobs via sbatch script
* Enable attaching to PALS jobs outside of interactive allocation
=======================================================================
## [2.15.14] - 2022-08-03 (22.09)
=======================================================================
### Bug Fixes
* CTI Frontend daemon conflicting with Dyninst breakpoints
=======================================================================
## [2.15.13] - 2022-07-07 (22.08)
=======================================================================
### Bug Fixes
* Capture srun stderr output during launch
* Default to HSN interface for HPCM PALS and HPCM Slurm
* Copy environment to back end in generic/ssh implementation
### Features
* Add Slurm multi-cluster / allocation detection
* Switch to HPCM PALS highspeed network
* Added support for rhel86 x86 - PE-41140
=======================================================================
## [2.15.12] - 2022-05-06 (22.06)
=======================================================================
### Bug Fixes
* Resolve ordering issues with HPCM PALS backend
* Ending main loop from signal handler in daemon will also end in-progress MPIR launch
### Features
* Added support for sles15sp4 x86 - PE-39146 #423
* Added autogen changelog/release notes functionality - PE-40699 #421
=======================================================================
## [2.15.11] - 2022-04-14 (22.05)
=======================================================================
### Bug Fixes
* PALS implementation's getApid function - PE-40533
* Re-add CTI manpages to RPM
### Features
* Update release notes
* Added sles15sp1 aarch64 jenkinsfile - PE-36379 #418
* Added support for rhel85 x86 - PE-40102
=======================================================================
## [2.15.10] - 2022-03-21 (22.04)
=======================================================================
* Update Shasta PALS implementation to use PALS utilities and deprecate
the previous Shasta PALS API
* Update the HPCM PALS implementations to use PALS utilities
This release fixes the following bugs:
* Fix the usage of the `aprun` launcher with HPCM PALS instead of
the default `mpiexec` launcher
* Fix HPCM PALS backend startup when node hostnames are in xname format
=======================================================================
## [2.15.9] - 2022-01-21 (22.02)
=======================================================================
* Default Shasta PALS node count in job launches to 1
* Include `--overlap` in Slurm tool daemon launches for Slurm versions
20.11 and above
=======================================================================
## [2.15.8] - 2021-12-01 (21.12)
=======================================================================
* Added user documentation manpage cti(1), and developer
documentation manpage cti(3).
* Preliminary support for the Flux workload manager.
Note that passwordless SSH access to compute nodes must be
configured for Flux support. This limitation will be
removed in a future release.
* Flux, Shasta PALS, and ALPS support can be disabled at
compile-time if development headers are not available.
* Updated gen compilers to cray-gcc-10.3.0
=======================================================================
## [2.15.7] - 2021-10-21 (21.11)
=======================================================================
* Fix potential deadlock during job launch / attach for HPCM PALS systems,
as well as the generic SSH interface
* Fix Slurm job attach when running on compute node where hostname does
not match the Slurm node name
* Add environment variable CTI_SLURM_DAEMON_GRES to set the --gres
for Slurm daemon launches. For Slurm versions 21.08 and newer, this
should be set to an empty string (see SchedMD bug)
https://bugs.schedmd.com/show_bug.cgi?id=12642
Product and OS Dependencies:
-----------------------------
The Cray CTI 2.17.2 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.4 or later
- HPE/Cray Shasta systems with SLES 15 service pack 2 or later
- HPE Apollo systems with Slurm and RH 8.6 or later
- Baymax systems with RH 8.4 or later
Product Dependencies:
- 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 .sles15sp1.x86_64:
=============================================
rpm -ivh cray-cti-2.17.2-2.sles15sp1.x86_64.rpm
To make cti 2.17.2 the default version of cray-cti, execute:
/opt/cray/admin-pe/set_default_files/set_default_cray-cti-2.17.2
Certain components, files or programs contained within this package or
product are Copyright 2010-2023 Hewlett Packard Enterprise Development LP.
################################################################################
HDF5 1.12.2.3
=============
Release Date:
-------------
February 2023
Purpose:
--------
This HDF5 release contains the following:
* Bug-fix for CAST-31112: Fix missing conflict declarations in modulefiles
Product and OS Dependencies:
----------------------------
The HDF5 release is supported on the following systems:
* Cray EX systems with CLE 7.0 and later
* Cray XC systems with CLE 7.0 UP03 and later
* Cray Apollo systems with RHEL/CentOS 8
The HDF5 1.12.2.3 release requires the following software products:
* Cray EX systems:
CrayPE 2.1.2 or later
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
AOCC 3.0 or later
ROCm 4.3 or later
* Cray XC systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
* Cray Apollo systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 10.3 or later
Intel 2021.4 or later
AOCC 3.1 or later
Notes and Limitations:
----------------------
Users are encouraged to use the Cray compiler scripts (cc, ftn, CC)
to include the HDF5 header files and link in the HDF5 libraries,
rather than the HDF5 compiler scripts (h5cc, h5fc, h5c++) included
in the release.
Documentation:
--------------
http://www.hdfgroup.org/HDF5/doc/index.html
Modulefile:
-----------
module load cray-hdf5
OR
module load cray-hdf5-parallel
Product description:
--------------------
HDF5 is a data model, library, and file format for storing and managing data.
It supports an unlimited variety of datatypes, and is designed for flexible
and efficient I/O and for high volume and complex data. HDF5 is portable and
is extensible, allowing applications to evolve in their use of HDF5. The HDF5
Technology suite includes tools and applications for managing, manipulating,
viewing, and analyzing data in the HDF5 format.
Installation:
-------------
Installation instructions for CLE 7.0 and later:
================================================
rpm -ivh cray-hdf5-1.12.2.3-*202301032123.93923382e3b0f-0.sles15.x86_64.rpm
The "*" in the install command represents compiler version combinations.
To make this the default version, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_hdf5_1.12.2.3
Certain components, files or programs contained within this package or product
are Copyright 2019-2023 Hewlett Packard Enterprise Development LP.
################################################################################
NetCDF 4.9.0.3
==============
Release Date:
-------------
February 2023
Purpose:
--------
This NetCDF release contains the following:
* Bug-fix for CAST-31112: Fix missing conflict declarations in modulefiles
* Bug-fix for CAST-29967 (XC): Fix *-config flag paths in Cray PE 22.03/NetCDF 4.8.1, Parallel NetCDF 1.12.2
Product and OS Dependencies:
----------------------------
The NetCDF release is supported on the following systems:
* Cray EX systems with CLE 7.0 or later
* Cray XC systems with CLE 7.0 UP03 and later
* Cray Apollo systems with RHEL/CentOS 8
The NetCDF 4.9.0.3 release requires the following software products:
Cray HDF5 1.12.1.*
* Cray EX systems:
CrayPE 2.1.2 or later
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
AOCC 3.0 or later
ROCm 4.3 or later
* Cray XC systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
* Cray Apollo systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 10.3 or later
Intel 2021.4 or later
AOCC 3.1 or later
Notes and Limitations:
----------------------
For certain F77 source files, when compiling with gcc/10 & gcc/11 & gcc/12, it may be necessary
to configure/compile with:
export FCFLAGS="-fallow-argument-mismatch"
export FFLAGS="-fallow-argument-mismatch"
This will turn mismatch errors between actual and dummy argument lists to warnings.
See:
https://github.com/Unidata/netcdf-fortran/issues/212
https://gcc.gnu.org/gcc-10/changes.html
Unidata now packages Netcdf-4 and legacy Netcdf-3 separately. Cray has
decided not to continue supplying the legacy Netcdf-3 package. Due to CCE
changes a version of netcdf built with "-sreal64" is neither needed nor
provided.
NetCDF is supported on the host CPU but not on the accelerator.
Documentation:
--------------
http://www.unidata.ucar.edu/software/netcdf/docs
Modulefile:
-----------
module load cray-netcdf
OR
module load cray-netcdf-hdf5parallel
Product description:
--------------------
NetCDF (network Common Data Form) is a set of interfaces for array-oriented
data access and a freely-distributed collection of data access libraries for
C, Fortran, C++, Java, and other languages. The netCDF libraries support a
machine-independent format for representing scientific data. Together, the
interfaces, libraries, and format support the creation, access, and sharing
of scientific data.
Installation:
-------------
Installation instructions for CLE 7.0 and later:
================================================
rpm -ivh cray-netcdf-4.9.0.3-*202301041721.ef4ba8862406c-0.sles15.x86_64.rpm
The "*" in the install command represents compiler version combinations.
To make this the default version, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_netcdf_4.9.0.3
Certain components, files or programs contained within this package or product
are Copyright 2019-2023 Hewlett Packard Enterprise Development LP.
################################################################################
cray-papi
=================
Release date:
-------------
February 2023
Purpose:
--------
New version of papi 7.0.0.1 release 2
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-2022 Hewlett Packard Enterprise Development LP
################################################################################
Parallel NetCDF 1.12.3.3
========================
Release Date:
-------------
February 2023
Purpose:
--------
This Parallel NetCDF release contains the following:
* Bug-fix for CAST-31112: Fix missing conflict declarations in modulefiles
* Bug-fix for CAST-29967 (XC): Fix *-config flag paths in
Cray PE 22.03/NetCDF 4.8.1, Parallel NetCDF 1.12.2
* Bug-fix for CAST-29986 (XC): Fix pnetcdf-config in Cray PE 22.05/Parallel NetCDF 1.12.2
See the Parallel NetCDF documentation for details and usage information.
Product and OS Dependencies:
----------------------------
This Parallel NetCDF release is supported on on the following systems:
* Cray EX systems with CLE 7.0 and later
* Cray XC systems with CLE 7.0 UP03 and later
* Cray Apollo systems with RHEL/CentOS 8
The Parallel NetCDF 1.12.3.3 release requires the following software
products:
* Cray EX systems:
CrayPE 2.1.2 or later
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
AOCC 3.0 or later
ROCm 4.3 or later
* Cray XC systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 9.0 or later
Intel 2021.0 or later
Nvidia 20.7.0 or later
* Cray Apollo systems:
Cray MPT 8.0 or later, or cray-mvapich 2.3.2 or later for A64FX-based systems
One or more compilers:
CCE 14.0 or later
GCC 10.3 or later
Intel 2021.4 or later
AOCC 3.1 or later
Notes and Limitations:
----------------------
For certain F77 source files, when compiling with gcc/10 & gcc/11 & gcc/12, it may be necessary
to configure/compile with:
export FCFLAGS="-fallow-argument-mismatch"
export FFLAGS="-fallow-argument-mismatch"
This will turn mismatch errors between actual and dummy argument lists to warnings.
See:
https://github.com/Unidata/netcdf-fortran/issues/212
https://gcc.gnu.org/gcc-10/changes.html
Documentation:
--------------
https://parallel-netcdf.github.io/wiki/Documentation.html
Modulefile:
-----------
module load cray-parallel-netcdf
Product Description:
--------------------
Parallel NetCDF is a library providing high-performance I/O while
maintaining file-format compatibility with Unidata's NetCDF.
Installation:
-------------
Installation instructions for CLE 7.0 or later:
===============================================
rpm -ivh cray-parallel-netcdf-1.12.3.3-*202301032130.c7bb09ea591cd-0.sles15.x86_64.rpm
The "*" in the install command represents compiler version combinations.
To make this the default version, execute:
/opt/cray/pe/admin-pe/set_default_files/set_default_parallel-netcdf_1.12.3.3
Certain components, files or programs contained within this package or product
are Copyright 2019-2023 Hewlett Packard Enterprise Development LP.
################################################################################
cray-python 3.9.13.2
====================
Release Date
------------
September 2022
Purpose
-------
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.
The cray-python 3.9.13.2 release contains
python 3.9.13
numpy 1.21.5
scipy 1.6.2
mpi4py 3.1.3
dask 2022.2.1
Product and OS Dependencies
---------------------------
The cray-python 3.9.13.2 release is supported on
- Cray EX systems running SLES 15 or RHEL 8
- Cray XC systems running SLES 15
Documentation
-------------
https://www.python.org/doc
Changelog
---------
https://docs.python.org/release/3.9.13/whatsnew/changelog.html
Modulefile
----------
module load cray-python/3.9.13.2
Installation
------------
rpm -ihv cray-python-3.9.13.2-202207292200_5a2fb49-1.sles15.x86_64.rpm
To make this the default version, execute
/opt/admin-pe/set_default_files/set_default_python_3.9.13.2
Certain components, files, or programs contained within this package are
© Copyright 2021-2022 Hewlett Packard Enterprise Development LP
################################################################################
Cray-Stat 4.11.13
===================
Release Date:
-------------