Commit 833011ad authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Commented out unused variables in HeatEquationBenchmarkProblem

parent f9190a81
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -598,11 +598,13 @@ getExplicitUpdate( const RealType& time,
            userData.real_u = uDofs->getData();
            userData.real_fu = fuDofs->getData();
#endif                        
            /*
            const IndexType gridXSize = mesh->getDimensions().x();
            const IndexType gridYSize = mesh->getDimensions().y();
            dim3 cudaBlockSize( 16, 16 );
            dim3 cudaGridSize( gridXSize / 16 + ( gridXSize % 16 != 0 ),
                               gridYSize / 16 + ( gridYSize % 16 != 0 ) );
            */

            TNL::Devices::Cuda::synchronizeDevice();
            int cudaErr;