- Nov 06, 2017
-
-
Jö Fahlke authored
-
- Nov 03, 2017
-
-
Christian Engwer authored
[preconditioners] fix type of CGSolver reduction parameter after recent updates See merge request core/dune-istl!132
-
Martin Nolte authored
[bugfix] ensure nonzeroes always return the number of nonzero entries Closes #28 See merge request core/dune-istl!127
-
Andreas Dedner authored
[Warnings] Fix MPI 1 deprecation warnings (by switching to MPI 2). See merge request core/dune-istl!125
-
Christian Engwer authored
-
Martin Nolte authored
fix ambiguity of _1 for certain compilers See merge request core/dune-istl!128
-
Martin Nolte authored
[preconditioner] fix ILDL for SIMD types See merge request core/dune-istl!129
-
Martin Nolte authored
-
Christian Engwer authored
the weight is a scalar, but the current code defines it a field_type, which might be a SIMD type or something else, which does not behave as a scalar. We fix this by using the SimdScalar traits to extract the scalar type and use this.
-
Christian Engwer authored
-
Jö Fahlke authored
[Warnings] Fix a signed/unsigned warning. See merge request core/dune-istl!126
-
Jö Fahlke authored
-
Jö Fahlke authored
This fixes warnings of the following form about functions deprecated in MPI 2. ``` /home/joe/Projekte/dune-simd/dune-istl/dune/istl/paamg/test/parallelamgtest.cc: In function ‘int main(int, char**)’: /home/joe/Projekte/dune-simd/dune-istl/dune/istl/paamg/test/parallelamgtest.cc:217:3: warning: ‘int MPI_Errhandler_create(void (*)(ompi_communicator_t**, int*, ...), ompi_errhandler_t**)’ is deprecated: MPI_Errhandler_create is superseded by MPI_Comm_create_errhandler in MPI-2.0 [-Wdeprecated-declarations] MPI_Errhandler_create(MPI_err_handler, &handler); ^~~~~~~~~~~~~~~~~~~~~ In file included from /home/joe/Projekte/dune-simd/dune-common/dune/common/parallel/mpitraits.hh:23:0, from /home/joe/Projekte/dune-simd/dune-common/dune/common/parallel/plocalindex.hh:9, from /home/joe/Projekte/dune-simd/dune-istl/dune/istl/paamg/test/anisotropic.hh:8, from /home/joe/Projekte/dune-simd/dune-istl/dune/istl/paamg/test/parallelamgtest.cc:7: /usr/lib/x86_64-linux-gnu/openmpi/include/mpi.h:1345:20: note: declared here OMPI_DECLSPEC int MPI_Errhandler_create(MPI_Handler_function *function, ^~~~~~~~~~~~~~~~~~~~~ ```
-
- Oct 23, 2017
-
-
Ansgar Burchardt authored
bump version to 2.7-git [ci skip] See merge request core/dune-istl!123
-
Ansgar Burchardt authored
-
- Oct 05, 2017
-
-
Carsten Gräser authored
Comment out warnings See merge request core/dune-istl!121
-
Carsten Gräser authored
These warnings are very irritating. They do not warn about deprecated or misused feature. They are issued any time you compile the tests. They don't provide any useful information unless you look at the code and have insight in the implementation detains. To sum up: They don't look like a warning addressed to the user, but like a reminder on an intended future implementation addressed to the implementor. Hence they should not be exposed to the user. If anyone feels that this is an important user warning feel free to re-enable it after adding enough information making the warning actually useful.
-
Dominic Kempf authored
[bugfix] Avoid calling std::real for unsupported types See merge request core/dune-istl!120
-
Carsten Gräser authored
The condition estimate is only supported for field_types float and double. Unfortunately, compiling this failed for any field_type not supported by std::real. Replacing the dynamic check by a static one helps to avoid the problem.
-
Carsten Gräser authored
[ci] Stop testing with Debian 8 See merge request core/dune-istl!118
-
Dominic Kempf authored
Feature/cg condition estimate See merge request core/dune-istl!102
-
- Sep 20, 2017
-
-
Martin Nolte authored
[bugfix] silence signed/unsigned comparison warning See merge request !119
-
Martin Nolte authored
-
Steffen Müthing authored
[bugfix] Make sure to use tolower from c See merge request !116
-
- Sep 19, 2017
-
-
Steffen Müthing authored
-
Steffen Müthing authored
[cleanup] Use range for instead of std::for_each See merge request !117
-
- Sep 18, 2017
-
-
Carsten Gräser authored
This commit replaces all use cases of std::for_each(..., std::mem_fn(...)) by a much more readble plain range for. It does not replace other uses, where this may be more controversial.
-
Martin Nolte authored
[bugfix] correct Givens rotations after SIMD vectorization See merge request !114
-
Martin Nolte authored
For SIMD vectorization, the branching in the Givens rotations was rewritten using conditionals (which are vectorizable). Unfortunately, the branches for cs and sn were mixed up during this step. This patch corrects the mathematical behavior to the state before SIMD vectorization while retaining the vectorizable conditionals.
-
- Sep 15, 2017
-
-
Dominic Kempf authored
Matrixmarket so far uses std::transform(..,..,.., tolower). However it only works with the C function tolower, not with std::tolower (which is a template). The patch explicitly chooses the C version. (Of course, this only breaks if somebody draws std::tolower or similar into the scope, which I would generally discourage. But the resulting failure can be avoided, so we should avoid it.)
-
- Sep 13, 2017
-
-
Steffen Müthing authored
Replace deprecated std functions See merge request !115
-
Steffen Müthing authored
The older variants for argument 1 or 2 were deprecated in C++11 and removed in C++17, causing compilation failures with Clang 5 and libc++.
-
Steffen Müthing authored
The former one was deprecated in C++11 and removed in C++17, causing compilation failures on Clang 5 with libc++.
-
- Sep 08, 2017
-
-
Ansgar Burchardt authored
[bugfix] fix 'bildl_subtractBCT' for non 'FieldMatrix' matrices Closes #35 See merge request !113
-
Janick Gerstenberger authored
-
- Sep 05, 2017
-
-
Martin Nolte authored
Incomplete LDL Decomposition See merge request !104
-
- Aug 30, 2017
-
-
Ansgar Burchardt authored
This way dependencies installed via `duneci-install-module` are built with the same options as the module to be tested.
-
Ansgar Burchardt authored
-
- Aug 16, 2017
-
-
Markus Blatt authored
Test whether vectors export 'reference' and 'const_reference' See merge request !111
-
- Aug 14, 2017
-
-
Markus Blatt authored
[feature][SeqILU] faster implementation of ILU preconditioner See merge request !96
-