diff options
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/SpectralKSpace.H')
-rw-r--r-- | Source/FieldSolver/SpectralSolver/SpectralKSpace.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralKSpace.H b/Source/FieldSolver/SpectralSolver/SpectralKSpace.H index f26677700..d41e05a73 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralKSpace.H +++ b/Source/FieldSolver/SpectralSolver/SpectralKSpace.H @@ -17,8 +17,8 @@ // `KVectorComponent` and `SpectralShiftFactor` hold one 1D array // ("ManagedVector") for each box ("LayoutData"). The arrays are // only allocated if the corresponding box is owned by the local MPI rank. -using KVectorComponent = amrex::LayoutData< - amrex::Gpu::ManagedVector<amrex::Real> >; +using RealKVector = amrex::Gpu::ManagedVector<amrex::Real>; +using KVectorComponent = amrex::LayoutData< RealKVector >; using SpectralShiftFactor = amrex::LayoutData< amrex::Gpu::ManagedVector<Complex> >; |