forked from AMReX-Codes/amrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
2658 lines (1473 loc) · 76.3 KB
/
CHANGES
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
# 23.06
-- Implement Checkpoint, Restart, and Plotfile for pure SOA (#3332)
-- Clang: -Wno-null-conversion for Lexer (#3333)
-- Fix Pure SOA RedistributeGPU: size from ptile, not the AoS (#3330)
-- cleaning and fixes for PureSoA ParticleTile (#3327)
-- RealBox: Accept RealVect Setters (#3328)
-- Port InitRandom for pure SoA (#3325)
-- FillBoundary for Spherical Coordinates (#3286)
-- Fix: AMReXConfig.cmake Multi-Dim (#3324)
-- HypreSolver: a new interface for Hypre (#3269)
-- Fix Tests/EB_CNS in 2D (#3323)
-- Fix CodeQL warnings (#3318)
-- Add get/set of AMRErrorTagInfo in AMRErrorTag (#3317)
-- GNU Make: allow skipping paths when running clang-tidy (#3316)
-- Multi-Dim Buildsystem Support (#3309)
-- GNU Make: use CLANG_TIDY_CONFIG_FILE if it's set (#3315)
-- Refactor Parser (#3265)
-- Enable binning for ParticleTileData (#3307)
-- ParticleTile: More SoA Updates (#3305)
-- HIP Debug Build (#3311)
-- Run PODVector::push_back on GPU (#3308)
-- ParticleInit: Implicit Int Float Conversion (#3304)
-- More constexpr if for pure soa in RedistributeCPU (#3299)
-- MLEBNodeFDLaplacian: Implement the alpha term (#3301)
-- Fixing the ParIter numParticles functions for pure SOA (#3303)
-- Add .mailmap (#3295)
-- Implement StructOfArray::empty() and ParticleTile::empty() for pure SoA (#3296)
-- port the old BoxLib faverage tool to AMReX (#3293)
-- GNU Make: add -pthread for HIP (#3294)
-- Github Cache: Path and Hypre (#3288)
# 23.05
-- Support SoA-Only Particles (#2878)
Conduit: Update ParticleTile API (#3260)
Fix default template parameter for ParConstIter (#3262)
Update SortParticlesForDeposition for pure SoA (#3277)
Implement increment for pure SoA (#3278)
Fix RealVect version of pos() for pure SoA (#3283)
Fix increment for pure SoA (follow on to #3278) (#3284)
-- handle divide by 0 in signed distance function (#3279)
-- Work-Around: CUDA 12.1 Non-Default Codelines (#3275)
-- CMake: Fix CUDA Options Order (#3274)
-- Fix bug in EBNodeFDLap (#3271)
-- update ci to use ascent 0.9.1 (#3266)
-- Add powi function in AMReX_Math.H (#3251)
-- update hiprand header path (#3252)
-- Installation using configure: Forgot to install Parser headers (#3249)
-- ParticleTileData: No Restrict in Storage (#3245)
-- CI: Retry Apt Repos (#3242)
-- Silence SWFFT (#3240)
-- Support complete elliptic integrals of 1st and 2nd type in Parser (#3225)
-- Rework handling of roundoff domain extent (#3199)
Fix periodic boundary bug in #3199 (#3243)
Fix Roundoff Domain (#3247)
Roundoff errors in computeRoundoffDomain (#3255)
Ensure that particles are always < rhi after applying periodic bcs. (#3263)
-- Fix: queryAdd for resizing vectors (#3220)
# 23.04
-- Speedup clang tidy (#3219)
-- Use ccache in Github Actions (#3218)
-- Clang-tidy fixes
#3227, #3224, #3222, #3206, #3203, #3202, #3201, #3200, #3197, #3190, #3188, #3176
-- bug fix in creating EB from STL files (#3223)
-- Fix bug in MLEBABecLap getEBFluxes(). (#3217)
-- Add build option for Intel SYCL AOT GRF mode (#3173)
-- SYCL sub-group size (#3180)
-- Warning about CPU core oversubscription (#3211)
-- Fix issues in ParticleContainerBase (#3208)
-- Add assert that we are not inside threaded region when InitRandom is called. (#3204)
-- Sorting for faster current deposition (#3198)
-- Update SUNDIALS NVector constructors (#3165)
-- ReduceToPlane (#3187)
-- ParticleContainer: Resize runtime components (#3186)
-- SYCL: Tweak #3164 and switch to multi_ptr for sincos (#3185)
-- Fix race condition with TinyProfiler for memory (#3169)
# 23.03
-- GNU Make: Allow customizing tmp_build_dir (#3177)
fix recently introduced tmp_build_dir build bug (#3179)
-- GNU Make: Allow choice of Intel compiler variant (#3175)
-- CMake: Parallel HDF5 Detection (#3170)
-- TableData: Relax the static assertion (#3174)
-- SYCL: Group and subgroup size (#3172)
-- Add Make.local-pre to gitignore (#3171)
-- New functions for getting data in cell or line. (#3166)
-- SYCL: Optimization of small reduction (#3167)
-- amrex::Math: No longer need to use sycl math functions (#3164)
-- gitignore: Editors & IDEs (#3163)
-- SYCL Device Info (#3161)
-- SYCL AOT: Fix warning (#3159)
-- GNU Make: make it an error if intel gpu arch for aot is unknown (#3157)
-- Update Build Systems for oneAPI (#3123)
SYCL: Fix AOT (#3155)
-- CI: Add sundials (#3153)
-- Add static_assert to Mpi_typemap<GpuComplex> (#3154)
-- SUNDIALS: Replace SUNDIALS math macros with std math functions (#3151)
-- Fix case where a norm is 1e-15 but not technically zero (#3149)
-- Fix bug in async IO for particles (#3150)
-- DPCPP -> SYCL (#3140)
-- Add MPI support to GpuComplex (#3148)
-- GNU Make: Add support for Intel LLVM compiler in CPU builds (#3126)
-- SYCL: Fix the order of destruction (#3146)
-- Adjust subgroup size for Intel GPUs (#3139)
-- Runtime parameters for Signal handling controls (#3125)
-- FillPatcher: Update interpolation in time (#3106)
-- AmrLevel::FillPatch: Abort if grids are not properly nested for GPU or EB (#3098)
-- Fix FabArray::shift (#3147)
-- Fix nl test (#3142)
-- Fix bug in Device::Finalize: Forgot to clear streams (#3143)
-- Add a compute face-centered velocity gradient in MLEBTensor (#3133)
-- Test: Reinit AMReX (#3141)
-- Functional: Less -> Minimum, Greater -> Maximum (#3138)
-- Profile memory allocations of the CArena using TinyProfiler (#3105)
Fix #3105: missing include (#3134)
Initialize TinyProfiler earlier only for memory (#3137)
-- PODVector: Add some stream synchronization (#3130)
-- SENSIE CI: run on ubuntu-20.04. 18.04 is deprecated. (#3131)
-- NeighborParticles: memcpy -> memcpy_async (#3129)
-- Rename AMReX_CUDA_MAX_THREADS to AMReX_GPU_MAX_THREADS (#3115)
-- CI: NVHPC 23.1 (#3122)
NVHPC: CUDA (#3124)
-- NVHPC: OpenMP Atomic Capture Fixed (#2378)
-- oneAPI: Work around compiler bug (#3121)
-- Multi-grid NeighborList GPU Sync (#3120)
-- Modify the neighbor particles test to also test selectActualNeighbors. (#3118)
-- Remove Atomic::Inc and Dec (#3117)
# 23.02
-- update github actions to use ascent 0.9.0 release (#3114)
-- CMake 3.18+: Stay OLD CUDA_ARCHITECTURES Policy (#3112)
-- OpenBCSolver: Fix reuse (#3111)
-- CMake: Fix AMD Flags for ROCm 5.5 and Bump cmake minimum version to
3.18 (#3107)
-- Check component and derive names for `canDerive` and `get` (#3109)
-- CMake clean up (#3100)
-- Replace sprintf with snprintf to fix compiler warnings (#3108)
-- ParmParse: support nan and inf (#3101)
-- CMake: add offload linker option --whole-archive for ROCm hipcc (#3097)
-- SinCos: AppleClang Fix (#3094) (#3096)
-- CMake: Make hypre and PETSc available only if it's not 1D. (#3093)
-- introduce amrex code of conduct (#3092)
-- SYCL: Reinforce device compilation preprocessor conditionals (#3090)
-- New knapsack function to reduce the cost of data movement in load
balancing (#3079)
-- GPU single stream region and no sync region (#3073)
-- Check for small cell before checking for multi-cut (#3088)
-- Improve AmrMesh::ChopGrids (#3081)
-- Add extra check for multicut cell (#3087)
-- Polydisperse neighbor search algorithm (#3060)
-- GPU UUID and Arena initial size (#3085)
-- Use IsCallable to detect if F is callable (#3080)
-- GNU Make: No need to do GCC version check for make clean etc. (#3084)
-- Mlebabeclap aniso (#2640)
# 23.01
-- amrex::fillAsync (#3076)
-- CI: Ascent (#3078)
-- Add forward declarations for class template friends (#3077)
-- Update GNU Make file for OLCF (#3070)
-- HIP: amdgpu-target -> offload-arch (#3069)
-- GPU kernel fusing in MLPoisson (#3071)
-- Docs: Sync Before Comms (#3075)
-- Remove deprecated SYCL declaration (#3074)
-- Change the type of DeriveRec::DeriveBoxMap to std::function (#3068)
-- Add CodeQL Scanning (#3059)
-- Remove old python scripts for releasing (#3066)
-- Plotfile Reader: Allow multi-word variable names (#3067)
-- Fix FPE in FillPatcher for RK (#3065)
-- Fix: Shared CMake builds w/ `AMReX_BUILD_SHARED_LIBS` (#3057)
-- Add PETSc CI (#3049)
-- remove plotsinglevar.py (#3063)
-- Remove old python build scripts from Castro / Maestro (#3064)
-- Add math functions to amrex::Math (#3008)
-- remove some astro-specific python routines (#3062)
-- Gpu Streams: Performance Tuning (#3058)
-- MLMG: template (#3035)
-- Add Hypre CI (#3048)
-- Print host name in backtrace files (#3054)
# 22.12
-- SYCL: Remove floating-point specialisations for atomic adds (#3050)
-- Template average down (#2980)
-- fix compilation of RichardsonConvergenceTest (#3046)
-- Refactor Boundary Registers (#3028)
-- Fix Multi-Level Open BC Solver (#3032)
-- Template average_down_faces (#3040)
-- Add FabArray::LocalCopy and LocalAdd (#3043)
-- FabArray::sum (#3041)
-- amrex::Any::hasValue() (#3025)
-- Make YAFluxRegister template (#3030)
-- FabArray::norminf (#3039)
-- amrex::Dot (#3042)
-- template FabArray::Saxpy, Xpay and LinComb (#3044)
-- Use std::max when coarsening a TagBox to preserve TagBox::SET values (#3045)
-- Update for oneAPI 2023 (#3024)
-- min/max- and linear combination-preserving interpolater (#3020)
-- template Xpay (#3031)
-- CMake: AMReX_BUILD_SHARED_LIBS (#3013)
-- Fix mis-matched array type that broke mixed-precision restarts (#3026)
-- Add amrex::demangle for demangling C++ names (#3022)
-- Add more functionalities to TypeList (#3021)
-- Add muller to NERSC machines (#3019)
-- Fix -lquadmath in GNU Make (#3018)
-- Fix EB tensor solver's boundary when EB is tilted. (#3002)
-- Add -Wmissing-include-dirs to gcc warning flags (#3012)
-- A better fix for the PETSc compilation issue (#3011)
-- Replace all `sprintf` by `snprintf` (#3010)
-- Use std::less for comparison of pointers (#3007)
-- Add YAFluxRegister::getFineData (#3004)
-- C++17 Transition (#2992)
# 22.11
-- MPI Reduce for ValLocPair (#3003)
-- `FabArray::isDefined` (#2997)
-- Make The_Device_Arena non-managed (#2998)
-- Add alias template Gpu::NonManagedDeviceVector (#2999)
-- Pre- and Post-interpolation hook interface (#2991)
-- Add user defined BC types (#2995)
-- Add BCRec::set for convenience (#2993)
-- ParallelFor with compile time optimization of kernels with run time parameters (#2954)
-- 2D RZ solver for WarpX: Arbitrary coefficient (#2986)
-- Runge-Kutta support for AMR (#2974)
-- Fourth-order interpolation from fine to coarse level (#2987)
-- Fix EB data inconsistency when fixing small cells and multiple cuts (#2943)
-- MFIter::Finalize (#2983, #2985, #2988)
-- Fix MLMG::getGradSolution & getFluxes for inhomogeneous Neumann and Robin BC (#2984)
-- MLLinOp::postSolve (#2981)
-- add templating for the cell bilinear interpolators (#2979)
-- FillPatcher class (#2972)
-- Remove sycl namespace alias (#2971)
-- Fix Tensor Solver BC (#2930)
-- Disable host device for macros for SYCL/DPC++ (#2969)
# 22.10
-- Solve an issue with particles async IO when having runtime added variables (#2966)
-- Fix int overflow in amrex::bisect (#2964)
-- Fix MLEBNodeFDLaplacian bottom solver (#2963)
-- make tagging routines EB_aware (#2962)
-- Volume weighted sum (#2961)
-- CellData: data in a single cell (#2959)
-- Quartic interpolation for cell centered data (#2960)
-- Add GPU-compatible upper bound and lower bound algorithms to AMReX_Algorithm (#2958)
-- add option for makebuildsources to specify the style arguments for 'git describe'. (#2957)
-- Add roundoff_lo corresponding to roundoff_hi for domains that don't start at 0 (#2950)
-- Add template parameter to ParallelFor and launch specifying block size (#2947)
-- Byte spread fixes (#2949)
-- CMake: HIP_PATH from ROCM_PATH (#2948)
-- Fix: Make Finalize->Initialize->F->I->... Work (#2944)
-- Changes for Cray & Clang (#2941)
-- Link to cublas when using CUDA and Hypre (#2933)
-- HIP: use coarse grained host memory (#2932)
-- EB checkpoint files (#2897)
-- Fix: Loading Files Again (#2936)
-- Check if boundary particles container has been created before clearance. (#2935)
-- SYCL: Replace deprecated atomic types and operations (#2921)
# 22.09
-- Preserve neighbor particles when sorting particles. (#2923)
-- Scope of NonLocalBC::ParallelCopy (#2922)
-- Open Boundary Poisson Solver (#2912)
Add hypre as an option for OpenBCSolver (#2931)
-- Fix OOB access of ref ratio on HDF write header (#2919)
-- Add Polaris to GNUMake (#2908)
-- Export GpuDevice Globals (#2918)
-- enable LinOp to use the right Factory (fixes moving geometry problem) (#2916)
-- Use 1 atomic instead of two per item in DenseBins::build (#2911)
-- [SYCL] Remove amrex::oneapi and update deprecated device descriptors (#2910)
-- Add: `MultiFab::sum_unique` (#2909)
-- In MLMG::mgFcycle, assert that for EB the linop is cell-centered. (#2905)
-- EB: Add Fine Levels (#2881)
-- Add rpath to lib64 for ZFP. (#2902)
-- change data types from double to amrex::Real, and thus we can use single precision for the hypre IJ interface (#2896)
-- MPMD Support (#2895)
-- MLMG interface (#2858)
# 22.08
-- Let `selectActualNeighbors` return right after starting if there are no
particles for communication. (#2886)
-- Add Comm Sync to Redistribute (#2891)
-- Multi-materials and derived variable output (#2888)
-- Fix host / device sync bug in PODVector (#2890)
-- MinLoc and MaxLoc Support (#2885)
-- HIP: Remove the call to hipDeviceSetSharedMemConfig (#2884)
-- Add Frontier to GNU Make (#2879)
-- Add option to derefine to AMRErrorTag (#2875)
-- Fix the segmentation fault in selecting actual neighbor particles. (#2877)
-- Workaround to bypass issue observed at very large scale with Fujitsu MPI (#2874)
`TagBoxArray::collate`: Fujitsu Clang (#2889)
-- Allow zero components MultiFab and BaseFab (#2873)
-- New EB optimization parameter: eb2.num_coarsen_opt (#2872)
-- SENSEI 4.0: Fix Build for Particles (#2869)
-- Cache the neighbor comm tags for the CPU implementation of fillNeighbors. (#2862)
-- Remove some hard checks in check_mvmc for 3D (#2864)
-- Carry over fix for ngbxy.smallEnd typo (#2868)
# 22.07
-- Adding control APIs and namespacing for core algorithm paths like SpGEMM, SpMV, and SpTrans. (#2859)
-- update the SENSEI in situ coupling for SENSEI v4.0.0 (#2785)
-- Write runtime attribs to checkpoints on GPUs (#2856)
-- Fix gnu make on Crusher for mpi_gtl_hsa (#2857)
-- CMake: FindDependency CUDAToolkit (#2849)
-- NERSC Programming Environment prototype (#2848)
-- GNU Make: No need to query mpif90 if Fortran is not used. (#2852)
-- Remove f90doc (#2851)
-- Explicitly invoke python3 (#2850)
-- Maintain the high end of the 'roundoff domain' in both float and double precision (#2839)
-- add Ok to coordsys (#2844)
-- ParamParse: Add Files at Runtime (#2842)
-- Fix a pathological case for 2d EB (#2840)
-- add fvolumesum to GNUmakefile (#2836)
-- Clamp particles shifted from plo boundary against rhi, rather than back to plo (#2814)
-- Fix: CMake NVTX not only Hypre (#2837)
-- Update sensei CI container for sensei v4.0 integration (#2834)
-- HIP Memory Advise : Set managed memory to coarse grain (#2835)
-- CMake: Fix `export` with `AMReX_INSTALL=OFF` (#2838)
-- make PODVector work with PolymorphicArenaAllocator (#2829)
-- Re-implement FaceLinear::interp() for InterpFromCoarseLevel (#2831)
-- Make regrid method of Amr class public (#2833)
-- amrex::Any (#2827)
-- Fix line integral computation (#2830)
-- Fix a bug in multigrid grids (#2823)
-- Add html, additional sections to README.md (#2775)
-- Allow StateDataPhysBCFunct to operate on face-centered data (#2819)
-- Fix Parser ODR (#2820)
-- CMake: Cleanup old nvToolsExt (#2817)
-- Handle the case where we don't have enough device memory for the snd_buffer (#2705)
-- CMake: 3.17+ (#2813)
-- Landon/fix bug ghost particles (#2812)
-- Follow-on to 2809; update selectActualNeighbors as well. (#2810)
-- Generalize the type of callables that can be passed into the neighbor list build function (#2809)
-- Add AVX2 instructions flag. (#2803)
-- Avoid M_PI because it's not in the C++ standard (#2807)
-- In the array version of FillPatchTwoLevels, allow specifying an (#2800)
# 22.06
-- Fix solvability issue in the nodal solver RAP approach (#2783, #2801)
-- Profiler Sync Timers (#2784)
-- Implement Serial ParallelDescriptor::Gather (#2793)
-- Renamed new internal class variables using m_ convention to fix compiler warnings in debug mode. (#2790)
-- Make IntVectFromLocation const (#2789)
-- make sure m_particles is sized properly when numLocalTilesAtLevel is called (#2782)
-- Fix for small cells (#2781)
-- Add some timestep controls to the AMReX TimeIntegrator class for its integrate() driver function. (#2780)
-- Fix the bug in the CMake build with AMReX_BASE_PROFILE. (#2774)
-- configure value of AMReX_GPU_RDC flag for use in cmake find_package(AMReX ...) (#2770)
-- Add an optional volume weighting to AMRErrorTag (#2772)
-- Fix: AmrCore Move (#2773)
-- Update particle << operator after changes to id/cpu (#2769)
-- this updates to recent Hypre API changes (#2765)
-- multilevel version of writeplotfiletoascii (#2742)
-- Avoid the use of null stream (#2754)
-- add scomp and ncomp arguments to IntegratorOps functions. (#2759)
-- Add HDF5 H5Z-ZFP support in CMake (#2753)
-- CUDA On Cray: More Robust w/o Wrapper (#2757)
-- Reimplement amrex::min and max to Work around an nvcc bug (#2756)
-- Revert "Turn on managed memory by default in The_Arena for HIP (#2734)" (#2752)
-- Add methods for resetting the ParGDB of a ParticleContainer (#2732)
-- Switch nvtxRangeStart to nvtxRangePush (#2746)
-- Eb flow diffusive solve (#2741)
# 22.05
-- Update Required SUNDIALS version (#2743)
-- EB: Geometry generation from STL file (#2728)
-- Drop CUDA 9 support (#2736)
-- Disable AsyncOut by default for HIP and DPC++ (#2735)
-- Turn on managed memory by default in The_Arena for HIP (#2734)
-- Update WarpX's MLEBNodeFDLaplacian for 2D RZ (#2733)
-- Adding more recent Hypre APIs to initialize the library. (#2729)
-- Allow the computation of neighbor lists between particles of different types. (#2727)
-- Add option for face linear interpolater in fortran interface (#2726)
-- Allow some EB code to handle single precision (#2723, #2719)
-- Allow `FillBoundary` to cast messages from double to single precision. (#2708)
-- Fix FluxRegister::SumReg for GPU builds (#2718)
-- Swap hip lib and include ordering (#2717)
-- Fix integer overflow warnings in FabConv (#2716)
-- Make AsyncOut::Finish safe to call when async_out is not enabled. (#2715)
-- flushParForInfo: remove erroneous assertion (#2712)
-- Link particles in ghost cells to closest box (#2685)
-- Generalize the type of lambdas that can be passed into ParticleReduce (#2697)
-- Return non-zero if nans were found when using fnan. (#2704)
-- Reorganize Make.package in Src/Particle (#2703)
-- FillPatchUtil edge interpolater fix (#2701)
-- Adds SUNDIALS integrator options for flexibility. (#2700)
-- Only error if HDF5 is not parallel if MPI is enabled. (#2699)
-- Make the ParticleReduce functions not rely on ParIter. (#2695)
-- Semicoarsening in WarpX Linear Solvers (#2690)
-- FillBoundaryAndSync (#2683)
-- macOS: Fix Warning (ranlib, profiler) (#2688)
# 22.04
-- Fix parser expressions (#2682)
-- fixes to build CUDA with Clang (#2681)
-- CI: Apple Silicon (#2672)
-- Use the roundoff domain in enforcePeriodic. (#2679)
-- Catch CUDA 11.6 bug at compile time (#2677)
-- MPI+OMP+HIP build capability (#2676)
-- EB Flow (#2661)
-- BackTrace workarounds (#2667)
-- Redefine ParticleContainter multifab after setting particle boxarray and dmap (#2673)
-- Handle the case where we lose a level in RedistributeGPU (#2670)
-- Add int overflow assert check before Bcast wrapper (#2649)
-- Allow ParticleToMesh and MeshToParticle to access runtime particle components (#2668)
-- Fix bugs in the MultiBlock test (#2662)
-- Separate version strings for particle plotfiles and checkpoints. (#2663)
-- Add support for SZ compression in HDF5 output (#2644)
-- Removed the use of H5Aget_storage_size (#2656)
-- Add prefetchToHost and prefetchToDevice for GPU containers (#2655)
-- Introduce `AMReX_Version.H` (#2653)
-- Add move assignment operator to Fab (#2652)
-- Added an option to set fast MRI dt directly instead of using the integer ratio of slow/fast dt. (#2651)
-- AMReX_Config.H: AMREX_EXPORT_DYNAMIC (#2650)
-- Fix bug affecting neighbor proc calculation with mesh refinement. (#2646)
-- Update flags for DPC++ AOT (#2643)
-- Doc + CMake: AMREX_EXPORT_DYNAMIC (#2635)
-- Update SpackSmokeTest to run with Fortran and/or HIP. (#2629)
-- Simplify CoordSys::IsRZ and IsSPHERICAL (#2642)
-- Take advantage of async copies in PODVector. (#2641)
-- HIP: atomicAddNoRet (#1809)
# 22.03
-- ParticleTile: push_back_real/int w/ Vector (#2634)
-- Update Docs to reflect newer options in MLMG (#2620)
-- Allow the ghost-particle exchange to communicate different variables (#2627)
-- Fix AmrParticleContainer::AssignDensity when ncomp == AMREX_SPACEDIM+1. (#2632)
-- Use async version of cuda/hipMemcpy in PODVector::resize() (#2631)
-- ParticleContainer::make_alike (#2630)
-- Update checkpoint format to account for expanded particle ids. (#2624)
-- Update FabArray::copyTo (#2603)
-- explicitly request python3 for makebuildinfo_C.py (#2621)
-- store the CUDA version in build info (#2617)
-- missing check for mapped solver support when not using GPU (#2616)
-- Remove ifdefs for older compiler version. (#2614)
-- Allow a descriptor component's BndryFuncFabDefault to be stateful. (#2612)
-- TableData: fix missing return in operator= (#2613)
-- SUNDIALS MRI Interface for AMReX TimeIntegrator class (#2600)
# 22.02
-- Fix I/O bug in Amr class (#2609)
-- Spack install instructions for Building section. (#2602)
-- Kernel fusing in Geometry (#2606)
-- Kernel fusing in FluxRegister (#2605)
-- TableData: A Multi-Dimensional Array Class (#2601)
-- FabSet::multiFab (#2604)
-- Disable EB solver's phi-on-centroid for hip for now (#2598)
-- Update locations for tutorials and minor formatting. (#2583)
-- CI: AMD `hip::device` also for Fortran (#2595)
-- fix vol initialization for Cartesian in fvolumesum (#2596)
-- Add headings and steps to plot vector field in ParaView doc section (#2588)
-- Kernel fusing in FabArrayUtility (#2593)
-- Change FPinfo's fact_fine_patch to always have ng=1. (#2591)
-- Support arbitrary refinement ratio in FaceLinear Interpolater (#2590)
-- Default Arena for MultiFab/iMultiFab/FabArray (#2589)
-- `add_par` precedence in Docs. (#2575)
-- Fix typo in 1D version of AMREX_LAUNCH_DEVICE_LAMBDA_DIM (#2587)
-- CMake: remove nonexistent header file, update minimum sundials version (#2586)
-- Enable CUDA in CMakeLists.txt for Spack smoke test. (#2581)
-- Fix warning from hiprand header (#2585)
-- HIP: amdclang++ (#2582)
-- Update sundials sycl memory helper interface (#2580)
-- HIP: Add -munsafe-fp-atomics to CMake (#2577)
-- ParmPaser::queryAdd (#2573)
-- Fix regression test configuration (#2574)
-- Convert switch statement to if statement (#2570)
-- remove erroneous BL_ASSERT in sundials initialization (#2568)
-- Support implicit function class defined on host when using device memory explicitly. (#2563)
-- HIP: Add -munsafe-fp-atomics to GNU Make (#2567)
-- GNU Make: Add a new machine, crusher (#2566)
-- Mapped solver support (#2088)
-- Update to SUNDIALS 6 (#2551)
-- Return a zero-size vector in ParallelDescriptor::Gather. (#2560)
-- Add option not to remove particles with negative ids when calling Redistribute. (#2561)
-- Update FillPatchTwoLevels for single component face-centered data (#2539)
-- Kernel fusing in FabArray Comm (#2559)
-- Use MF ParallelFor in error tagging (#2558)
-- iMultiFab I/O (#2495)
-- Embed more EB data in EBFArrayBox (#2550)
-- CpuBndryFuncFab: Face Data (#2545)
-- Fix bug in Parser (#2555)
# 22.01
-- Add Gatherv for USE_MPI=FALSE. (#2549)
-- Resize vector inside GatherLayoutDataToVector (#2548)
-- Add missing FillBoundary_nowait (#2546)
-- add a tool to compute the volume integral of a plotfile field (#2541)
-- Update MLEBNodeFDLaplacian (#2538)
-- Update NVector_MultiFab functionality from ATPESC-codes and add to Src/Extern/SUNDIALS (#2505)
-- Projections migrated to AMReX-Hydro (#2530)
-- Fix a bug in Robin BC (#2477)
-- Add ParallelCopyToGhost and fix a bug in FillPatch (#2523)
-- CMake 3.22+: Policy CMP0127 (#2525)
-- Add function for make a dmap that is similar to an input MultiFab. (#2526)
-- Specify dimensions that can be refined with `refine_grid_layout` (#2516)
-- DPCPP: AMREX_INTEL_ARCH (#2459)
-- Generalize problem size specification (#2518)
-- Use specific targets for make uninstall (#2471)
-- Move Basic Time Integration into AMReX (#2503)
-- allow the use of SuperParticle in amrex::ParticleToMesh (#2514)
-- ANSI Escape Codes (#2509)
# 21.12
-- AMREX_RELEASE_NUMBER (#2448)
-- Add a function for detecting whether amrex::Initialize has been called or not. (#2501)
-- Fix fcompare's --abs_tol (#2504)
-- HDF5: Fix an issue when some MPI ranks have no box at all (#2494)
-- Signed distance function in 2D (#2490)
-- Reduce ghost particles in particle communication. (#2480)
-- Assign initial value to prevent (likely spurious) -Wmaybe_unitialized compiler warning. (#2484)
-- Fix a corner case in fixing small cells. (#2489)
-- Added special case for Mac when using rpath (#2479)
-- Fix multi-level EB nodal solver solvability fix (#2473)
-- Disable warning on atomicAddNoRet in HIP (#2466)
-- DPCPP: workaround for the scan issue (#2462)
-- DPCPP: AOT in GNU Make (#2463)
-- Implement HOEXTRAPCC for more than single ghost cell (#2456)
-- Spack Smoke Test (#2460)
-- Support fmod in Parser (#2395)
-- HIP: ftrapv causes issues with DEBUG linking (#2455)
-- DPCPP: Enable early optimizations (#2454)
-- New HDF5 schema with separate datasets for different variables (#2432)
-- InterpFaceRegister (#2452)
-- Fix WarpX EB solver's grad phi computation (#2453)
# 21.11
-- Set to never write fill values to the dataset for HDF5 output (#2450)
-- Lower Hypre minimum version to 2.20. (#2446)
-- Fix use-after-free in the flush of parallel copy meta-data cache. (#2443)
-- Update MPI config checking to include Intel MPI wrappers for DPCPP (#2435)
-- Add EBCellFlagFab::getNumRegularCells, getNumCutCells and getNumCoveredCells (#2422)
-- ExclusiveSum on GPU: return 0 when size of pointer is 0 (#2440)