]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Provide a more readable indentation. 6713/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Tue, 5 Jun 2018 23:47:37 +0000 (17:47 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 6 Jun 2018 00:25:12 +0000 (18:25 -0600)
include/deal.II/matrix_free/cuda_matrix_free.h

index 302520e34082cb541dc511f3140256b81f278736..f114cf12a1cc4e715601d5f7d5533cc639e624ad 100644 (file)
@@ -307,17 +307,21 @@ namespace CUDAWrappers
 
 
   // This function determines the number of cells per block, possibly at compile
-  // time
+  // time (by virtue of being 'constexpr')
   // TODO this function should be rewritten using meta-programming
   __host__ __device__ constexpr unsigned int
            cells_per_block_shmem(int dim, int fe_degree)
   {
-    return dim == 2 ?
-             (fe_degree == 1 ?
-                32 :
-                fe_degree == 2 ? 8 :
-                                 fe_degree == 3 ? 4 : fe_degree == 4 ? 4 : 1) :
-             dim == 3 ? (fe_degree == 1 ? 8 : fe_degree == 2 ? 2 : 1) : 1;
+    /* clang-format off */
+    return dim==2 ? (fe_degree==1 ? 32 :
+                     fe_degree==2 ? 8 :
+                     fe_degree==3 ? 4 :
+                     fe_degree==4 ? 4 :
+                     1) :
+           dim==3 ? (fe_degree==1 ? 8 :
+                     fe_degree==2 ? 2 :
+                     1) : 1;
+    /* clang-format on */
   }
 } // namespace CUDAWrappers
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.