Commit a3dcfb91 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed naming typos and formatting

parent be4dbbb9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -274,7 +274,7 @@ struct MeshBenchmarks
      Containers::Array< PointType, Device, Index > centers;
      centers.setSize( PointType::getSize() * entitiesCount );

      auto kernel_measures = [] __cuda_callable__
      auto kernel_centers = [] __cuda_callable__
         ( Index i,
           const DeviceMesh* mesh,
           PointType* array )
@@ -290,7 +290,7 @@ struct MeshBenchmarks
      auto benchmark_func = [&] () {
         Algorithms::ParallelFor< Device >::exec(
               (Index) 0, entitiesCount,
               kernel_measures,
               kernel_centers,
               &meshPointer.template getData< Device >(),
               centers.getData() );
      };