Skip to content
Snippets Groups Projects
Commit 3788f1f6 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

[multirhstest] Do not use AlignedAllocator unless needed.

The `AlignedAllocator` was used for the matrix, however the matrix does not
acually contain SIMD types, so alignment is unessary.
parent b0291a78
Branches
Tags
1 merge request!157[multirhstest] Do not use AlignedAllocator unless needed.
Pipeline #
......@@ -120,9 +120,8 @@ void test_all(unsigned int Runs = 1)
typedef Dune::FieldVector<FT,1> VB;
typedef Dune::FieldMatrix<MT,1,1> MB;
typedef Dune::AlignedAllocator<VB> AllocV;
typedef Dune::AlignedAllocator<MB> AllocM;
typedef Dune::BlockVector<VB,AllocV> Vector;
typedef Dune::BCRSMatrix<MB,AllocM> Matrix;
typedef Dune::BCRSMatrix<MB> Matrix;
// size
unsigned int size = 100;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment