From 2ae4f434302585e1a5402a4a08b937b78f11096e Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 3 Apr 2023 16:43:56 -0400 Subject: [PATCH] Improve LinearAlgebra::parallel::Vector documentation --- include/deal.II/lac/la_parallel_vector.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/include/deal.II/lac/la_parallel_vector.h b/include/deal.II/lac/la_parallel_vector.h index cb2d74d36c..afd9a24bcd 100644 --- a/include/deal.II/lac/la_parallel_vector.h +++ b/include/deal.II/lac/la_parallel_vector.h @@ -188,14 +188,13 @@ namespace LinearAlgebra *

GPU support

* * This vector class supports two different memory spaces: Host and Default. - * By default, the memory space is Host and all the data is allocated on the - * CPU. When the memory space is Default, all the data is allocated on - * Kokkos' default memory space. That means that if Kokkos was configured - * with a GPU backend, the data is allocated on a GPU. The operations on the - * vector are performed on the chosen memory space. From the host, there are - * two methods to access the elements of the Vector when using the Default - * memory space: - *