Skip to content
Snippets Groups Projects
Commit 0a28c22a authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

nothing

parent 8e0d7493
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ namespace AMDiS {
void DOFMatrix::freeDOFContent(int index)
{
if (matrix.nnz() == 0) return;
if (matrix.nnz() == 0) return;
using mtl::tag::major; using mtl::tag::nz; using mtl::begin; using mtl::end;
namespace traits= mtl::traits;
......
......@@ -797,8 +797,14 @@ namespace AMDiS {
if ((*systemMatrix)[i][j])
(*systemMatrix)[i][j]->finishInsertion();
clock_t first1 = clock();
solverMatrix.setMatrix(*systemMatrix);
clock_t first2 = clock();
createPrecon();
clock_t first3 = clock();
std::cout << "T1 = " << TIME_USED(first1, first2) << std::endl;
std::cout << "T2 = " << TIME_USED(first2, first3) << std::endl;
#ifdef _OPENMP
INFO(info, 8)("buildAfterCoarsen needed %.5f seconds system time / %.5f seconds wallclock time\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment