-
Notifications
You must be signed in to change notification settings - Fork 348
/
CHANGES
3682 lines (1995 loc) · 104 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
# 24.11
-- Add option to do stable redistribute with GPUs (#4200)
-- Remove HIP_INDIRECT_FUNCTION (#4199)
-- Use The_Comms_Arena in particle communication. (#4175)
-- Refactor grid-stride loop (#4190)
-- STL optimization: Bounding volume hierarchy (#4140)
-- Bounded sampling (#4195)
-- amrex::FFT (#4193)
-- SmallMatrix: Structured binding support (#4189)
-- SmallMatrix: Support 1-based indexing (#4188)
-- SoA: Public Getter for Names (#4187)
-- Named SoA Support (#4163)
-- Fix queryktharr() return value/behaviour. (#4186)
-- Add more build options for linear solvers (#4181)
-- New function for domain decomposition (#4183)
-- SmallMatrix: Matrix class with compile time size (#4176)
-- modify/remove the assertions about no hidden dimension (#4180)
-- Add comparison operator for boxarray and distromap. Add hdf5 to dep.py (#4173)
# 24.10
-- TinyProfiler: Remove unnecessary precision() call (#4174)
-- Fix GCC 12 & 13 warnings on null-dereference (#4171)
-- fix: wavefront_size for gfx11* (#4170)
-- CI: Test GCC-13 (#4169)
-- allow hidden dimension when calling FFlux routines (#4162)
-- Deregister BArena from Profiling in Arena::Finalize (#4164)
-- FillPatchSingleLevel and FillPatchTwoLevels for ERF (#4158)
-- `ParmParse:addFile`: User-Friendly Error (#4156)
-- Adding computation of complete elliptic integrals into amrex::Math (#4151)
-- Fix roundoff issue in SUNDIALS evolve() (#4148) (#4157)
-- Add a new InterFromCoarseLevel for ERF (#4150)
-- Add ParmParse features for WarpX (#4149)
-- ParmParse::queryAsDouble: Support bool and std::optional (#4152)
-- add geometric terms for spherical 2D support. (#4141)
-- Add std::setfill to PrintMemStats (#4147)
-- Add ParmParse::query_enum_sloppy that can ignore characters (#4145)
-- Fix ParmParse::query_enum_case_insensitive (#4144)
-- AMREX_ENUM: Add more capabilites (#4143)
-- Add ParmParse::eval (#4142)
-- AnyCTO with arbitrary number of functions (#4135)
-- IOFormatSaver (#4104)
-- amrex::Stack (#4139)
-- Use BL_PROFILE instead of BL_PROFILE_VAR to time in knapsack()swap (#4134)
-- Add iMultiFab::sum that returns the sum over a region (#4132)
-- EB Boundary Area: Fix issues for anisotropic cell size (#4131)
-- `ParmParse`: Prefix to `FILE` (#4126)
-- MLMG: Minimum domain width (#4129)
-- Capability adds for ParmParse enum (#4119)
-- use perl instead of sed in style checks for portability to MacOS (#4127)
-- Fortran Interfaces: Add new average down functions (#4124)
-- TinyProfiler: A few updates (#4102)
-- ArenaProfiler: Fix clang-tidy warning (#4128)
-- CTOParallelFor with BoxND / add AnyCTO (#4109)
-- TinyProfiler with BArena and PArena (#4113)
-- Fix Fortran interface compilation issue using `nvfortran` (#4115)
-- `AMREX_DEVICE_PRINTF`: Host (#4116)
-- EB: don't abort for no-op case in unsupported addFineLevels functions (#4123)
-- Fix FillPatchNLevels (#4117)
# 24.09
-- Curl Curl Solver: Option to use PCG instead of LU (#3812)
-- Support for multiple periods in FillBoundary and ParallelCopy (#4106)
-- ParmParse::prettyPrintTable (#4101)
-- TinyProfiler:: Add more runtime parameters (#4100)
-- Fix start_comp offset in tracer particle routines (#4098)
-- ParmParse: queryarrWithParser (#4073)
-- Add Geometry::RoundoffLo and RoundoffHi functions (#4097)
-- Fortran BoxArray: Add nboxes function returning the number of boxes. (#4096)
-- Time integrator interface updates (#4088)
-- Fix a bug in ParmParse::remove (#4093)
-- Add Jacobi smoother to ABecLaplacian and Poisson (#4091)
-- Multi-level Hypre: Fix periodic boundary bug (#4090)
-- Multi-level Hypre: Fix bugs (#4089)
-- Add overload for `getParticleCell` that returns local cell index (#4081)
-- MLEBNodeFDLaplacian: Make it work with AMREX_USE_EB but with no EB (#4083)
MLEBNodeFDLaplacian: Regression (#4085)
-- AMREX_ENUM and ParmParse support for enum class (#4069)
-- BLBackTrace: Check for `addr2line` in path first (#4079)
-- Make sure ChopGrids does not violate refinement ratio. (#4078)
-- GPU Device Variable on Intel GPUs (#4056)
-- ParallelFor with BoxND (#4052)
-- fix compilation of the Richardson tool (#4072)
-- HDF5: Update BLProfile Name (#4071)
-- Bins: Index Type `int` (#3684)
-- Conduit: Fix SoA Particle (#4065)
-- Plotfile Particles: Fix Error Message (#4068)
-- CI: Fix Catalyst CMAKE_PREFIX_PATH (#4067)
-- Use NVTX3 to avoid conflict with cub in CUDA 12.6 (#4064)
-- Convert Box to BoxND (#4016)
-- Use long long for IParser value_t in ParmParse (#4059)
# 24.08
-- Catalyst support (#4011)
-- Fix typos in FaceDivFree interior interpolation. (#4048)
-- ParmParse: Read IntVect & RealVect from array (#4050)
ParmParse: Fix assertion in new queryarr for IntVect & RealVect (#4051)
-- IParser: Use long long int (#4046)
-- ParmParse: Math expression support (#4032)
-- AmrData: remove dependency on Fortran (#4049)
-- Remove reliance on managed memory in HDF5 mesh IO (#4047)
-- New Feature in MLEBNodeFDLaplacian: MultiFab sigma coefficient (#3968)
-- Nodal Solver: Use multi-color Gauss-Seidel on GPU (#4043)
-- Use reduction to compute min and max particle distances in NeighborParticles test. (#3212)
-- ParmParse: Refactoring II (#4035)
-- Fix deadlock for CUDA (#4044)
-- ParmParse: Refactoring (#4031)
-- MLMG: Keep ghost cell values in user's inputs (#4040)
-- Geometry: Fix operator>> (#4042)
-- FillPatch for Face Data: Fix Geometry used in creating mask (#4039)
-- Parser: Allow dots in variable names (#4038)
-- HDF5: Remove unnecessary casting (#4036)
-- HDF5: Fix chunking warning (#4033) (#4034)
-- New parameter amrex::init_snan (#4030)
-- Change the default max_grid_size in 3D on GPU from 32 to 64 (#4029)
-- GpuArray: add operator+= (#4028)
-- FPE traps: Add functions for enabling and disabling FPE traps (#4025)
-- HDF5: Correctly determine max_mfi_count (#4024)
-- HDF5: expose ZLIB compression without SZ or ZFP flags (#4015)
-- Hypre: Use Gpu::hypreSynchronize (#4022)
-- AmrMesh: add const to a few functions (#4021)
-- Convexify AMR data (#4013)
-- Fix BottomSolver::bicgcg (#4020)
-- Fix some warnings issued by Coverity (#4017)
-- convert IndexType to IndexTypeND (#3988)
-- Workaround MSVC issue in tupleToArray (#4000)
# 24.07
-- HDF5: Correctly handle writing only some components when writing Particle (#4005)
-- HDF5: Correctly choose datatype of plotfile based on RD numBytes (#4006)
-- Fix L2 norms in C_util/Convergence codes (#4009)
-- Match the dimensions of reqd_work_group_size to submitted nd_range (#4002)
-- GNU Make: try nvidia-smi for CUDA arch if deviceQuery fails (#3997)
-- Sundials Update (#3984)
-- Derive: Add MultiFab version of DeriveFunc (#3990)
-- GNU Make: Add support for CUDA LTO (#3993)
-- Bottom Solver: Keep the unconverged result if it's an improvement (#3991)
-- Multi-level composite solver using hypre (#3987)
Workaround std::exclusive_scan issue with old compilers (#3996)
-- TableData: Add support for row-major order (amrex::Order::C) (#3973)
-- Avoid self copy in MultiFab::Copy (#3986)
-- Convert IntVect to IntVectND (#3969)
-- GNU Make: Don't replace -I with -isystem for MPI include paths (#3985)
-- Add pyamrex CI (#3967)
-- const auto ptd -> const auto& ptd (#3983)
-- Fix ctests with HIP (#3982)
-- Add TupleSplit (#3978)
-- use HIP stream-ordered allocator (#3980)
-- Add structured binding support to GpuTuple (#3977)
-- New FillPatch function: FillPatchNLevels (#3974)
-- Update GNUmake files for NREL machines. (#3975)
-- SYCL for Nvidia: Re-enable CI without tests (#3971)
-- Skip empty particle tiles in operator++ to avoid race condition in constructor. (#3951)
-- adding physical and math BC types for inflow-outflow BCs (#3965)
# 24.06
-- add missing AMReX_SUNDIALS in AMReXConfig.cmake (#3962)
-- Linear Solver: Fix semicoarsening issues with multiple AMR levels (#3961)
-- add DEBUG_LIBSTDCXX option to GNU Make gcc for libstdc++ debug (#3945)
-- InterpBndryData: Make changes for multi-level hypre (#3959, #3960)
-- FabArray: Make some functions static (#3958)
-- MultiArray4: add conversion operator to bool (#3957)
-- Overloading `Array4::operator()`, `ptr` and `contains` (#3956)
-- Tune PermutationForDeposition for MI250X (#3925, #3953)
-- Support size 0 BoxArrays in ParticleLocator (#3949)
-- Workaround for Windows omp_lock_t issue (#3910)
-- CMake: No Deprecation Warnings (#3947)
-- Particle InitBinaryFromFile: Use reference instead of copy (#3946)
-- Fix particle restart when finestLevel() < finest_level_in_file (#3944)
-- Delete copy constructor and assignment operator for ParticleTile (#3943)
-- Fix FillPatcher after enforcing PhysBCFunct operator() fills nghost (#3941)
-- CTest: Add atomicAdd to small tests (#3915)
-- Fix 1d HDF5 compilation (#3939)
-- Update hip installation script for CI (#3938)
-- GMRES/MLMG: Set the number of MG V-cycles per GMRES iteration (#3875)
-- Neumann BC at coarse/fine interface for cell-centered solvers (#3926)
-- Fix assertions involving IntVect (#3919)
-- Modify Tests/LinearSolvers/ABecLaplacian_C (#3888)
-- MLNodeLaplacian: 1D support (#3918)
-- In PhysBCFunct, only fill nghost grow cells (#3914)
# 24.05
-- 3d anisotropic eb (#3907)
cleanup of latest changes for 3D EB (#3912)
-- Update for ROCm 6.1.0 (#3898)
-- fix a HIP/Frontier issue (#3902)
-- Set AMD wavefront size according to AMReX_AMD_ARCH (#3881)
-- Fix offset in recv buffer of single precision particle communication (#3896)
-- Fix Assertion (#3894)
-- TinyProfiler: shorten output into "Other" section (#3885)
-- Fix ReorderParticles for PureSoA (#3890)
-- Fix full plotfiles with only derived variables (#3892)
-- FabArray: Update Asserts (#3893)
-- Add MultiFab::sum(region) and sum_unique(region) (#3871)
-- TinyProfiler: remove CUPTI (#3886)
-- ParticleContainer::WritePlotFile: Fix enable_if (#3884)
-- amrex::tupleToArray (#3880)
-- Allow plotting only a subset of Amr levels (#2825)
-- Parser: add error function (#3870)
-- Add `PODVector::assign(value)` (#3866)
-- GCC: inline limit (#3841)
# 24.04
-- `AddRealComp`/`AddIntComp`: Resize SoA (#3615)
Fix: Resize Component on Add (#3861)
-- Use less device memory when checkpointing particles (#3238)
-- FabArray: Option to use a single contiguous chunk of memory (#3857)
-- AMReX_FLATTEN_FOR (#3855)
Disable AMReX_FLATTEN_FOR by default (#3860)
-- Curl Curl Solver: Variable beta coefficient (#3810)
-- `MultiFab::deepCopy()` (#3848)
-- `FabArray<FAB>::copy` Argument Name (#3856)
-- Use Clang-Tidy 17 in GitHub CI (#3845)
-- Update to SUNDIALS v7 (#3835)
-- Assert: Geometry's domain is cell-centered (#3853)
-- Fix ReduceToPlane (#3852)
-- Clang-Tidy 17: modernize-type-traits (#3844)
-- Clang-Tidy 17: cppcoreguidelines-rvalue-reference-param-not-moved (#3825)
-- Clang-Tidy 17: modernize-loop-convert (#3833)
Revert range based for-loop with OMP (#3839)
-- Clang-Tidy 17: performance-avoid-endl (#3830)
-- Fix a memory leak in TableData::operator= (#3807)
-- Update Copyright Notice and License Agreement (#3829)
-- Clang-Tidy 17: cppcoreguidelines-missing-std-forward (#3818)
-- Clang-Tidy 17: cppcoreguidelines-avoid-const-or-ref-data-members (#3817)
-- Clang-Tidy 17: misc-use-anonymous-namespace (#3824)
-- Clang-Tidy 17: bugprone-switch-missing-default-case (#3816)
-- Clang-Tidy 17: performance-noexcept-swap (#3822)
-- Fix extra indentation in fcompare output (#3823)
-- Clang-Tidy 17: misc-header-include-cycle (#3820)
-- New constructor for MPMD::Copier (#3806)
-- Fix deprecation warning for CUDA 12.4 (#3811)
-- use emplace_back / emplace where possible (#3814)
-- In allocateSlice, handle empty list of boxes (#3808)
-- Explicit Includes: MultiFab -> BaseFab (#3802)
-- CI: Windows Install & Test Install (#3803)
-- Add Tests/OpenMP/atomicAdd (#3805)
-- Minor changes in Src/Base/AMReX_MPMD (#3800)
-- add ifdefs to enable NVHPC as device compiler (#3801)
-- CI: Windows MSVC w/ Ninja (#3804)
-- omp_locks: Avoid extern global variable (#3798)
-- Add option to interpolate data on faces linearly in the tangential direction (#3794)
-- `omp_locks`: C Array (#3796)
-- Port WriteEBSurface by copying EB information to pinned tmps before writing. (#3793)
-- Robin BC: Abort if solver is not safe for reuse (#3788)
-- Update GMRES/MLMG for nodal solver (#3787)
-- TagParallelFor: Add assertion against integer overflow (#3790)
-- Simplify GMRES/MLMG interface (#3785)
# 24.03
-- Fix GPU restart for pure SoA particles (#3783)
-- fix for ref_ratio=1 (#3786)
-- Update GMRES/MLMG interface (#3779)
-- Ref ratio 3 (#3781)
-- Curl Curl solver: 4-color Gauss-Seidel smoother (#3778)
-- assert wavefront size (#3777)
-- Curl of Curl solver: Tweak restriction (#3765)
-- Adjust debug info argument for HIP compiler (#3761)
-- fixed bug in MLCurlCurL::xdoty() to prevent doing MPI sum twice. (#3774)
-- Implement portable assumptions with AMREX_ASSUME (#3770)
Fix bug in AMREX_ASSUME (#3773)
-- Pure SoA: `NextID` as `Long` (#3772)
-- GNU Make: set COMP_VERSION for hipcc and nvcc (#3771)
-- Make MFParallelFor safer from int overflow (#3768)
-- getParticleTileData: HostVector must be initialized during resize (#3769)
-- add AMREX_LIKELY and AMREX_UNLIKELY (#3767)
-- Only do a htod memcpy in getParticleTileData when necessary (#3760)
-- Sync GPU stream before getting the time in TinyProfiler (#3763)
-- Add a logspace-like function in AMReX_Algorithm.H (#3754)
-- Fix offset in send buffer of single precision particle communication (#3758)
-- EdgeFluxRegister for MHD (#3633)
-- Fix a typo in SYCL version of scan (#3757)
-- Interpolation from node-centered general mapped coordinates to tracers (#3750)
-- Remove various deprecated stuff not prefixed by amrex or bl (#3713)
-- GNU Make: Link flags (#3711)
-- Remove UB from is_aligned (#3751)
-- Add partitionParticles Function (#3743)
-- Minor new functions in AMReX_MPMD to provide flexibility for python binding (#3748)
-- Box::numPts() returns 0 for empty boxes (#3747)
-- New Linear Solver: Curl of Curl (#3682)
-- Use long integer in GPU kernels (#3742)
-- Add `ParticleIDWrapper::make_invalid()` (#3735)
# 24.02
-- Disable m_aos for SoA Particle (#3736)
Update AoS Restrict (#3738)
-- Add helper function for setting id and cpu simultaneously. (#3733)
-- Disable SYCL on Nvidia and AMD CIs (#3726)
-- ParticleCopyPlan for SoA Particles (#3732)
-- Do not use std::forward twice on the same object in AmrParticleLocator (#3734)
-- Particle Copy Plan: Default Vals (#3729)
-- Fix circular header file dependency (#3725)
-- Provide portable Gpu::Atomic::Multiply and Gpu::Atomic::Divide implemented with CAS. (#3724)
-- Plotfile Tools: Add missing option to fcompare usage print (#3722)
-- Update documentation for STL files (#3723)
-- Add TypeMultiplier, MakeZeroTuple and IdentityTuple (#3718)
-- Interpolation routines for tracers with mapped_z. (#3714)
-- relax constraint that real_comp_names.size() == pc.NumRealComps() + NStructReal for pure SoA plotfiles (#3717)
-- Fix warnings in DenseBins::build with serial bin policy (#3716)
-- lockAdd: case of 2D plane in 3D (#3700)
-- Clean up interpolation routines in AMReX_TracerParticle_mod_K.H and AMReX_Particle_mod_K.H (#3679)
-- Add macro for loop unrolling across compilers (#3701)
-- Add a linspace-like function in AMReX_Algorithm.H (#3698)
-- use amrex::Gpu::memcpy for packParticleIDs (#3699)
-- BaseFab::lockAdd: Faster version of BaseFab::atomicAdd for OpenMP (#3696)
-- GMRES (#3648)
-- Add special named flag for invalid particles (#3688)
-- Fix BL_PROFILE_TINY_FLUSH (#3695)
-- Align GpuComplex to its size (#3691)
-- Fix Advection_AmrCore test (#3690)
# 24.01
-- MLMG: Use free functions instead of MF member functions (#3681)
-- Add a few free functions for MLMG (#3680)
-- Eliminating Matrix operations in MLMG CG bottom solver if initial vector is zero (#3668)
-- Add a for loop that is unrolled at compile time (#3674)
-- Add PTD version of getParticleCell (#3675)
-- Improve ParIter docs (#3676)
-- Fix CI for ROCm 6.0 (#3673)
-- PureSoA IdCpu fixes (#3671)
-- CMake: AMReX_PARALLEL_LINK_JOBS (#3628)
-- Clang-Tidy in CI: Keep Going after Errors (#3667)
-- Delete empty below comments on classes and functions (#3669)
-- Documentation for Profiling: Hot Spots and Load Balance (#3622)
-- Fix warnings in SortParticlesForDeposition (#3664)
-- Fix Resize Issue of Fab with the Async Arena (#3663)
-- Fix SuperParticle `push_back` (#3661)
-- Pure SoA Particle: Separate Array for IdCPU (#3585)
-- Limit the scope of gpu_rand_generator (#3659)
-- Fix a typo in doxygen for NonLocalBC::FillBoundary (#3658)
-- GNU Make: Fix name collision for aurora (#3656)
-- two separate fixes -- particle_compare and ref_ratio=1 (#3655)
-- Clarify documentation on setEBDirchlet() and fix link to AMReX-Hydro (#3652)
-- Robustify the Cache Cleanup Scripts (#3650)
-- Disable CodeQL scheduled jobs on forks (#3649)
-- Work around compiler bug in nvcc 12.2 by using functor instead of lambda (#3653)
# 23.12
-- solve_cg: avoid use of MF `z` (#3637)
-- Fix: nosmt OMP Threads Default (#3647)
`amrex.omp_threads`: Can Avoid SMT (#3607)
-- When checking for periodic outs on GPU, copy full particle data (#3646)
-- MLEBABecLap: Support Robin BC at Domain Boundaries (#3617)
-- Ascent: SoA Particle Support (#3350)
-- solve_bicgstab: use fewer MFs (#3635)
-- solve_bicgstab: cut use of `s` (#3629)
-- Bug fix for amrex::Subtract when called with interger nghost (#3634)
-- Fix typo in `MLMGT<MF>::getGradSolution` when `MF` is different from `AMF` (#3631)
-- SUNDIALS: Use sunrealtype instead of realtype (#3632)
-- SYCL: Use get_multi_ptr instead of get_pointer (#3630)
-- Plotfile Tools: GPU support (#3626)
-- solve_cg: use linop.make instead of MF constructor (#3627)
-- CArena: shrink_in_place and operator<< (#3621)
-- solve_bicgstab: use linop.make instead of MF constructor (#3619)
-- replace AMREX_DEVICE_COMPILE with AMREX_IF_ON_DEVICE and AMREX_IF_ON_HOST (#3591)
-- [Breaking] Prefix `amrex_` to each plotfile Tool (#3600)
-- FillRandom: Use MKL host API (#3536)
-- use hipPointerAttribute_t.type as HIP is removing hipPointerAttribute_t.memoryType (#3610)
# 23.11
-- Give FlashFluxRegisters ways to accumulate data in registers (#3597)
-- `AMReXBuildInfo.cmake`: AMReX_DIR (#3609)
-- update doc for amrex::Abort on GPU (#3605)
-- Add runtime particle components to HDF5 wrapper (#3596)
-- Windows: Fix Installed AMReXBuildInfo.cmake (#3606)
-- Print AMReX version at the beginning of Initialize (#3604)
-- Install Move Tools to `shared/amrex` (#3599)
-- Revert "Add ability for GCC 8 in CMake to build fgradient which uses std::filesystem" (#3601)
-- Avoid std::filesystem (#3602)
-- Fix Assertion in MLEBNodeFDLaplacian (#3594)
-- Fix a memory "leak" in VisMF's persistent streams (#3592)
-- RealVect Static: Export (#3589)
-- change MaxCnt from 4 to max(4,max_level+1) for how many iterations we… (#3588)
… allow in creation of the initial grid hierarchy
-- Add Bittree CI (#3577)
-- BCType::ext_dir_cc (#3581)
-- Disable CCache in Windows CIs (#3566)
-- Fix ICC CI by Freeing up Disk Space (#3583)
-- Docs: Link pyAMReX (#3582)
-- NodeABecLaplacian: Reuse (#3579)
-- simplify how 2d surface integrals are computed (#3571)
-- Adding bittree interface to improve regridding performance in octree mode (#3555)
-- MLNodeABecLaplacian (#3559)
-- Fix Boundary Centroid in a Corner Case in 2D (#3568)
# 23.10
-- Bugfix typo in AMReX_SundialsIntegrator.H Nvar vs NVar, the
declared/used variable is NVar (#3573)
-- Code Spell (#3563)
-- Add Fortran interface for average_down_faces (#3553)
-- PureSoA: Disable AoS Access (#3290)
-- Another terrain fix for MPI (#3557)
Fix Increment, OK, and EnforcePeriodicWhere for terrain-fitted particles. (#3556)
-- Added cvode functionality to SUNDIALS integrator (#3436)
-- ParmParse::addfile needs Init (#3440)
-- Make the same changes to ApplyInitialRedistribution as to ApplyMLRedistribution (#3554)
-- Reset EB Fab Type (#3552)
EB Data outside domain (#3549)
-- We weren't defining cent_hat out far enough (#3548)
-- Add Fortran interface for FillCoarsePatch for face variables (#3542)
-- print_state/printCell: Make it work without managed memory (#3543)
-- FillPatch Fortran Interface: Fix incorrect size of Vector<BCRec> (#3546)
-- ReduceOps: reset result readiness flag (#3545)
-- Fix Fortran interface for FillPatch for face variables (#3541)
-- Support multiple CUDA architectures at compilation (#3535)
-- Add Kestrel machine and remove Rhodes machine from Make.nrel (#3533)
-- Explicitly flush when writing to the terse run log (#3532)
-- Missing header in AMReX_GpuComplex.H (#3531)
-- Add global domain id offset to conduit wrapper (#3524)
# 23.09
-- Fix InitRandomPerBox for 1D & 2D (#3527)
-- Add ability for GCC 8 in CMake to build fgradient which uses std::filesystem (#3523)
-- Fix: Include Guard 1D for MLPoisson (#3528)
-- Workaround for Intel compiler classic (#3526)
-- Constness in buildInfo: num_modules (#3522)
-- MLABecLaplacian: Tweak kernel fusing (#3521)
-- UniqueString tweak (#3520)
-- faverage fix (#3519)
-- Empty level fix (#3517)
-- Simplify filterParticles Kernel (#3510)
-- Generalize particle-to-cell assignment function (#3499)
Follow-on to 3499 (#3514)
ParticleLocator: Make Assignor optional template parameter (#3515)
-- GPU Launch Min Blocks (#3503)
-- Remove unsafe std::forward (#3513)
-- Fix Bug in FaceLinear Interpolater (#3483)
-- Add test on whether we are in the valid box when updating drho_as_crs… (#3506)
-- Fix backtrace nullptrs (#3505)
-- Skip ubsan lib on OSX (#3504)
-- SYCL: Add table of GNU Make config vars to docs (#3400)
-- Fix: Backtraces will NULL Addresses (#3502)
-- Update gpu elixir and async array synchronization for sycl (#3498)
-- SundialsIntegrator: Fix memory deallocation (#3501)
-- FillRandom & FillRandomNormal (#3500)
-- Update position in 2nd pass for tracer advect with Ucc. (#3496)
-- Move use of bcrec back onto GPU (#3494)
-- fix bug in StateRedist and add multi-level functionality for FluxRedi… (#3491)
-- fgradient: A new plotfile tool for computing gradient (#3490)
-- CI: Remove redundancy in nvcc dependencies files (#3387)
-- CMake: HIP Debug with -O1 (#3487)
-- Fix overflow in ParallelFor(Long n, ...) (#3489)
-- Adjust build for upstream Mpich and OpenMPI modules on Perlmutter. (#3486)
-- CArena: Implement alloc_in_place (#3426)
-- Clang-Tidy: Add more checks (#3466)
Fix a bug in #3466 (#3485)
-- Option to force regrid level zero (#3484)
-- Fix typo introduced in PR 3452 (#3482)
-- Clang-Tidy changes in Src/LinearSolvers (#3475)
-- Update FluxRedist and comments for StateItracker (#3481)
-- Clang-Tidy changes in Src/EB (#3473)
-- Clang-Tidy changes in Src/Boundary (#3471)
-- Clang-Tidy changes in Src/F_Interfaces (#3474)
-- Clang-Tidy changes in Src/Particle (#3476)
-- Clang-Tidy changes in Src/Extern (#3472)
-- Clang-Tidy changes in Tests (#3477)
-- Clang-Tidy changes in Tools (#3478)
-- Change the default value of The_Pinned_Arena release threshold (#3479)
-- Handle ThetaGPU in GNU make system (#3469)
-- Clang-Tidy changes in Src/AmrCore (#3468)
-- Clang-Tidy changes in Src/Amr (#3467)
-- Fix a bug in EB tensor solver's cross term (#3465)
-- Add misc-misplaced-const check to clang-tidy CI test (#3464)
-- Suppress implicit return warnings with nvcc (#3463)
-- Silence "unreachable loop" warning for GPU builds (#3462)
-- PlotFileUtil: Add Direct Includes (#3446)
# 23.08
-- Fix a bug in AmrMesh::ChopGrids (#3460)
-- Remove use of managed memory from TracerParticleContainer::TimeStamp (#3457)
-- Mac Arm64 Architecture fpe handling (#3447)
-- SYCL: Remove Workaround no longer needed (#3455)
-- SENSEI: SoA Particle Support (#3349)
-- Warn if USE_GPU_RDC=TRUE when HIP_SAVE_TEMPS=TRUE (#3454)
-- SYCL: Allocate 3/4 of total global memory by default (#3431)
-- GPU Assignment (#3382)
-- call_f refactor (#3452)
-- HDF5 bug fix for vol-async and compression (#3451)
-- Add second template parameter to other AoS for swap (#3450)
-- Refactor call_f in ParticleTransformation and WriteBinaryParticleData
to use constexpr if (#3448)
-- Fix this version of WritePlotFile to use SuperParticle, as expected by
WriteBinaryParticleData (#3449)
-- PODVector: Add a Missing STL Include (#3445)
-- Disable Managed Memory for The_Arena by default. (#3438)
-- SYCL RelWithDebInfo Build: Add -g1 (#3429)
-- Clang Tidy: +modernize-use-using (#3420)
-- Intel CI: Update Warning Flags (#3443)
-- In MLEBABecLap::compGrad, add missing call to addInhomogNeumannFlux (#3441)
-- Doxygen: SoA Get[Real/Int]Data (#3439)
-- ParmParse: Line Continuation (#3437)
-- SYCL: Get Pointer Type (#3434)
-- SYCL: UUID (#3432)
-- Re-Enable FPE Trap for SYCL (#3430)
-- Memory Efficient AoS Particle Sorting (#3427)
-- Use MPI_IN_PLACE (#3428)
-- PODVector Updates (#3425)
-- generalize interpolaters to not need or use extra values in a direction
for which the refinement ratio is 1 (#3415)
-- Fix Fortran module installation (#3411)
-- Fix allocateSlice for EB (#3391)
-- Update Intel compiler installation (#3423)
-- Improve comments and documentation on FaceDivFree Interpolater. (#3422)
-- Add the option to throw an exception on MLMG failure rather than aborting (#3424)
-- Make ReduceData::value safer (#3421)
-- Use atomic load in SYCL version of the single-pass scan (#3419)
-- GPU: Add Device::deviceVendor() function and fix #3416 (#3418)
-- New feature in EB: Add regular coarse levels (#3414)
-- add access function for EBFactory (moved out of IAMR) (#3417)
-- DataServices: Qualify math functions with `std::` namespace specifier (#3406)
-- Update CleanUpCache workflow (#3403)
-- Add some profilers to AmrLevel and FillPatcher (#3402)
-- Update the clang-tidy/ccache script (#3399)
-- Update Git workflow in CONTRIBUTING.md (#3397)
-- move redist into amrex (#3378)
-- Amr: Add printing of simulation time (#3392)
-- Add function for setting growth factor (#3394)
-- Updates Ascent Github Actions CI to use 0.9.2 (latest release)
# 23.07
-- Allow users to change the default vector growth strategy (#3389)
-- Communications arena implementation (#3388)
-- CI: oneAPI SYCL for AMD GPUs (#3341)
-- GPU: Always deallocate gpu_rand_state in Finalize() (#3384)
-- Hypre ILU options (#3381)
-- Amr Class: Synchronization of StateData's Time (#3375)
-- EB 2D: Fix levelset on nodes adjacent to covered edges (#3370)