From: Bruno Turcksin Date: Mon, 15 Apr 2019 21:34:46 +0000 (+0000) Subject: Remove unused variables X-Git-Tag: v9.1.0-rc1~200^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cc659cc45992d01dfe56578de879845c0e6a4a5;p=dealii.git Remove unused variables --- diff --git a/include/deal.II/matrix_free/cuda_matrix_free.templates.h b/include/deal.II/matrix_free/cuda_matrix_free.templates.h index 86da100138..67720c10ed 100644 --- a/include/deal.II/matrix_free/cuda_matrix_free.templates.h +++ b/include/deal.II/matrix_free/cuda_matrix_free.templates.h @@ -514,11 +514,6 @@ namespace CUDAWrappers constexpr unsigned int cells_per_block = cells_per_block_shmem(dim, Functor::n_dofs_1d - 1); - constexpr unsigned int n_dofs_per_block = - cells_per_block * Functor::n_local_dofs; - constexpr unsigned int n_q_points_per_block = - cells_per_block * Functor::n_q_points; - const unsigned int local_cell = threadIdx.x / Functor::n_dofs_1d; const unsigned int cell = local_cell + cells_per_block * (blockIdx.x + gridDim.x * blockIdx.y);