]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
7 months agoUpdate Trilinos readme. 16659/head
Marc Fehling [Fri, 16 Feb 2024 20:47:00 +0000 (13:47 -0700)]
Update Trilinos readme.

7 months agoMerge pull request #16645 from sebproell/nvector-multi
Wolfgang Bangerth [Fri, 16 Feb 2024 03:42:55 +0000 (20:42 -0700)]
Merge pull request #16645 from sebproell/nvector-multi

SUNDIALS N_Vector: implement efficient operations

7 months agoMerge pull request #16632 from peterrum/compute_active_cell_halo_layer_pbc
Matthias Maier [Fri, 16 Feb 2024 02:20:36 +0000 (02:20 +0000)]
Merge pull request #16632 from peterrum/compute_active_cell_halo_layer_pbc

GridTools::compute_active_cell_halo_layer() for periodic meshes

7 months agoMerge pull request #16633 from kronbichler/fix_empty_comm
Matthias Maier [Fri, 16 Feb 2024 02:20:26 +0000 (02:20 +0000)]
Merge pull request #16633 from kronbichler/fix_empty_comm

MG transfer global coarsening: Avoid sending empty messages

7 months agoMerge pull request #16647 from bangerth/t-7
Matthias Maier [Fri, 16 Feb 2024 02:20:17 +0000 (02:20 +0000)]
Merge pull request #16647 from bangerth/t-7

Add Tpetra tests that are already working.

7 months agoMerge pull request #16653 from tamiko/fix_mpi_datatype
Matthias Maier [Fri, 16 Feb 2024 00:38:31 +0000 (00:38 +0000)]
Merge pull request #16653 from tamiko/fix_mpi_datatype

Fix segmentation fault when using mpich

7 months agoAdd Tpetra tests that are already working. 16647/head
Wolfgang Bangerth [Wed, 14 Feb 2024 18:02:51 +0000 (11:02 -0700)]
Add Tpetra tests that are already working.

7 months agobase/mpi.h: mark a template variable to have "const inline" linkage. 16653/head
Matthias Maier [Thu, 15 Feb 2024 22:03:22 +0000 (16:03 -0600)]
base/mpi.h: mark a template variable to have "const inline" linkage.

7 months agobase/mpi.cc: remove superfluous explicit instantiations of template variable
Matthias Maier [Thu, 15 Feb 2024 21:54:36 +0000 (15:54 -0600)]
base/mpi.cc: remove superfluous explicit instantiations of template variable

The `mpi.h` header already contains:
```
template <typename T>
const MPI_Datatype mpi_type_id_for_type = /* implementation detail */;
```
Meaning, the variable is known fully after including the header.
Furthermore, the `const` qualifier marks the (template) variable as
`static`. I.e., it has internal linkage.

Thus, we must not explicitly instantiate the variables (suggesting
"extern" linkage in all but the `mpi.cc` compilation unit). This
apparently not an issue with OpenMPI because `MPI_Datatype` is a
complex data structure. But it is an issue with mpich where
`MPI_Datatype` is a simple `int` - leading to a segmentation fault when
during program startup.

7 months agoSUNDIALS N_Vector: implement efficient operations 16645/head
Sebastian Proell [Sat, 4 Nov 2023 11:39:18 +0000 (12:39 +0100)]
SUNDIALS N_Vector: implement efficient operations

These operation are only supported by deal.II vectors.

7 months agoMerge pull request #16648 from masterleinad/tpetra_sparse_matrix_frobenius
Wolfgang Bangerth [Thu, 15 Feb 2024 00:31:27 +0000 (17:31 -0700)]
Merge pull request #16648 from masterleinad/tpetra_sparse_matrix_frobenius

Tpetra: Add frobenius_norm to SparseMatrix

7 months agoMerge pull request #16649 from masterleinad/fix_optional_header_tpetra_vector
Wolfgang Bangerth [Thu, 15 Feb 2024 00:31:06 +0000 (17:31 -0700)]
Merge pull request #16649 from masterleinad/fix_optional_header_tpetra_vector

Add missing <optional> header for trilinos_tpetra_vector.h

7 months agoMerge pull request #16646 from jpthiele/testsuite-documentation
Wolfgang Bangerth [Wed, 14 Feb 2024 21:51:34 +0000 (14:51 -0700)]
Merge pull request #16646 from jpthiele/testsuite-documentation

Add info for TPLs to testsuite doc.

7 months agoAdd missing <optional> header for trilinos_tpetra_vector.h 16649/head
Daniel Arndt [Wed, 14 Feb 2024 21:38:09 +0000 (16:38 -0500)]
Add missing <optional> header for trilinos_tpetra_vector.h

7 months agoTpetra: Add frobenius_norm to SparseMatrix 16648/head
Daniel Arndt [Wed, 14 Feb 2024 21:31:28 +0000 (16:31 -0500)]
Tpetra: Add frobenius_norm to SparseMatrix

7 months agoAdd info for TPLs to testsuite doc. 16646/head
Jan Philipp Thiele [Wed, 14 Feb 2024 16:27:46 +0000 (17:27 +0100)]
Add info for TPLs to testsuite doc.

7 months agoMerge pull request #16629 from masterleinad/github_ci_trilinos_tpetra
David Wells [Wed, 14 Feb 2024 17:35:30 +0000 (12:35 -0500)]
Merge pull request #16629 from masterleinad/github_ci_trilinos_tpetra

GitHub CI: Test building with Trilinos+Tpetra

7 months agoMerge pull request #16637 from bangerth/t-5
Martin Kronbichler [Wed, 14 Feb 2024 08:06:29 +0000 (09:06 +0100)]
Merge pull request #16637 from bangerth/t-5

Fix Tpetra vector element access.

7 months agoMerge pull request #16640 from bangerth/doc
Daniel Arndt [Tue, 13 Feb 2024 18:20:45 +0000 (11:20 -0700)]
Merge pull request #16640 from bangerth/doc

Clarify the documentation of IndexSet::is_empty().

7 months agoUse 'auto' instead of declaring a complicated type. 16637/head
Wolfgang Bangerth [Tue, 13 Feb 2024 00:04:54 +0000 (17:04 -0700)]
Use 'auto' instead of declaring a complicated type.

7 months agoClarify the documentation of IndexSet::is_empty(). 16640/head
Wolfgang Bangerth [Tue, 13 Feb 2024 02:47:59 +0000 (19:47 -0700)]
Clarify the documentation of IndexSet::is_empty().

7 months agoMerge pull request #16638 from lethe-cfd/changelog_colorize_cylinder_shell
Wolfgang Bangerth [Tue, 13 Feb 2024 02:37:34 +0000 (19:37 -0700)]
Merge pull request #16638 from lethe-cfd/changelog_colorize_cylinder_shell

Add missing changelog entry for colorize cylinder_shell

7 months agoAdd missing changelog entry 16638/head
Bruno Blais [Tue, 13 Feb 2024 00:04:06 +0000 (19:04 -0500)]
Add missing changelog entry

7 months agoApply the same patch also to the set() function.
Wolfgang Bangerth [Mon, 12 Feb 2024 20:56:41 +0000 (13:56 -0700)]
Apply the same patch also to the set() function.

7 months agoAdd an assertion.
Wolfgang Bangerth [Mon, 12 Feb 2024 20:54:08 +0000 (13:54 -0700)]
Add an assertion.

7 months agoCreate views lazily, once we know that we need them.
Wolfgang Bangerth [Mon, 12 Feb 2024 20:46:13 +0000 (13:46 -0700)]
Create views lazily, once we know that we need them.

7 months agoRearrange code slightly.
Wolfgang Bangerth [Mon, 12 Feb 2024 20:26:14 +0000 (13:26 -0700)]
Rearrange code slightly.

7 months agoMerge pull request #16497 from Rombur/rename_cudawrappers
Daniel Arndt [Mon, 12 Feb 2024 20:42:22 +0000 (13:42 -0700)]
Merge pull request #16497 from Rombur/rename_cudawrappers

Move matrix free classes from CUDAWrappers namespace to Portable namespace

7 months agoMerge pull request #16634 from kronbichler/improve_docu
Peter Munch [Mon, 12 Feb 2024 18:57:14 +0000 (19:57 +0100)]
Merge pull request #16634 from kronbichler/improve_docu

MPI compute index owner: improve documentation of flag

7 months agoMerge pull request #16608 from bangerth/t-2
Daniel Arndt [Mon, 12 Feb 2024 18:04:02 +0000 (11:04 -0700)]
Merge pull request #16608 from bangerth/t-2

Work around an issue in Teuchos::rcpFromRef() with types only forward declared.

7 months agoMerge pull request #16607 from bangerth/t-1
Daniel Arndt [Mon, 12 Feb 2024 18:03:40 +0000 (11:03 -0700)]
Merge pull request #16607 from bangerth/t-1

Improve the error message we get for DEAL_II_ASSERT_UNREACHABLE().

7 months agoMerge pull request #16610 from bangerth/t-4
Daniel Arndt [Mon, 12 Feb 2024 18:00:20 +0000 (11:00 -0700)]
Merge pull request #16610 from bangerth/t-4

Also instantiate the Trilinos Tpetra VectorReference class.

7 months agoGridTools::compute_active_cell_halo_layer() for periodic meshes 16632/head
Peter Munch [Mon, 12 Feb 2024 08:39:15 +0000 (09:39 +0100)]
GridTools::compute_active_cell_halo_layer() for periodic meshes

7 months agoMerge pull request #16630 from lethe-cfd/colorize_cylinder_shell
Wolfgang Bangerth [Mon, 12 Feb 2024 17:00:19 +0000 (10:00 -0700)]
Merge pull request #16630 from lethe-cfd/colorize_cylinder_shell

Add colorize option to cylinder_shell

7 months agoGitHub CI: Test buildng with Trilinos+Tpetra 16629/head
Daniel Arndt [Sun, 11 Feb 2024 17:33:34 +0000 (12:33 -0500)]
GitHub CI: Test buildng with Trilinos+Tpetra

7 months agoMerge pull request #16631 from peterrum/mpi_compute_index_owner_internal_global_dof_index
Wolfgang Bangerth [Mon, 12 Feb 2024 15:58:32 +0000 (08:58 -0700)]
Merge pull request #16631 from peterrum/mpi_compute_index_owner_internal_global_dof_index

ConsensusAlgorithmsPayload: switch internal data type

7 months agoMPI compute index owner: improve documentation of flag 16634/head
Martin Kronbichler [Mon, 12 Feb 2024 12:25:58 +0000 (13:25 +0100)]
MPI compute index owner: improve documentation of flag

7 months agoMG transfer global coarsening: Avoid sending empty messages 16633/head
Martin Kronbichler [Mon, 12 Feb 2024 12:13:23 +0000 (13:13 +0100)]
MG transfer global coarsening: Avoid sending empty messages

7 months agoMerge pull request #16619 from peterrum/feeval_dg_hp_quad
Martin Kronbichler [Mon, 12 Feb 2024 08:27:58 +0000 (09:27 +0100)]
Merge pull request #16619 from peterrum/feeval_dg_hp_quad

FEFaceEvaluation + DG + hp: fix quadrature indexing

7 months agoConsensusAlgorithmsPayload: switch internal data type 16631/head
Peter Munch [Sun, 11 Feb 2024 22:43:59 +0000 (23:43 +0100)]
ConsensusAlgorithmsPayload: switch internal data type

7 months agoFix indent 16630/head
Bruno Blais [Mon, 12 Feb 2024 04:12:14 +0000 (23:12 -0500)]
Fix indent

7 months agoAdd a unit test for the colorized cylinder shell
Bruno Blais [Mon, 12 Feb 2024 04:10:28 +0000 (23:10 -0500)]
Add a unit test for the colorized cylinder shell

7 months agoAdd adequate usage of colorize
Bruno Blais [Mon, 12 Feb 2024 03:47:48 +0000 (22:47 -0500)]
Add adequate usage of colorize

7 months agoMerge pull request #16617 from tamiko/cmake_fix_bundled_include
Matthias Maier [Sun, 11 Feb 2024 21:32:08 +0000 (21:32 +0000)]
Merge pull request #16617 from tamiko/cmake_fix_bundled_include

CMake: make sure that bundled include directory gets created

7 months agoAdd const qualifier
Bruno Blais [Sun, 11 Feb 2024 21:10:43 +0000 (16:10 -0500)]
Add const qualifier

7 months agoFix generator from name
Bruno Blais [Sun, 11 Feb 2024 19:53:26 +0000 (14:53 -0500)]
Fix generator from name

7 months agoAdd documentation
Bruno Blais [Sun, 11 Feb 2024 19:50:16 +0000 (14:50 -0500)]
Add documentation

7 months agoAdd colorize option to cylinder_shell
Bruno Blais [Sun, 11 Feb 2024 19:47:51 +0000 (14:47 -0500)]
Add colorize option to cylinder_shell

7 months agoMerge pull request #16628 from jpthiele/fix-tpetra-testsuite
Wolfgang Bangerth [Sun, 11 Feb 2024 19:13:33 +0000 (12:13 -0700)]
Merge pull request #16628 from jpthiele/fix-tpetra-testsuite

Specify when Tpetra tests should be run

7 months agoTests are only added when tpetra in cofigured 16628/head
Jan Philipp Thiele [Sun, 11 Feb 2024 09:58:28 +0000 (10:58 +0100)]
Tests are only added when tpetra in cofigured

7 months agoMerge pull request #16626 from masterleinad/tpetra_fix_13_2
Wolfgang Bangerth [Sun, 11 Feb 2024 03:41:30 +0000 (20:41 -0700)]
Merge pull request #16626 from masterleinad/tpetra_fix_13_2

Tpetra: Fix compiling with Trilinos versions prior to 13.2

7 months agoMerge pull request #16625 from jpthiele/tpetra_test_dealii_solvers
Wolfgang Bangerth [Sun, 11 Feb 2024 03:41:21 +0000 (20:41 -0700)]
Merge pull request #16625 from jpthiele/tpetra_test_dealii_solvers

Add tests for deal.II solvers with TpetraWrappers classes

7 months agoTpetra: Fix compiling with Trilinos versions prior to 13.2 16626/head
Daniel Arndt [Sat, 10 Feb 2024 18:18:20 +0000 (13:18 -0500)]
Tpetra: Fix compiling with Trilinos versions prior to 13.2

7 months agoMerge pull request #16620 from bangerth/t-5
Daniel Arndt [Sat, 10 Feb 2024 16:09:02 +0000 (09:09 -0700)]
Merge pull request #16620 from bangerth/t-5

Fix the name by which we reference an exception class.

7 months agoAdd tests for deal solvers with TpetraWrappers 16625/head
Jan Philipp Thiele [Sat, 10 Feb 2024 15:00:28 +0000 (16:00 +0100)]
Add tests for deal solvers with TpetraWrappers

7 months agoAdd norm_sqr() function to TpetraVector
Jan Philipp Thiele [Sat, 10 Feb 2024 14:59:58 +0000 (15:59 +0100)]
Add norm_sqr() function to TpetraVector

7 months agoAdd swap function to Tpetra vector
Jan Philipp Thiele [Sat, 10 Feb 2024 12:44:58 +0000 (13:44 +0100)]
Add swap function to Tpetra vector

7 months agoMerge pull request #16616 from masterleinad/tpetra_sparse_matrix_element_access
Wolfgang Bangerth [Sat, 10 Feb 2024 00:03:00 +0000 (17:03 -0700)]
Merge pull request #16616 from masterleinad/tpetra_sparse_matrix_element_access

Tpetra: Implement operator(), el(), and diag_element() for SparseMatrix

7 months agoFix the name by which we reference an exception class. 16620/head
Wolfgang Bangerth [Fri, 9 Feb 2024 23:22:32 +0000 (16:22 -0700)]
Fix the name by which we reference an exception class.

7 months agoMerge pull request #16613 from kinnewig/tpetra_wrappers_operator_number
Wolfgang Bangerth [Fri, 9 Feb 2024 22:59:09 +0000 (15:59 -0700)]
Merge pull request #16613 from kinnewig/tpetra_wrappers_operator_number

Implementation for TpetraWrappers::Vector::operator Number()

7 months agoTpetra: Implement serial constructors, operator(), el(), and diag_element() for Spars... 16616/head
Daniel Arndt [Fri, 9 Feb 2024 04:39:34 +0000 (23:39 -0500)]
Tpetra: Implement serial constructors, operator(), el(), and diag_element() for SparseMatrix

7 months agoFEEvaluation + DG + hp: fix quadrature indexing 16619/head
Peter Munch [Fri, 9 Feb 2024 18:53:23 +0000 (19:53 +0100)]
FEEvaluation + DG + hp: fix quadrature indexing

7 months agoAdd changelog 16497/head
Bruno Turcksin [Fri, 9 Feb 2024 14:57:04 +0000 (09:57 -0500)]
Add changelog

7 months agoDeprecate CUDAWrappers if the compiler supports it
Bruno Turcksin [Fri, 9 Feb 2024 14:48:57 +0000 (09:48 -0500)]
Deprecate CUDAWrappers if the compiler supports it

7 months agoMerge pull request #16612 from tjhei/strip-comments-build-dir
Matthias Maier [Fri, 9 Feb 2024 17:48:18 +0000 (17:48 +0000)]
Merge pull request #16612 from tjhei/strip-comments-build-dir

fix strip_comments target

7 months agoCMake: make sure that bundled include directory gets created 16617/head
Matthias Maier [Fri, 9 Feb 2024 17:38:03 +0000 (11:38 -0600)]
CMake: make sure that bundled include directory gets created

7 months agoMerge pull request #16615 from peterrum/FlexibleIndexStorage
Martin Kronbichler [Fri, 9 Feb 2024 14:56:42 +0000 (15:56 +0100)]
Merge pull request #16615 from peterrum/FlexibleIndexStorage

FlexibleIndexStorage: fix memory allocation

7 months agoMove matrix free classes from CUDAWrappers namespace to Portable namespace
Bruno Turcksin [Fri, 1 Dec 2023 18:24:40 +0000 (13:24 -0500)]
Move matrix free classes from CUDAWrappers namespace to Portable namespace

7 months agoFlexibleIndexStorage: fix memory allocation 16615/head
Peter Munch [Fri, 9 Feb 2024 11:58:59 +0000 (12:58 +0100)]
FlexibleIndexStorage: fix memory allocation

7 months agoImplementation for TpetraWrappers::Vector::operator Number() 16613/head
Sebastian Kinnewig [Fri, 9 Feb 2024 08:46:23 +0000 (09:46 +0100)]
Implementation for TpetraWrappers::Vector::operator Number()

7 months agoMerge pull request #16609 from bangerth/t-3
Daniel Arndt [Fri, 9 Feb 2024 04:06:53 +0000 (21:06 -0700)]
Merge pull request #16609 from bangerth/t-3

Fix 64-bit compilation with old PETSc versions.

7 months agofix strip_comments target 16612/head
Timo Heister [Fri, 9 Feb 2024 03:32:33 +0000 (22:32 -0500)]
fix strip_comments target

The ``strip_comments`` target only worked for in-source builds. Fix the
CMake logic to make it work with separate build directories.

7 months agoImprove the error message we get for DEAL_II_ASSERT_UNREACHABLE(). 16607/head
Wolfgang Bangerth [Thu, 8 Feb 2024 18:29:34 +0000 (11:29 -0700)]
Improve the error message we get for DEAL_II_ASSERT_UNREACHABLE().

7 months agoFix 64-bit compilation with old PETSc versions. 16609/head
Wolfgang Bangerth [Thu, 8 Feb 2024 18:15:08 +0000 (11:15 -0700)]
Fix 64-bit compilation with old PETSc versions.

7 months agoAlso instantiate the Trilinos Tpetra VectorReference class. 16610/head
Wolfgang Bangerth [Thu, 8 Feb 2024 21:21:07 +0000 (14:21 -0700)]
Also instantiate the Trilinos Tpetra VectorReference class.

7 months agoMerge pull request #16600 from bangerth/conv
Martin Kronbichler [Thu, 8 Feb 2024 19:10:33 +0000 (20:10 +0100)]
Merge pull request #16600 from bangerth/conv

Convert tutorials to use DEAL_II_ASSERT_UNREACHABLE().

7 months agoMerge pull request #16606 from vovannikov/fix_intel_compile_tpetra_sp
Martin Kronbichler [Thu, 8 Feb 2024 19:06:46 +0000 (20:06 +0100)]
Merge pull request #16606 from vovannikov/fix_intel_compile_tpetra_sp

Fix compilation error arising with Intel ICC compiler in `trilinos_tpetra_sparsity_pattern.cc`

7 months agoWork around an issue with types only forward declared. 16608/head
Wolfgang Bangerth [Thu, 8 Feb 2024 18:25:45 +0000 (11:25 -0700)]
Work around an issue with types only forward declared.

7 months agoFix compilation error arising with Intel 16606/head
Vladimir Ivannikov [Thu, 8 Feb 2024 13:25:07 +0000 (14:25 +0100)]
Fix compilation error arising with Intel

7 months agoMerge pull request #16604 from masterleinad/tpetra_replace_trilinos_scalar
Marc Fehling [Thu, 8 Feb 2024 02:22:00 +0000 (19:22 -0700)]
Merge pull request #16604 from masterleinad/tpetra_replace_trilinos_scalar

Tpetra: Replace TrilinosScalar

7 months agoTpetra: Replace TrilinosScalar 16604/head
Daniel Arndt [Wed, 7 Feb 2024 21:59:41 +0000 (16:59 -0500)]
Tpetra: Replace TrilinosScalar

7 months agoMerge pull request #16603 from jpthiele/fix-cmake-tpetra-typo
Wolfgang Bangerth [Wed, 7 Feb 2024 21:32:04 +0000 (14:32 -0700)]
Merge pull request #16603 from jpthiele/fix-cmake-tpetra-typo

Fix deal.II CMake flag in Tpetra configure warning

7 months agoFix deal.II CMake flag in Tpetra warning 16603/head
Jan Philipp Thiele [Wed, 7 Feb 2024 20:59:55 +0000 (21:59 +0100)]
Fix deal.II CMake flag in Tpetra warning

7 months agoMerge pull request #16599 from bangerth/unreachable
Daniel Arndt [Wed, 7 Feb 2024 18:57:57 +0000 (11:57 -0700)]
Merge pull request #16599 from bangerth/unreachable

Explain how DEAL_II_ASSERT_UNREACHABLE() is used.

7 months agoMerge pull request #16601 from bangerth/exc
Martin Kronbichler [Wed, 7 Feb 2024 11:53:24 +0000 (12:53 +0100)]
Merge pull request #16601 from bangerth/exc

Better document a funny construct.

7 months agoMerge pull request #16598 from masterleinad/tpetra_fix_linear_operator_15
Daniel Arndt [Wed, 7 Feb 2024 03:16:53 +0000 (20:16 -0700)]
Merge pull request #16598 from masterleinad/tpetra_fix_linear_operator_15

Tpetra: Enable lac/linear_operator_15

7 months agoBetter document a funny construct. 16601/head
Wolfgang Bangerth [Tue, 6 Feb 2024 23:38:16 +0000 (16:38 -0700)]
Better document a funny construct.

7 months agoExplain how DEAL_II_ASSERT_UNREACHABLE() is used. 16599/head
Wolfgang Bangerth [Tue, 6 Feb 2024 19:53:59 +0000 (12:53 -0700)]
Explain how DEAL_II_ASSERT_UNREACHABLE() is used.

7 months agoConvert tutorials to use DEAL_II_ASSERT_UNREACHABLE(). 16600/head
Wolfgang Bangerth [Tue, 6 Feb 2024 20:30:28 +0000 (13:30 -0700)]
Convert tutorials to use DEAL_II_ASSERT_UNREACHABLE().

7 months agoMerge pull request #16581 from bangerth/unreachable
Matthias Maier [Tue, 6 Feb 2024 19:32:35 +0000 (19:32 +0000)]
Merge pull request #16581 from bangerth/unreachable

Introduce DEAL_II_UNREACHABLE().

7 months agoTpetra: Enable lac/linear_operator_15 16598/head
Daniel Arndt [Tue, 6 Feb 2024 17:58:48 +0000 (12:58 -0500)]
Tpetra: Enable lac/linear_operator_15

7 months agoMerge pull request #16592 from bangerth/doc
Bruno Turcksin [Tue, 6 Feb 2024 17:56:52 +0000 (12:56 -0500)]
Merge pull request #16592 from bangerth/doc

Better document one aspect of what you can't do with ghosted vectors.

7 months agoAdd a changelog entry. 16581/head
Wolfgang Bangerth [Thu, 1 Feb 2024 04:45:27 +0000 (21:45 -0700)]
Add a changelog entry.

7 months agoUse DEAL_II_UNREACHABLE() in include/ and source/.
Wolfgang Bangerth [Thu, 1 Feb 2024 04:44:11 +0000 (21:44 -0700)]
Use DEAL_II_UNREACHABLE() in include/ and source/.

7 months agoIntroduce DEAL_II_UNREACHABLE().
Wolfgang Bangerth [Thu, 1 Feb 2024 04:43:34 +0000 (21:43 -0700)]
Introduce DEAL_II_UNREACHABLE().

7 months agoBetter document one aspect of what you can't do with ghosted vectors. 16592/head
Wolfgang Bangerth [Sun, 4 Feb 2024 17:15:02 +0000 (10:15 -0700)]
Better document one aspect of what you can't do with ghosted vectors.

7 months agoMerge pull request #16594 from bangerth/mpi
Martin Kronbichler [Tue, 6 Feb 2024 07:22:04 +0000 (08:22 +0100)]
Merge pull request #16594 from bangerth/mpi

Better document problems with failed MPI I/O calls.

7 months agoMerge pull request #16593 from bangerth/tria
David Wells [Mon, 5 Feb 2024 23:40:20 +0000 (18:40 -0500)]
Merge pull request #16593 from bangerth/tria

More minor edits to tria_description.cc.

7 months agoMerge pull request #16596 from bergbauer/remove_projection
Wolfgang Bangerth [Mon, 5 Feb 2024 22:17:41 +0000 (15:17 -0700)]
Merge pull request #16596 from bergbauer/remove_projection

NonMatching::MappingInfo: Remove quadrature projection

7 months agoMerge pull request #16532 from bergbauer/fix_performance_quadrature_generator
Wolfgang Bangerth [Mon, 5 Feb 2024 22:14:30 +0000 (15:14 -0700)]
Merge pull request #16532 from bergbauer/fix_performance_quadrature_generator

Fix performance quadrature generator


In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.