- Dec 12, 2020
-
-
Andreas Dedner authored
don't pick it up to build or in dependency list should be dune_py instead of dune-py
-
- Dec 09, 2020
-
-
Andreas Dedner authored
Add support for --module=mod to bin/setup-dunepy.py See merge request core/dune-common!902
-
This adds an optional parameter `--module=mod` to `setup-dunepy.py`. If this parameter is passed, only `mod` and its dependencies are used as dependencies of the newly created dune-py module. This allows to do ``` dunecontrol --opts=my.opts --module=foo all setup-dunepy.py --opts=my.opts --module=foo install ``` which would otherwise fail if `setup-dunepy.py` tries to process found modules that have not been build by `dunecontrol`. If the option is not passed all found modules are used as dependencies as before.
-
- Nov 25, 2020
-
-
Robert K authored
[bugfix][Python] indentation of compilation call. See merge request core/dune-common!899
-
Robert K authored
-
- Nov 19, 2020
-
-
Andreas Dedner authored
use a unique_ptr to avoid memory leak See merge request core/dune-common!898
-
- Nov 18, 2020
-
-
Andreas Dedner authored
-
- Nov 15, 2020
-
-
Andreas Dedner authored
switch to newer pybind11 version (2.6.1 from Nov 2020) See merge request core/dune-common!895
-
Andreas Dedner authored
use relative path for add_subdirectory in python generator See merge request core/dune-common!896
-
-
- Nov 14, 2020
-
-
Simon Praetorius authored
require at least MPI >= 3.0 See merge request core/dune-common!891
-
Simon Praetorius authored
-
- Nov 13, 2020
-
-
Christian Engwer authored
remove ambiguity when multiplying Float128 with __float128 See merge request core/dune-common!846
-
Andreas Dedner authored
-
- Nov 06, 2020
-
-
Simon Praetorius authored
Remove the ENABLE_SCOTCH_METIS and ENABLE_SCOTCH_PRMETIS flags from the cmake find modules See merge request core/dune-common!887
-
Simon Praetorius authored
-
- Nov 05, 2020
-
-
Christian Engwer authored
Add wrapper representing the transposed of a matrix See merge request core/dune-common!889
-
- Nov 04, 2020
-
-
Carsten Gräser authored
-
Carsten Gräser authored
Currently the wrapper only implements ```cpp auto c = a*transpose(b); ``` if `a` is a `FieldMatrix* of appropriate size. This is optimal even for sparse `b` because it only relies on calling `b.mv(a[i], c[i])` for the rows of `a`. More functionality may be added later on. Since the created object only stores a reference to the wrapped matrix, it cannot be modified and should not be stored but used directly. The classical application is doing a local-to-global transformation of the Jacobians of a local finite element. ```cpp auto jacobian = referenceJacobian * transpose(geometry.inverseJacobianTransposed(xLocal)); ```
-
- Oct 31, 2020
-
-
Christoph Grüninger authored
Feature/cmake with link interface See merge request core/dune-common!875
-
Christoph Grüninger authored
-
Christoph Grüninger authored
-
Christoph Grüninger authored
-
If no link keyword like PUBLIC or INTERFACE is given, add PUBLIC to not break CMP0023.
-
- Oct 30, 2020
-
-
Christian Engwer authored
Fix mpi gather scatter See merge request core/dune-common!885
-
- Oct 29, 2020
-
-
Christoph Grüninger authored
[cmake] Deprecate dune_list_filter See merge request core/dune-common!882
-
Christoph Grüninger authored
We require CMake 3.13.
-
- Oct 28, 2020
-
-
Nils-Arne Dreier authored
-
Nils-Arne Dreier authored
-
- Oct 24, 2020
-
-
Simon Praetorius authored
link ParMETIS against METIS See merge request core/dune-common!884
-
Simon Praetorius authored
-
- Oct 23, 2020
-
-
Simon Praetorius authored
Remove workaround for threading library bug in old gcc See merge request core/dune-common!865
-
Simon Praetorius authored
fix flags for MPI and ParMETIS See merge request core/dune-common!881
-
Simon Praetorius authored
-
- Oct 22, 2020
-
-
Simon Praetorius authored
correct parametis test See merge request core/dune-common!880
-
Simon Praetorius authored
-
- Oct 19, 2020
-
-
Simon Praetorius authored
Rewrite FindParMETIS to provide imported targets See merge request core/dune-common!822
-
Simon Praetorius authored
Test for ParMETIS added Move HAVE_PARMETIS and dune_register_package_flags to AddParMETISFlags Add ENABLE_PTSCOTCH_PARMETIS for enabling ptscotch replacement for ParMETIS
-
Robert K authored
Replace #pragma once with real header guard to when generating code. See merge request core/dune-common!878
-
Robert K authored
avoid warnings.
-