// Test that we can successfully fill a GrowingVectorMemory pool
-// with LinearAlgebra::distributed::Vector<Number, MemorySpace::CUDA> objects.
-// Partially copied from lac/vector_memory.cc
+// with LinearAlgebra::distributed::Vector<Number, MemorySpace::Default>
+// objects. Partially copied from lac/vector_memory.cc
#include <deal.II/base/exceptions.h>
initlog();
Utilities::MPI::MPI_InitFinalize mpi_init(argc, argv, 1);
- test_stat<LinearAlgebra::distributed::Vector<double, MemorySpace::CUDA>>();
- test_stat<LinearAlgebra::distributed::Vector<float, MemorySpace::CUDA>>();
+ test_stat<LinearAlgebra::distributed::Vector<double, MemorySpace::Default>>();
+ test_stat<LinearAlgebra::distributed::Vector<float, MemorySpace::Default>>();
return 0;
}
// Test that memory leaks are detected correctly for a GrowingVectorMemory pool
-// with LinearAlgebra::distributed<Number, MemorySpace::CUDA> objects.
+// with LinearAlgebra::distributed<Number, MemorySpace::Default> objects.
// Partially copied from lac/vector_memory.cc
try
{
test_leak<
- LinearAlgebra::distributed::Vector<double, MemorySpace::CUDA>>();
- test_leak<LinearAlgebra::distributed::Vector<float, MemorySpace::CUDA>>();
+ LinearAlgebra::distributed::Vector<double, MemorySpace::Default>>();
+ test_leak<
+ LinearAlgebra::distributed::Vector<float, MemorySpace::Default>>();
}
catch (const StandardExceptions::ExcMemoryLeak &e)
{