diff --git a/opm/simulators/linalg/cuistl/SolverAdapter.hpp b/opm/simulators/linalg/cuistl/SolverAdapter.hpp index 9d2c1db5c..e6471760d 100644 --- a/opm/simulators/linalg/cuistl/SolverAdapter.hpp +++ b/opm/simulators/linalg/cuistl/SolverAdapter.hpp @@ -168,7 +168,7 @@ private: const auto& communication = m_opOnCPUWithMatrix.getCommunication(); // Temporary solution use the GPU Direct communication solely based on these prepcrosessor statements - bool mpiSUpportsCudaAwareAtCompileTime = false; + bool mpiSupportsCudaAwareAtCompileTime = false; bool mpiSupportsCudaAwareAtRunTime = false; #if defined(MPIX_CUDA_AWARE_SUPPORT) && MPIX_CUDA_AWARE_SUPPORT @@ -184,7 +184,7 @@ private: // TODO add typename Operator communication type as a named type with using std::shared_ptr> gpuComm; - if (mpiSUpportsCudaAwareAtCompileTime && mpiSupportsCudaAwareAtRunTime){ + if (mpiSupportsCudaAwareAtCompileTime && mpiSupportsCudaAwareAtRunTime){ gpuComm = std::make_shared>(communication); } else{