Skip to content
Snippets Groups Projects
Commit 01ce2cf1 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Fix Eigen and MTL backend

parent c08e69d9
No related tags found
No related merge requests found
......@@ -70,7 +70,6 @@ namespace AMDiS
msg("assemble:element_range = {} sec",t.elapsed());
t.reset();
this->systemMatrix()->init();
tbb::parallel_for_each(element_range.begin(), element_range.end(), [&](auto const& e)
{
GlobalContext<GridView> context{gridView, e, e.geometry()};
......@@ -105,7 +104,6 @@ namespace AMDiS
localView.unbind();
});
this->systemMatrix()->finish();
msg("assemble:create matrix = {} sec",t.elapsed());
#else
Super::assembleSystem(asmMatrix,asmVector);
......
......@@ -12,6 +12,7 @@
#include <amdis/Output.hpp>
#include <amdis/linearalgebra/eigen/MatrixSize.hpp>
#include <amdis/linearalgebra/eigen/VectorBackend.hpp>
#include <amdis/operations/Assigner.hpp>
namespace AMDiS
{
......
......@@ -14,6 +14,7 @@
#include <amdis/linearalgebra/SymmetryStructure.hpp>
#include <amdis/linearalgebra/mtl/SlotSize.hpp>
#include <amdis/linearalgebra/mtl/VectorBackend.hpp>
#include <amdis/operations/Assigner.hpp>
namespace AMDiS
{
......
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