From: Bruno Turcksin Date: Wed, 13 May 2020 02:02:26 +0000 (+0000) Subject: Remove unusable variable X-Git-Tag: v9.2.0-rc2~18^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af9025b998f7ae5af4054967414a4ab67d4d5083;p=dealii.git Remove unusable variable --- diff --git a/include/deal.II/matrix_free/cuda_matrix_free.h b/include/deal.II/matrix_free/cuda_matrix_free.h index 46dcc2e03c..eb76b1d559 100644 --- a/include/deal.II/matrix_free/cuda_matrix_free.h +++ b/include/deal.II/matrix_free/cuda_matrix_free.h @@ -108,12 +108,10 @@ namespace CUDAWrappers update_JxW_values | update_quadrature_points, const bool use_coloring = false, - const bool n_colors = 1, const bool overlap_communication_computation = false) : parallelization_scheme(parallelization_scheme) , mapping_update_flags(mapping_update_flags) , use_coloring(use_coloring) - , n_colors(n_colors) , overlap_communication_computation(overlap_communication_computation) { # ifndef DEAL_II_MPI_WITH_CUDA_SUPPORT @@ -151,11 +149,6 @@ namespace CUDAWrappers */ bool use_coloring; - /** - * Number of colors created by the graph coloring algorithm. - */ - unsigned int n_colors; - /** * Overlap MPI communications with computation. This requires CUDA-aware * MPI and use_coloring must be false.