]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
7 months agoMerge pull request #16658 from drwells/find-active-cell-around-point-simplices-9.5 dealii-9.5
Marc Fehling [Fri, 16 Feb 2024 21:34:22 +0000 (14:34 -0700)]
Merge pull request #16658 from drwells/find-active-cell-around-point-simplices-9.5

Find active cell around point simplices 9.5

7 months agoFix test 16658/head
Peter Munch [Wed, 2 Aug 2023 10:04:54 +0000 (12:04 +0200)]
Fix test

7 months agoMerge pull request #16655 from tamiko/pr_16653_for_9.5
Wolfgang Bangerth [Fri, 16 Feb 2024 15:44:43 +0000 (08:44 -0700)]
Merge pull request #16655 from tamiko/pr_16653_for_9.5

[9.5] take over pr #16653

7 months agoGridTools::find_active_cell_around_point() and find_all_active_cells_around_point...
Peter Munch [Sun, 30 Jul 2023 20:30:14 +0000 (22:30 +0200)]
GridTools::find_active_cell_around_point() and find_all_active_cells_around_point() for simplices

7 months agoUse Cache::get_vertex_to_cell_map() in GT::find_all_locally_owned_active_cells_around...
Peter Munch [Mon, 31 Jul 2023 13:37:38 +0000 (15:37 +0200)]
Use Cache::get_vertex_to_cell_map() in GT::find_all_locally_owned_active_cells_around_point()

7 months agompi.h: use static instead of inline for C++14 support. 16655/head
Matthias Maier [Fri, 16 Feb 2024 02:16:41 +0000 (20:16 -0600)]
mpi.h: use static instead of inline for C++14 support.

7 months agobase/mpi.h: mark a template variable to have "const inline" linkage.
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 agoupdate VERSION for release v9.5.2
Matthias Maier [Thu, 1 Feb 2024 02:26:09 +0000 (20:26 -0600)]
update VERSION for release

7 months agoMerge pull request #16576 from tamiko/update_changelog_for_9.5.2
Wolfgang Bangerth [Wed, 31 Jan 2024 23:28:59 +0000 (16:28 -0700)]
Merge pull request #16576 from tamiko/update_changelog_for_9.5.2

[9.5] update changelog for point release

7 months agoadd changelog entry for point release 16576/head
Matthias Maier [Wed, 31 Jan 2024 21:26:11 +0000 (15:26 -0600)]
add changelog entry for point release

7 months agoMerge pull request #16539 from tamiko/pr16494_for_v9.5.2
Martin Kronbichler [Fri, 26 Jan 2024 11:38:08 +0000 (12:38 +0100)]
Merge pull request #16539 from tamiko/pr16494_for_v9.5.2

[9.5] DofTools: add missing codimension-one instantiation

7 months agoMerge pull request #16541 from tamiko/pr16486_for_v9.5.2
Martin Kronbichler [Fri, 26 Jan 2024 11:37:47 +0000 (12:37 +0100)]
Merge pull request #16541 from tamiko/pr16486_for_v9.5.2

[9.5] CMake: fix compilation with bundled boost and modern clang

7 months agoMerge pull request #16540 from tamiko/pr16527_for_v9.5.2
Martin Kronbichler [Fri, 26 Jan 2024 11:37:17 +0000 (12:37 +0100)]
Merge pull request #16540 from tamiko/pr16527_for_v9.5.2

[9.5] base/mpi.h: also instantiate for signed long long int

7 months agoCMake: fix compilation with bundled boost and modern clang 16541/head
Matthias Maier [Wed, 17 Jan 2024 21:38:40 +0000 (15:38 -0600)]
CMake: fix compilation with bundled boost and modern clang

std::unary_function has been removed in C++17. Fix compilation with
clang and other compiles that enforce strict standard compliance by
exporting BOOST_NO_CXX98_FUNCTION_BASE,

https://github.com/boostorg/config/pull/430

7 months agobase/mpi.h: also instantiate for signed long long int 16540/head
Matthias Maier [Tue, 23 Jan 2024 20:34:26 +0000 (14:34 -0600)]
base/mpi.h: also instantiate for signed long long int

7 months agoDofTools: add missing codimension-one instantiation 16539/head
Matthias Maier [Thu, 18 Jan 2024 18:50:00 +0000 (12:50 -0600)]
DofTools: add missing codimension-one instantiation

13 months agoMerge pull request #15856 from masterleinad/cherry_pick_15852
Matthias Maier [Thu, 10 Aug 2023 04:57:39 +0000 (04:57 +0000)]
Merge pull request #15856 from masterleinad/cherry_pick_15852

[9.5] Fix compiling with PETSc with complex scalar type

13 months agoFix compiling with PETSc with complex scalar type 15856/head
Daniel Arndt [Mon, 7 Aug 2023 12:54:15 +0000 (08:54 -0400)]
Fix compiling with PETSc with complex scalar type

13 months agoMerge pull request #15788 from bangerth/petsc-no-mpi
Matthias Maier [Fri, 28 Jul 2023 05:33:52 +0000 (05:33 +0000)]
Merge pull request #15788 from bangerth/petsc-no-mpi

[9.5] Allow compilation with PETSc but without MPI.

13 months agoAllow compilation with PETSc but without MPI. 15788/head
Wolfgang Bangerth [Sat, 22 Jul 2023 18:08:49 +0000 (12:08 -0600)]
Allow compilation with PETSc but without MPI.

14 months agoupdate VERSION for release v9.5.1
Matthias Maier [Sat, 15 Jul 2023 02:56:57 +0000 (21:56 -0500)]
update VERSION for release

14 months agoMerge pull request #15726 from tamiko/pr_15725
Matthias Maier [Wed, 12 Jul 2023 14:28:54 +0000 (14:28 +0000)]
Merge pull request #15726 from tamiko/pr_15725

[9.5] bundled/tbb: fix compilation with gcc-13

14 months agobundled/tbb: fix compilation with gcc-13 15726/head
Matthias Maier [Wed, 12 Jul 2023 06:02:19 +0000 (01:02 -0500)]
bundled/tbb: fix compilation with gcc-13

This fixes compilation with gcc-13 that complains about the unqualified
identifier "task" changing meaning: it first refers to `class task` in
the offending line and later is defined as a member function `task()`:
```
FAILED: bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o
/usr/bin/c++ -DDO_ITT_NOTIFY -DNDEBUG -DUSE_PTHREAD -D__TBB_BUILD=1 -I/home/tamiko/workspace/dealii/build/bundled/tbb-2018_U2/src -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/rml/include -I/home/tamiko/workspace/dealii/build/include -I/home/tamiko/workspace/dealii/include -std=c++17 -fPIC -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -Wno-parentheses -Wno-unused-local-typedefs -Wno-implicit-fallthrough -Wno-stringop-overflow -Wno-deprecated-copy -fopenmp-simd -flifetime-dse=1 -O2 -funroll-loops -funroll-all-loops -fstrict-aliasing -MD -MT bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o -MF bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o.d -o bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o -c /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/arena.cpp
In file included from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/scheduler_common.h:43,
                 from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/scheduler.h:24,
                 from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/arena.cpp:23:
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:266:20: error: declaration of ‘tbb::task& tbb::internal::task_prefix::task()’ changes meaning of
 task’ [-Wchanges-meaning]
  266 |         tbb::task& task() {return *reinterpret_cast<tbb::task*>(this+1);}
      |                    ^~~~
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:225:9: note: used here to mean ‘class tbb::task’
  225 |         task* next_offloaded;
      |         ^~~~
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:33:7: note: declared here
   33 | class task;
      |       ^~~~
```

14 months agoMerge pull request #15708 from masterleinad/cherry_pick_15704
Matthias Maier [Tue, 11 Jul 2023 00:21:55 +0000 (00:21 +0000)]
Merge pull request #15708 from masterleinad/cherry_pick_15704

[9.5] Guard NOX support in include/deal.II/numerics/nonlinear.h

14 months agoGuard NOX support in include/deal.II/numerics/nonlinear.h 15708/head
Daniel Arndt [Mon, 10 Jul 2023 15:32:14 +0000 (11:32 -0400)]
Guard NOX support in include/deal.II/numerics/nonlinear.h

14 months agoupdate VERSION for release v9.5.0
Matthias Maier [Sat, 8 Jul 2023 01:00:00 +0000 (20:00 -0500)]
update VERSION for release

14 months agoMerge pull request #15669 from tamiko/pr_15549
Matthias Maier [Thu, 6 Jul 2023 19:58:44 +0000 (19:58 +0000)]
Merge pull request #15669 from tamiko/pr_15549

[9.5] Use -Werror again in enable_if_supported

14 months agoCapitalize Werror 15669/head
Daniel Arndt [Sat, 1 Jul 2023 15:06:23 +0000 (11:06 -0400)]
Capitalize Werror

Co-authored-by: Matthias Maier <tamiko@43-1.org>
14 months agoUnconditionally try enabling ffp-exception-behavior=strict
Daniel Arndt [Fri, 30 Jun 2023 20:30:42 +0000 (16:30 -0400)]
Unconditionally try enabling ffp-exception-behavior=strict

14 months agoUse -Werror again in enable_if_supported
Daniel Arndt [Fri, 30 Jun 2023 20:29:48 +0000 (16:29 -0400)]
Use -Werror again in enable_if_supported

14 months agoMerge pull request #15602 from tamiko/pr_15600
Matthias Maier [Mon, 3 Jul 2023 23:04:02 +0000 (23:04 +0000)]
Merge pull request #15602 from tamiko/pr_15600

[9.5] lac/scalapack.cc: fix an out-of-bounds write that leads to a double free

14 months agoMerge pull request #15606 from bangerth/disable-requires
Matthias Maier [Mon, 3 Jul 2023 21:09:09 +0000 (21:09 +0000)]
Merge pull request #15606 from bangerth/disable-requires

[9.5] Disable parsing 'requires' clauses on the 9.5 branch.

14 months agoadd a news/changes entry 15602/head
Matthias Maier [Mon, 3 Jul 2023 16:54:55 +0000 (11:54 -0500)]
add a news/changes entry

14 months agolac/scalapack.cc: fix an out-of-bounds write that leads to a double free
Matthias Maier [Mon, 3 Jul 2023 01:40:44 +0000 (20:40 -0500)]
lac/scalapack.cc: fix an out-of-bounds write that leads to a double free

```
==1080297==ERROR: AddressSanitizer: attempting free on address which was not malloc()-ed: 0x60200003da70 in thread T0
    #0 0x55bcdd907b7d in operator delete(void*) (/srv/temp/testsuite-IQZ1b8kK/build/tests/scalapack/scalapack_06b.debug/scalapack_06b.debug+0x17cb7d)
    #1 0x7fc52a4d2047 in void std::__1::__libcpp_operator_delete[abi:v160006]<void*>(void*) /usr/include/c++/v1/new:276:3
    #2 0x7fc52a4d2047 in void std::__1::__do_deallocate_handle_size[abi:v160006]<>(void*, unsigned long) /usr/include/c++/v1/new:300:10
    #3 0x7fc52a4d2047 in std::__1::__libcpp_deallocate[abi:v160006](void*, unsigned long, unsigned long) /usr/include/c++/v1/new:316:14
    #4 0x7fc52a4d2047 in std::__1::allocator<int>::deallocate[abi:v160006](int*, unsigned long) /usr/include/c++/v1/__memory/allocator.h:131:13
    #5 0x7fc52a4d2047 in std::__1::allocator_traits<std::__1::allocator<int>>::deallocate[abi:v160006](std::__1::allocator<int>&, int*, unsigned long) /usr/include/c++/v1/__memory/allocator_traits.h:288:13
    #6 0x7fc52a4d2047 in std::__1::__split_buffer<int, std::__1::allocator<int>&>::~__split_buffer() /usr/include/c++/v1/__split_buffer:362:9
    #7 0x7fc52a4d2047 in std::__1::vector<int, std::__1::allocator<int>>::__append(unsigned long) /usr/include/c++/v1/vector:1049:5
    #8 0x7fc52a8282d2 in std::__1::vector<int, std::__1::allocator<int>>::resize(unsigned long) /usr/include/c++/v1/vector:1910:15
    #9 0x7fc52a8282d2 in dealii::ScaLAPACKMatrix<double>::eigenpairs_symmetric(bool, std::__1::pair<unsigned int, unsigned int> const&, std::__1::pair<double, double> const&) /srv/temp/testsuite-IQZ1b8kK/dealii/source/lac/scalapack.cc:1684:17
    #10 0x7fc52a826813 in dealii::ScaLAPACKMatrix<double>::eigenpairs_symmetric_by_index(std::__1::pair<unsigned int, unsigned int> const&, bool) /srv/temp/testsuite-IQZ1b8kK/dealii/source/lac/scalapack.cc:1446:12
    #11 0x55bcdd911907 in void test<double>(unsigned int, unsigned int, double) /srv/temp/testsuite-IQZ1b8kK/dealii/tests/scalapack/scalapack_06b.cc:134:21
    #12 0x55bcdd90ebc8 in main /srv/temp/testsuite-IQZ1b8kK/dealii/tests/scalapack/scalapack_06b.cc:207:9
    #13 0x7fc4f5250989  (/usr/lib64/libc.so.6+0x23989)
    #14 0x7fc4f5250a44 in __libc_start_main (/usr/lib64/libc.so.6+0x23a44)
    #15 0x55bcdd7f73f0 in _start (/srv/temp/testsuite-IQZ1b8kK/build/tests/scalapack/scalapack_06b.debug/scalapack_06b.debug+0x6c3f0)
```

14 months agoMerge pull request #15595 from masterleinad/cherry_pick_15591
Matthias Maier [Mon, 3 Jul 2023 03:40:00 +0000 (03:40 +0000)]
Merge pull request #15595 from masterleinad/cherry_pick_15591

[9.5] Allow running step-64 without CUDA

14 months agoDisable parsing 'requires' clauses on the 9.5 branch. 15606/head
Wolfgang Bangerth [Mon, 3 Jul 2023 03:02:33 +0000 (21:02 -0600)]
Disable parsing 'requires' clauses on the 9.5 branch.

14 months agoAllow running step-64 without CUDA 15595/head
Daniel Arndt [Sun, 2 Jul 2023 16:08:37 +0000 (12:08 -0400)]
Allow running step-64 without CUDA

14 months agoupdate VERSION for release v9.5.0-rc2
Matthias Maier [Fri, 30 Jun 2023 12:12:37 +0000 (07:12 -0500)]
update VERSION for release

14 months agoMerge pull request #15533 from tamiko/pr_15532
Martin Kronbichler [Fri, 30 Jun 2023 05:41:46 +0000 (07:41 +0200)]
Merge pull request #15533 from tamiko/pr_15532

[9.5] Only enable -ffp-exception-behavior=strict for some platforms.

14 months agoOnly enable -ffp-exception-behavior=strict for some platforms. 15533/head
David Wells [Thu, 29 Jun 2023 21:12:08 +0000 (17:12 -0400)]
Only enable -ffp-exception-behavior=strict for some platforms.

This doesn't work with AppleClang 14.0, even though the enable_with_supported()
flag works.

14 months agoMerge pull request #15523 from tamiko/fix_a_test_30-9.5
Matthias Maier [Fri, 30 Jun 2023 00:18:26 +0000 (00:18 +0000)]
Merge pull request #15523 from tamiko/fix_a_test_30-9.5

[9.5] Test: mpi/locally_owned_dofs_per_subdomain_02: do not compare output

14 months agoMerge pull request #15515 from tamiko/remove_vtk
Luca Heltai [Thu, 29 Jun 2023 20:06:07 +0000 (22:06 +0200)]
Merge pull request #15515 from tamiko/remove_vtk

[9.5] CMake: remove VTK configure option

14 months agoMerge pull request #15518 from tamiko/remove_taskflow_2
Martin Kronbichler [Thu, 29 Jun 2023 19:30:12 +0000 (21:30 +0200)]
Merge pull request #15518 from tamiko/remove_taskflow_2

[9.5] CMake: remove taskflow macros from config.h.in

14 months agogithub/action: remove "setup_tests_vtk" from "linux debug parallel simplex" test 15515/head
Matthias Maier [Thu, 29 Jun 2023 16:03:39 +0000 (11:03 -0500)]
github/action: remove "setup_tests_vtk" from "linux debug parallel simplex" test

14 months agoTest: mpi/locally_owned_dofs_per_subdomain_02: do not compare output 15523/head
Matthias Maier [Thu, 29 Jun 2023 13:43:04 +0000 (08:43 -0500)]
Test: mpi/locally_owned_dofs_per_subdomain_02: do not compare output

The parallel partition that we compared in this test depends on metis,
and thus shows different (but valid) output depending on machine,
and chosen optimization level. Let us restrict this test to run only and
not compare the output.

14 months agodoc: remove vtk feature configuration examples
Matthias Maier [Wed, 28 Jun 2023 22:53:27 +0000 (17:53 -0500)]
doc: remove vtk feature configuration examples

14 months agotests: remove vtk tests
Matthias Maier [Wed, 28 Jun 2023 22:52:06 +0000 (17:52 -0500)]
tests: remove vtk tests

14 months agoincludes: remove VTK header files
Matthias Maier [Wed, 28 Jun 2023 22:51:12 +0000 (17:51 -0500)]
includes: remove VTK header files

14 months agoCMake: remove VTK configure option
Matthias Maier [Wed, 28 Jun 2023 16:05:46 +0000 (11:05 -0500)]
CMake: remove VTK configure option

Our CMake configure for VTK isn't quite prime-time ready. Given the fact
that we currently only support a very minimal infrastructure, let's just
remove the configure option for the release.

Acked-by: Luca Heltai <luca.heltai@sissa.it>
14 months agoCMake: remove taskflow macros from config.h.in 15518/head
Matthias Maier [Wed, 28 Jun 2023 20:05:06 +0000 (15:05 -0500)]
CMake: remove taskflow macros from config.h.in

14 months agoMerge pull request #15514 from tamiko/pr_15513
Matthias Maier [Wed, 28 Jun 2023 19:22:36 +0000 (19:22 +0000)]
Merge pull request #15514 from tamiko/pr_15513

[9.5] Fix output for matrix_free/matrix_free_device_initialize_vector with CUDA support

14 months agoFix output for matrix_free/matrix_free_device_initialize_vector with CUDA support 15514/head
Daniel Arndt [Wed, 28 Jun 2023 15:48:47 +0000 (15:48 +0000)]
Fix output for matrix_free/matrix_free_device_initialize_vector with CUDA support

14 months agoupdate VERSION for release v9.5.0-rc1
Matthias Maier [Tue, 27 Jun 2023 23:38:51 +0000 (18:38 -0500)]
update VERSION for release

14 months agoMerge pull request #15511 from tamiko/disable_taskflow
Martin Kronbichler [Tue, 27 Jun 2023 22:29:44 +0000 (00:29 +0200)]
Merge pull request #15511 from tamiko/disable_taskflow

[9.5] Remove taskflow configuration option and bundled library

14 months agoMerge pull request #15510 from tamiko/fp_exception_behavior_strict_95
Martin Kronbichler [Tue, 27 Jun 2023 22:29:22 +0000 (00:29 +0200)]
Merge pull request #15510 from tamiko/fp_exception_behavior_strict_95

[9.5] CMake: enable -ffp-exceptions-behavior=strict when compiling with clang

14 months agoBundled: remove bundled taskflow 15511/head
Matthias Maier [Tue, 27 Jun 2023 21:20:26 +0000 (16:20 -0500)]
Bundled: remove bundled taskflow

14 months agoCMake: disable DEAL_II_WITH_TASKFLOW
Matthias Maier [Tue, 27 Jun 2023 21:17:19 +0000 (16:17 -0500)]
CMake: disable DEAL_II_WITH_TASKFLOW

14 months agoMerge pull request #15506 from tamiko/update_authors_license
Matthias Maier [Tue, 27 Jun 2023 21:03:10 +0000 (21:03 +0000)]
Merge pull request #15506 from tamiko/update_authors_license

[9.5] update AUTHORS.md and LICENSE.md

14 months agoCMake: enable -ffp-exceptions-behavior=strict when compiling with clang 15510/head
Matthias Maier [Tue, 27 Jun 2023 20:46:20 +0000 (15:46 -0500)]
CMake: enable -ffp-exceptions-behavior=strict when compiling with clang

We have to ensure that we emit floating-point instructions in debug mode
that preserve the occurence of floating-point exceptions and don't
introduce new ones. gcc plays nicely in this regard by enabling
`-ftrapping-math` per default, at least for the level of optimization we
have in debug mode. clang however is more aggressive and assumes that it
can optimize code disregarding precise floating-point exception
semantics.

We thus set `-ffp-exceptions-behavior=strict` in debug mode to ensure
that our testsuite doesn't run into false positive floating-point
exceptions. See https://github.com/dealii/dealii/issues/15496

14 months agoupdate LICENSE.md 15506/head
Matthias Maier [Tue, 27 Jun 2023 17:03:45 +0000 (12:03 -0500)]
update LICENSE.md

14 months agoadd AUTHORS.md
Matthias Maier [Tue, 27 Jun 2023 17:02:03 +0000 (12:02 -0500)]
add AUTHORS.md

14 months agoupdate VERSION
Matthias Maier [Tue, 27 Jun 2023 16:40:52 +0000 (11:40 -0500)]
update VERSION

14 months agoMerge pull request #15503 from tamiko/update-changes-file
Matthias Maier [Tue, 27 Jun 2023 16:39:22 +0000 (16:39 +0000)]
Merge pull request #15503 from tamiko/update-changes-file

Update the changelog file for the release.

14 months agofix whitespace 15503/head
Matthias Maier [Tue, 27 Jun 2023 16:12:23 +0000 (11:12 -0500)]
fix whitespace

14 months agodoc: fix typos and use <code> annotation in two places
Matthias Maier [Tue, 27 Jun 2023 15:57:50 +0000 (10:57 -0500)]
doc: fix typos and use <code> annotation in two places

14 months agodoc: use https:// instead of http://
Matthias Maier [Tue, 27 Jun 2023 15:50:02 +0000 (10:50 -0500)]
doc: use https:// instead of http://

14 months agodoc: update tag file list
Matthias Maier [Tue, 27 Jun 2023 15:49:51 +0000 (10:49 -0500)]
doc: update tag file list

14 months agoAdd dummy files.
Matthias Maier [Tue, 27 Jun 2023 15:47:58 +0000 (10:47 -0500)]
Add dummy files.

14 months agoRemove now obsolete files.
Matthias Maier [Tue, 27 Jun 2023 15:45:55 +0000 (10:45 -0500)]
Remove now obsolete files.

14 months agoAdd a misplaced entry
Matthias Maier [Tue, 27 Jun 2023 15:45:01 +0000 (10:45 -0500)]
Add a misplaced entry

14 months agoUpdate the changelog file for the release.
Matthias Maier [Tue, 27 Jun 2023 15:42:35 +0000 (10:42 -0500)]
Update the changelog file for the release.

14 months agoMerge pull request #15499 from tamiko/bind_to_none
Matthias Maier [Tue, 27 Jun 2023 14:43:25 +0000 (14:43 +0000)]
Merge pull request #15499 from tamiko/bind_to_none

CMake: run_test.sh: ensure to never bind to cores/processors for mpi tests

14 months agoMerge pull request #15502 from masterleinad/fix_compiling_clang_16_new
Matthias Maier [Tue, 27 Jun 2023 14:42:32 +0000 (14:42 +0000)]
Merge pull request #15502 from masterleinad/fix_compiling_clang_16_new

Fix compiling with clang-16 and C++20

14 months agoCMake: run_test.sh: also try to suppress kokkos warnings 15499/head
Matthias Maier [Tue, 27 Jun 2023 14:22:08 +0000 (09:22 -0500)]
CMake: run_test.sh: also try to suppress kokkos warnings

14 months agoCMake: run_test.sh: ensure to never bind to cores/processors for mpi tests
Matthias Maier [Tue, 27 Jun 2023 01:41:33 +0000 (20:41 -0500)]
CMake: run_test.sh: ensure to never bind to cores/processors for mpi tests

14 months agoFix compiling with clang-16 15502/head
Daniel Arndt [Tue, 27 Jun 2023 12:43:05 +0000 (08:43 -0400)]
Fix compiling with clang-16

14 months agoMerge pull request #15500 from tamiko/redemption
Martin Kronbichler [Tue, 27 Jun 2023 12:03:02 +0000 (14:03 +0200)]
Merge pull request #15500 from tamiko/redemption

Tests: exonerate two debug test variants and run them again

14 months agoRevert "Test distributed_grids/checkpointing_03: do not run debug variant" 15500/head
Matthias Maier [Tue, 27 Jun 2023 02:38:35 +0000 (21:38 -0500)]
Revert "Test distributed_grids/checkpointing_03: do not run debug variant"

This reverts commit 6b92cdabc142c6b1fc82c16cf7a2cfbe996cd644.

14 months agoRevert "Test fe/fe_enriched_color_07: do not run debug variant"
Matthias Maier [Tue, 27 Jun 2023 02:34:01 +0000 (21:34 -0500)]
Revert "Test fe/fe_enriched_color_07: do not run debug variant"

This reverts commit 56dd9b490b4e15468969ff4856758ccedb107120.

14 months agoMerge pull request #15498 from tamiko/update_mailmap
Matthias Maier [Tue, 27 Jun 2023 02:04:55 +0000 (02:04 +0000)]
Merge pull request #15498 from tamiko/update_mailmap

Update .mailmap: a quick update to fix some spelling  e-mail setting mistakes

14 months agoUpdate .mailmap: a quick update to fix some spelling e-mail setting mistakes 15498/head
Matthias Maier [Tue, 27 Jun 2023 00:01:59 +0000 (19:01 -0500)]
Update .mailmap: a quick update to fix some spelling  e-mail setting mistakes

14 months agoMerge pull request #15493 from tamiko/fix_test_20
Marc Fehling [Mon, 26 Jun 2023 21:42:30 +0000 (15:42 -0600)]
Merge pull request #15493 from tamiko/fix_test_20

Test non_matching/step-70: add an output variant

14 months agoMerge pull request #15494 from masterleinad/require_arborx_1_3
Matthias Maier [Mon, 26 Jun 2023 21:35:12 +0000 (21:35 +0000)]
Merge pull request #15494 from masterleinad/require_arborx_1_3

Require ArborX 1.3 or later

14 months agoMerge pull request #15492 from bangerth/task
Matthias Maier [Mon, 26 Jun 2023 21:34:53 +0000 (21:34 +0000)]
Merge pull request #15492 from bangerth/task

Ensure we set a flag correctly even if a task ends in an exception.

14 months agoMerge pull request #15497 from tamiko/bob/fix_test_21
Matthias Maier [Mon, 26 Jun 2023 20:24:25 +0000 (20:24 +0000)]
Merge pull request #15497 from tamiko/bob/fix_test_21

Test simplex/compute_point_locations_01: add output variant

14 months agoMerge pull request #15491 from tamiko/fix_test_18
Matthias Maier [Mon, 26 Jun 2023 20:23:25 +0000 (20:23 +0000)]
Merge pull request #15491 from tamiko/fix_test_18

Test numerics/nonlinear_solver_selector_03: add ouput variant

14 months agoTest simplex/compute_point_locations_01: add output variant 15497/head
Matthias Maier [Mon, 26 Jun 2023 19:46:28 +0000 (14:46 -0500)]
Test simplex/compute_point_locations_01: add output variant

With clang-16 libc++ we get a different order of quadrature points.
Verified manually that - apart from the order - all output quadrature
points match.

14 months agoRequire ArborX 1.3 or later 15494/head
Daniel Arndt [Mon, 26 Jun 2023 19:04:24 +0000 (15:04 -0400)]
Require ArborX 1.3 or later

14 months agoTest non_matching/step-70: add an output variant 15493/head
Matthias Maier [Mon, 26 Jun 2023 19:07:17 +0000 (14:07 -0500)]
Test non_matching/step-70: add an output variant

Add an output variant for the case when deal.II is configured with PETSc
support but without Trilinos support.

14 months agoAdd a changelog entry. 15492/head
Wolfgang Bangerth [Mon, 26 Jun 2023 19:06:34 +0000 (13:06 -0600)]
Add a changelog entry.

14 months agoEnsure we set a flag correctly even if a task ends in an exception.
Wolfgang Bangerth [Mon, 26 Jun 2023 19:03:10 +0000 (13:03 -0600)]
Ensure we set a flag correctly even if a task ends in an exception.

14 months agoTest numerics/nonlinear_solver_selector_03: add ouput variant 15491/head
Matthias Maier [Mon, 26 Jun 2023 18:54:03 +0000 (13:54 -0500)]
Test numerics/nonlinear_solver_selector_03: add ouput variant

Add an output variant for the case when deal.II is configured with PETSc
support but without Trilinos support.

14 months agoMerge pull request #15488 from tamiko/fix_test_17
Matthias Maier [Mon, 26 Jun 2023 17:56:45 +0000 (17:56 +0000)]
Merge pull request #15488 from tamiko/fix_test_17

Test: cgal/cgal_intersect_simplices_2d_3d: restrict to CGAL >= 5.5.0

14 months agoMerge pull request #15487 from tamiko/fix_test_16
Wolfgang Bangerth [Mon, 26 Jun 2023 17:54:08 +0000 (11:54 -0600)]
Merge pull request #15487 from tamiko/fix_test_16

Test mpi/p4est_bug_01: remove test

14 months agoTest: cgal/cgal_intersect_simplices_2d_3d: restrict to CGAL >= 5.5.0 15488/head
Matthias Maier [Mon, 26 Jun 2023 15:09:53 +0000 (10:09 -0500)]
Test: cgal/cgal_intersect_simplices_2d_3d: restrict to CGAL >= 5.5.0

14 months agoTest mpi/p4est_bug_01: remove test 15487/head
Matthias Maier [Mon, 26 Jun 2023 15:00:03 +0000 (10:00 -0500)]
Test mpi/p4est_bug_01: remove test

This test needs an external p4est library built with debug symbols,
otherwise it "fails" because we do not error out while running the test
"expect=run".

Let's remove this test for now.

The long standing bug it documents is reported in
  https://github.com/dealii/dealii/issues/7428

See also
  https://github.com/dealii/dealii/issues/9047

14 months agoMerge pull request #15486 from kronbichler/test_robustness2
Matthias Maier [Mon, 26 Jun 2023 14:49:22 +0000 (14:49 +0000)]
Merge pull request #15486 from kronbichler/test_robustness2

MatrixFree inverse mass matrix: Make tests more robust

14 months agoMerge pull request #15485 from kronbichler/output_variants
David Wells [Mon, 26 Jun 2023 14:14:40 +0000 (10:14 -0400)]
Merge pull request #15485 from kronbichler/output_variants

Add two output variants for tests writing p4est vtk output

14 months agoMake tests more robust 15486/head
Martin Kronbichler [Mon, 26 Jun 2023 11:25:42 +0000 (13:25 +0200)]
Make tests more robust


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.