Skip to content

Commit

Permalink
CUDA 12.6 hotfix (#708)
Browse files Browse the repository at this point in the history
### Description
Update AMReX to fix a bug so we can compile with CUDA 12.6.

### Related issues
N/A

### Checklist
_Before this pull request can be reviewed, all of these tasks should be
completed. Denote completed tasks with an `x` inside the square brackets
`[ ]` in the Markdown source below:_
- [x] I have added a description (see above).
- [ ] I have added a link to any related issues see (see above).
- [x] I have read the [Contributing
Guide](https://github.com/quokka-astro/quokka/blob/development/CONTRIBUTING.md).
- [ ] I have added tests for any new physics that this PR adds to the
code.
- [ ] I have tested this PR on my local computer and all tests pass.
- [x] I have manually triggered the GPU tests with the magic comment
`/azp run`.
- [x] I have requested a reviewer for this PR.
  • Loading branch information
BenWibking authored Aug 7, 2024
1 parent fe6215e commit d68f360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/amrex
Submodule amrex updated 61 files
+1 −1 .github/workflows/catalyst.yml
+67 −0 CHANGES
+7 −1 Docs/sphinx_documentation/source/Basics.rst
+0 −18 Docs/sphinx_documentation/source/InputsCheckpoint.rst
+0 −21 Docs/sphinx_documentation/source/InputsComputeBackends.rst
+0 −56 Docs/sphinx_documentation/source/InputsLoadBalancing.rst
+0 −18 Docs/sphinx_documentation/source/InputsPlotFiles.rst
+0 −41 Docs/sphinx_documentation/source/InputsProblemDefinition.rst
+0 −18 Docs/sphinx_documentation/source/InputsTimeStepping.rst
+0 −15 Docs/sphinx_documentation/source/Inputs_Chapter.rst
+13 −0 Docs/sphinx_documentation/source/LinearSolvers.rst
+1,206 −0 Docs/sphinx_documentation/source/RuntimeParameters.rst
+1 −8 Docs/sphinx_documentation/source/index.rst
+3 −3 Src/Amr/AMReX_Amr.H
+35 −37 Src/Amr/AMReX_Amr.cpp
+18 −23 Src/AmrCore/AMReX_AmrMesh.cpp
+10 −10 Src/Base/AMReX.H
+32 −31 Src/Base/AMReX.cpp
+1 −1 Src/Base/AMReX_AsyncOut.cpp
+3 −1 Src/Base/AMReX_BaseFwd.H
+823 −653 Src/Base/AMReX_Box.H
+28 −17 Src/Base/AMReX_Box.cpp
+9 −8 Src/Base/AMReX_DistributionMapping.cpp
+3 −21 Src/Base/AMReX_FArrayBox.cpp
+14 −10 Src/Base/AMReX_FabArrayBase.cpp
+2 −2 Src/Base/AMReX_ForkJoin.cpp
+2 −4 Src/Base/AMReX_Geometry.cpp
+16 −12 Src/Base/AMReX_GpuDevice.cpp
+0 −1 Src/Base/AMReX_IArrayBox.H
+0 −2 Src/Base/AMReX_IArrayBox.cpp
+12 −0 Src/Base/AMReX_IntVect.H
+3 −3 Src/Base/AMReX_Machine.cpp
+4 −1 Src/Base/AMReX_Math.H
+1 −9 Src/Base/AMReX_MemPool.cpp
+1 −1 Src/Base/AMReX_OpenMP.cpp
+1 −1 Src/Base/AMReX_ParallelDescriptor.H
+5 −5 Src/Base/AMReX_ParallelDescriptor.cpp
+35 −1 Src/Base/AMReX_ParmParse.H
+9 −6 Src/Base/AMReX_ParmParse.cpp
+1 −9 Src/Base/AMReX_TinyProfiler.H
+16 −3 Src/Base/AMReX_TinyProfiler.cpp
+12 −12 Src/Base/AMReX_VisMF.cpp
+0 −1 Src/Base/AMReX_iMultiFab.cpp
+2 −2 Src/EB/AMReX_EB2.cpp
+0 −1 Src/EB/AMReX_EB2_MultiGFab.cpp
+0 −1 Src/EB/AMReX_WriteEBSurface.cpp
+12 −27 Src/Extern/Conduit/AMReX_Conduit_Blueprint_ParticlesI.H
+1 −1 Src/Extern/HDF5/AMReX_ParticleHDF5.H
+1 −1 Src/Extern/HDF5/AMReX_WriteBinaryParticleDataHDF5.H
+0 −1 Src/Extern/HYPRE/AMReX_HypreABecLap.H
+1 −1 Src/Particle/AMReX_BinIterator.H
+2 −2 Src/Particle/AMReX_DenseBins.H
+3 −3 Src/Particle/AMReX_NeighborList.H
+1 −1 Src/Particle/AMReX_NeighborParticlesI.H
+4 −4 Src/Particle/AMReX_ParticleContainerBase.cpp
+2 −2 Src/Particle/AMReX_ParticleContainerI.H
+1 −1 Src/Particle/AMReX_ParticleIO.H
+3 −3 Src/Particle/AMReX_SparseBins.H
+1 −1 Src/Particle/AMReX_TracerParticles.cpp
+2 −2 Src/Particle/AMReX_WriteBinaryParticleData.H
+6 −6 Tools/Plotfile/fboxinfo.cpp

0 comments on commit d68f360

Please sign in to comment.