]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
5 months agoBump lukka/get-cmake from 3.27.9 to 3.29.0 dependabot/github_actions/lukka/get-cmake-3.29.0 16825/head
dependabot[bot] [Mon, 1 Apr 2024 02:20:26 +0000 (02:20 +0000)]
Bump lukka/get-cmake from 3.27.9 to 3.29.0

Bumps [lukka/get-cmake](https://github.com/lukka/get-cmake) from 3.27.9 to 3.29.0.
- [Release notes](https://github.com/lukka/get-cmake/releases)
- [Commits](https://github.com/lukka/get-cmake/compare/v3.27.9...v3.29.0)

---
updated-dependencies:
- dependency-name: lukka/get-cmake
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
5 months agoMerge pull request #16823 from bangerth/unalign
Martin Kronbichler [Sun, 31 Mar 2024 18:10:37 +0000 (20:10 +0200)]
Merge pull request #16823 from bangerth/unalign

Revert aligning tensors

5 months agoRevert "No longer output the size of tensors into output file of a test." 16823/head
Wolfgang Bangerth [Sat, 30 Mar 2024 15:04:10 +0000 (09:04 -0600)]
Revert "No longer output the size of tensors into output file of a test."

This reverts commit a492d57657769bdc38a65c2532f1711a55abab21.

5 months agoRevert "Add a changelog entry for the alignment of tensors."
Wolfgang Bangerth [Sat, 30 Mar 2024 15:03:43 +0000 (09:03 -0600)]
Revert "Add a changelog entry for the alignment of tensors."

This reverts commit d14a12db1cc7b91380a143350e613442362c876e.

5 months agoRevert "Align Tensor<rank,dim,Number> to make vectorization possible."
Wolfgang Bangerth [Sat, 30 Mar 2024 15:03:26 +0000 (09:03 -0600)]
Revert "Align Tensor<rank,dim,Number> to make vectorization possible."

This reverts commit d6a65a9b929b1862a78de843ceaa7848e5a588e3.

5 months agoMerge pull request #16820 from tamiko/fix_avx512_fpe
Wolfgang Bangerth [Sat, 30 Mar 2024 15:01:57 +0000 (09:01 -0600)]
Merge pull request #16820 from tamiko/fix_avx512_fpe

distributed/tria.cc: avoid FPE due to undefined behavior

5 months agoMerge pull request #16814 from simonsticko/codim_in_getname
Wolfgang Bangerth [Sat, 30 Mar 2024 14:59:56 +0000 (08:59 -0600)]
Merge pull request #16814 from simonsticko/codim_in_getname

Add codimension in get_name() for a few elements

5 months agodistributed/tria.cc: avoid FPE due to undefined behavior 16820/head
Matthias Maier [Sat, 30 Mar 2024 00:49:16 +0000 (19:49 -0500)]
distributed/tria.cc: avoid FPE due to undefined behavior

The following construct
```
static_cast<types::subdomain_id>(this_sc_point[dim])
```
triggers a floating point exception when the stored double is -1.0 (at
least with gcc-11 and avx512 instructions enabled).

Judging from cppreference [1] this is undefined behavior:
"""
A prvalue of floating-point type can be converted to a prvalue of any
integer type. The fractional part is truncated, that is, the fractional
part is discarded.

If the truncated value cannot fit into the destination type, the
behavior is undefined (even when the destination type is unsigned,
modulo arithmetic does not apply).
"""

Thus, work around the issue by explicitly setting negative values to
`numbers::invalid_subdomain_id` if we encounter -1.

[1] https://en.cppreference.com/w/cpp/language/implicit_conversion

5 months agoMerge pull request #16816 from bangerth/fix-test
Matthias Maier [Sat, 30 Mar 2024 00:28:21 +0000 (00:28 +0000)]
Merge pull request #16816 from bangerth/fix-test

No longer output the size of tensors into output file of a test.

5 months agoMerge pull request #16815 from bangerth/fix-particle-size-2
Matthias Maier [Sat, 30 Mar 2024 00:27:36 +0000 (00:27 +0000)]
Merge pull request #16815 from bangerth/fix-particle-size-2

Fix a second place where particles compute the size of a buffer.

5 months agoNo longer output the size of tensors into output file of a test. 16816/head
Wolfgang Bangerth [Fri, 29 Mar 2024 22:30:32 +0000 (16:30 -0600)]
No longer output the size of tensors into output file of a test.

5 months agoFix a second place where particles compute the size of a buffer. 16815/head
Wolfgang Bangerth [Fri, 29 Mar 2024 19:21:50 +0000 (13:21 -0600)]
Fix a second place where particles compute the size of a buffer.

5 months agoMerge pull request #16813 from bangerth/fix-particle-size
Martin Kronbichler [Fri, 29 Mar 2024 19:49:19 +0000 (20:49 +0100)]
Merge pull request #16813 from bangerth/fix-particle-size

Allocate the right amount of memory when serializing particles.

5 months agoMerge pull request #16788 from kronbichler/fix_asserts
Daniel Arndt [Fri, 29 Mar 2024 17:30:56 +0000 (13:30 -0400)]
Merge pull request #16788 from kronbichler/fix_asserts

FEEvaluation: Add static asserts to functions selected by enable_if

5 months agoAdd codimension in get_name() for a few elements 16814/head
Simon Sticko [Fri, 29 Mar 2024 08:11:57 +0000 (09:11 +0100)]
Add codimension in get_name() for a few elements

5 months agoMerge pull request #16795 from Rombur/python_binding
Martin Kronbichler [Fri, 29 Mar 2024 16:46:53 +0000 (17:46 +0100)]
Merge pull request #16795 from Rombur/python_binding

Add three GridGenerator functions to the python wrappers

5 months agoAllocate the right amount of memory when serializing particles. 16813/head
Wolfgang Bangerth [Fri, 29 Mar 2024 16:17:56 +0000 (10:17 -0600)]
Allocate the right amount of memory when serializing particles.

5 months agoMerge pull request #16806 from drwells/remove-hardcoded-inverse-orientation
Daniel Arndt [Fri, 29 Mar 2024 12:20:03 +0000 (08:20 -0400)]
Merge pull request #16806 from drwells/remove-hardcoded-inverse-orientation

Remove hardcoded inverse orientation

5 months agoMerge pull request #16812 from tamiko/fix_tests_avx_05
Martin Kronbichler [Fri, 29 Mar 2024 07:06:47 +0000 (08:06 +0100)]
Merge pull request #16812 from tamiko/fix_tests_avx_05

Test grid/closest_point: guard against roundoff error

5 months agoMerge pull request #16811 from tamiko/fix_tests_avx_04
Martin Kronbichler [Fri, 29 Mar 2024 07:06:05 +0000 (08:06 +0100)]
Merge pull request #16811 from tamiko/fix_tests_avx_04

Test trilinos/precondition: Relax iteration bounds

5 months agoMerge pull request #16810 from tamiko/fix_tests_avx_03
Martin Kronbichler [Fri, 29 Mar 2024 07:05:18 +0000 (08:05 +0100)]
Merge pull request #16810 from tamiko/fix_tests_avx_03

Test grid/grid_generator_09: add another output variant

5 months agoMerge pull request #16809 from tamiko/fix_tests_avx_02
Martin Kronbichler [Fri, 29 Mar 2024 07:04:35 +0000 (08:04 +0100)]
Merge pull request #16809 from tamiko/fix_tests_avx_02

Test mappings/mapping_q_real_to_unit_internal: add avx256 output variant

5 months agoMerge pull request #16808 from tamiko/fix_tests_avx_01
Martin Kronbichler [Fri, 29 Mar 2024 07:02:56 +0000 (08:02 +0100)]
Merge pull request #16808 from tamiko/fix_tests_avx_01

Test cgal/cgal_triangulation_05: add avx output variants

5 months agoMerge pull request #16805 from simonsticko/hp_get_present_reinit_not_called
Martin Kronbichler [Fri, 29 Mar 2024 07:01:58 +0000 (08:01 +0100)]
Merge pull request #16805 from simonsticko/hp_get_present_reinit_not_called

Add assert on reinit() being called before get_present_fe_values()

5 months agoGridTools: remove another hard-coded inverse orientation table. 16806/head
David Wells [Mon, 25 Mar 2024 16:26:36 +0000 (12:26 -0400)]
GridTools: remove another hard-coded inverse orientation table.

5 months agoReferenceCell: permit face index calculations for lines.
David Wells [Mon, 25 Mar 2024 16:25:35 +0000 (12:25 -0400)]
ReferenceCell: permit face index calculations for lines.

This way we can call standard_to_real_face_vertex for all supported topological
dimensions.

5 months agoTest grid/closest_point: guard against roundoff error 16812/head
Matthias Maier [Fri, 29 Mar 2024 00:15:40 +0000 (19:15 -0500)]
Test grid/closest_point: guard against roundoff error

5 months agoTest trilinos/precondition: Relax iteration bounds 16811/head
Matthias Maier [Fri, 29 Mar 2024 00:00:13 +0000 (19:00 -0500)]
Test trilinos/precondition: Relax iteration bounds

5 months agoTest grid/grid_generator_09: add another output variant 16810/head
Matthias Maier [Thu, 28 Mar 2024 23:37:11 +0000 (18:37 -0500)]
Test grid/grid_generator_09: add another output variant

5 months agoTest mappings/mapping_q_real_to_unit_internal: add avx256 output variant 16809/head
Matthias Maier [Thu, 28 Mar 2024 23:27:50 +0000 (18:27 -0500)]
Test mappings/mapping_q_real_to_unit_internal: add avx256 output variant

5 months agoTest cgal/cgal_triangulation_05: add avx output variants 16808/head
Matthias Maier [Thu, 28 Mar 2024 22:58:01 +0000 (17:58 -0500)]
Test cgal/cgal_triangulation_05: add avx output variants

The order of vertices that cgal writes out to the mesh are not stable
and depend on optimization, standard library and instruction set used.

Add output variants for avx256/avx512

5 months agoTriangulation: remove hard-coded inverse orientation tables.
David Wells [Mon, 25 Mar 2024 15:03:05 +0000 (11:03 -0400)]
Triangulation: remove hard-coded inverse orientation tables.

5 months agoMerge pull request #16780 from drwells/consistent-periodic-orientation-encoding
Peter Munch [Thu, 28 Mar 2024 20:06:43 +0000 (21:06 +0100)]
Merge pull request #16780 from drwells/consistent-periodic-orientation-encoding

Consistent periodic orientation encoding

5 months agoMerge pull request #16801 from kronbichler/fix_tensor_mapping
Wolfgang Bangerth [Thu, 28 Mar 2024 19:55:52 +0000 (13:55 -0600)]
Merge pull request #16801 from kronbichler/fix_tensor_mapping

MappingQ: Do not assume contiguous storage of Tensor<2, dim>

5 months agoAdd assert on reinit() being called before get_present_fe_values() 16805/head
Simon Sticko [Thu, 28 Mar 2024 08:29:10 +0000 (09:29 +0100)]
Add assert on reinit() being called before get_present_fe_values()

If you call hp::FEValues::get_present_fe_values() and forgot to call
reinit() first, you presently get a poor error message. Add an assert
that present_fe_values_index is not invalid with a better error
message.

5 months agoMerge pull request #16802 from bangerth/fix-test
Daniel Arndt [Thu, 28 Mar 2024 18:32:11 +0000 (14:32 -0400)]
Merge pull request #16802 from bangerth/fix-test

Fix compilation of a test.

5 months agoMerge pull request #16803 from bangerth/doc
Martin Kronbichler [Thu, 28 Mar 2024 18:07:12 +0000 (19:07 +0100)]
Merge pull request #16803 from bangerth/doc

Augment documentation of class Tensor.

5 months agoMerge pull request #16797 from tamiko/make_statement_more_readable
Wolfgang Bangerth [Thu, 28 Mar 2024 17:52:41 +0000 (11:52 -0600)]
Merge pull request #16797 from tamiko/make_statement_more_readable

`base/tensor.h`: make a statement a bit easier to read

5 months agoMappingQ: Do not assume contiguous storage of Tensor<2, dim> 16801/head
Martin Kronbichler [Thu, 28 Mar 2024 14:57:15 +0000 (15:57 +0100)]
MappingQ: Do not assume contiguous storage of Tensor<2, dim>

5 months agoAugment documentation of class Tensor. 16803/head
Wolfgang Bangerth [Thu, 28 Mar 2024 16:12:30 +0000 (10:12 -0600)]
Augment documentation of class Tensor.

5 months agoFix compilation of a test. 16802/head
Wolfgang Bangerth [Thu, 28 Mar 2024 16:10:10 +0000 (10:10 -0600)]
Fix compilation of a test.

5 months agoMerge pull request #16798 from simonsticko/mapping_c1_instantiate_codims
Martin Kronbichler [Thu, 28 Mar 2024 14:53:25 +0000 (15:53 +0100)]
Merge pull request #16798 from simonsticko/mapping_c1_instantiate_codims

Instantiate MappingC1 for dim <= spacedim

5 months agoFEEvaluation: Add static asserts to functions selected by enable_if 16788/head
Martin Kronbichler [Tue, 26 Mar 2024 16:43:55 +0000 (17:43 +0100)]
FEEvaluation: Add static asserts to functions selected by enable_if

5 months agoMerge pull request #16799 from simonsticko/grid_in_author_names
Daniel Arndt [Thu, 28 Mar 2024 12:07:25 +0000 (08:07 -0400)]
Merge pull request #16799 from simonsticko/grid_in_author_names

Remove leftover author names in GridIn.

5 months agoRemove leftover author names in GridIn. 16799/head
Simon Sticko [Thu, 28 Mar 2024 09:06:07 +0000 (10:06 +0100)]
Remove leftover author names in GridIn.

As decided in #10416

5 months agoInstantiate MappingC1 for dim <= spacedim 16798/head
Simon Sticko [Thu, 28 Mar 2024 07:06:10 +0000 (08:06 +0100)]
Instantiate MappingC1 for dim <= spacedim

The mapping is not implemened for dim!=spacedim, but it is better to
get ExcNotImplemented than missing symbols.

5 months agobase/tensor.h: make a statement easier to read 16797/head
Matthias Maier [Thu, 28 Mar 2024 01:32:13 +0000 (20:32 -0500)]
base/tensor.h: make a statement easier to read

5 months agoMerge pull request #16771 from bangerth/tensor-alignment
Martin Kronbichler [Wed, 27 Mar 2024 18:00:55 +0000 (19:00 +0100)]
Merge pull request #16771 from bangerth/tensor-alignment

Align Tensor<rank,dim,Number> to make vectorization possible.

5 months agoMerge pull request #16787 from kronbichler/fix_submit_gradient
Daniel Arndt [Wed, 27 Mar 2024 17:52:59 +0000 (13:52 -0400)]
Merge pull request #16787 from kronbichler/fix_submit_gradient

FEEvaluation: Fix submit_gradient in 1D

5 months agoMerge pull request #16793 from masterleinad/fix_cuda_ci
Daniel Arndt [Wed, 27 Mar 2024 17:01:27 +0000 (13:01 -0400)]
Merge pull request #16793 from masterleinad/fix_cuda_ci

Fix CI using Kokkos+Cuda and CMake 3.28.4 and later

5 months agoAdd changelog 16795/head
Bruno Turcksin [Wed, 27 Mar 2024 16:43:27 +0000 (12:43 -0400)]
Add changelog

5 months agoAdd GridGenerator::hyper_ball_balanced to the python wrappers
Bruno Turcksin [Fri, 22 Mar 2024 13:27:39 +0000 (09:27 -0400)]
Add GridGenerator::hyper_ball_balanced to the python wrappers

5 months agoAdd GridGenerator::channel_with_cylinder to the python wrappers
Bruno Turcksin [Fri, 22 Mar 2024 13:05:11 +0000 (09:05 -0400)]
Add GridGenerator::channel_with_cylinder to the python wrappers

5 months agoAdd GridGenerator::plate_with_a_hole to the python wrappers
Bruno Turcksin [Wed, 20 Mar 2024 14:24:13 +0000 (10:24 -0400)]
Add GridGenerator::plate_with_a_hole to the python wrappers

5 months agoMerge pull request #16784 from masterleinad/fix_tpetra_macro_warning
Wolfgang Bangerth [Wed, 27 Mar 2024 16:40:16 +0000 (10:40 -0600)]
Merge pull request #16784 from masterleinad/fix_tpetra_macro_warning

Fix compiler warning for macro usage in TpetraWrappers

5 months agoMerge pull request #16791 from bangerth/error
David Wells [Wed, 27 Mar 2024 14:16:37 +0000 (10:16 -0400)]
Merge pull request #16791 from bangerth/error

Provide a better error message.

5 months agoMerge pull request #16790 from bangerth/tensor-begin-end-raw
David Wells [Wed, 27 Mar 2024 14:15:01 +0000 (10:15 -0400)]
Merge pull request #16790 from bangerth/tensor-begin-end-raw

Remove/deprecate Tensor::begin/end_raw().

5 months agoTry 3.27.9 16793/head
Daniel Arndt [Wed, 27 Mar 2024 14:13:33 +0000 (10:13 -0400)]
Try 3.27.9

5 months agoUpdate changelog entry 16787/head
Martin Kronbichler [Wed, 27 Mar 2024 14:12:22 +0000 (15:12 +0100)]
Update changelog entry

5 months agoNew test case
Martin Kronbichler [Tue, 26 Mar 2024 16:40:05 +0000 (17:40 +0100)]
New test case

5 months agoFEEvaluation: Fix submit_gradient in 1D
Martin Kronbichler [Tue, 26 Mar 2024 16:39:48 +0000 (17:39 +0100)]
FEEvaluation: Fix submit_gradient in 1D

5 months agoFix CI using Kokkos+Cuda and CMake 3.29.0
Daniel Arndt [Wed, 27 Mar 2024 13:16:26 +0000 (09:16 -0400)]
Fix CI using Kokkos+Cuda and CMake 3.29.0

5 months agoMerge pull request #16789 from kronbichler/restore_assertions
David Wells [Wed, 27 Mar 2024 13:10:39 +0000 (09:10 -0400)]
Merge pull request #16789 from kronbichler/restore_assertions

FEEvaluation: Ensure assertions in get_value/gradient are working

5 months agoUse ifdef DEBUG instead 16784/head
Daniel Arndt [Wed, 27 Mar 2024 12:57:16 +0000 (08:57 -0400)]
Use ifdef DEBUG instead

5 months agoProvide a better error message. 16791/head
Wolfgang Bangerth [Tue, 26 Mar 2024 23:40:26 +0000 (17:40 -0600)]
Provide a better error message.

5 months agoAdd a changelog entry. 16790/head
Wolfgang Bangerth [Tue, 26 Mar 2024 23:29:49 +0000 (17:29 -0600)]
Add a changelog entry.

5 months agoRemove/deprecate Tensor::begin/end_raw().
Wolfgang Bangerth [Tue, 26 Mar 2024 23:23:06 +0000 (17:23 -0600)]
Remove/deprecate Tensor::begin/end_raw().

5 months agoFEEvaluation: Ensure assertions in get_value/gradient are working 16789/head
Martin Kronbichler [Tue, 26 Mar 2024 16:53:41 +0000 (17:53 +0100)]
FEEvaluation: Ensure assertions in get_value/gradient are working

5 months agoAdd a changelog entry for the alignment of tensors. 16771/head
Wolfgang Bangerth [Tue, 26 Mar 2024 15:23:53 +0000 (09:23 -0600)]
Add a changelog entry for the alignment of tensors.

5 months agoAlign Tensor<rank,dim,Number> to make vectorization possible.
Wolfgang Bangerth [Thu, 21 Mar 2024 17:45:37 +0000 (11:45 -0600)]
Align Tensor<rank,dim,Number> to make vectorization possible.

5 months agoAdd a changelog entry.
Wolfgang Bangerth [Mon, 25 Mar 2024 00:53:21 +0000 (18:53 -0600)]
Add a changelog entry.

5 months agoAddress an alignment issue in Utilities::unpack().
Wolfgang Bangerth [Mon, 25 Mar 2024 00:53:09 +0000 (18:53 -0600)]
Address an alignment issue in Utilities::unpack().

5 months agoMerge pull request #16782 from drwells/openmpi-5
Martin Kronbichler [Tue, 26 Mar 2024 09:03:35 +0000 (10:03 +0100)]
Merge pull request #16782 from drwells/openmpi-5

Fix test environment variables for OpenMPI 5.

5 months agoMerge pull request #16765 from kronbichler/fe_point_evaluation_spacedim
Peter Munch [Tue, 26 Mar 2024 07:10:06 +0000 (08:10 +0100)]
Merge pull request #16765 from kronbichler/fe_point_evaluation_spacedim

FEPointEvaluation: Work towards dim < spacedim

5 months agoMerge pull request #16785 from tamiko/fix_opencascade_configure
Marc Fehling [Tue, 26 Mar 2024 05:31:14 +0000 (23:31 -0600)]
Merge pull request #16785 from tamiko/fix_opencascade_configure

CMake: fix OpenCASCADE-7.8 configure

5 months agoCMake: fix opencascade component 16785/head
Matthias Maier [Mon, 25 Mar 2024 23:55:25 +0000 (18:55 -0500)]
CMake: fix opencascade component

5 months agoMerge pull request #16776 from kronbichler/simplify_fe_evaluation
Peter Munch [Mon, 25 Mar 2024 18:58:46 +0000 (19:58 +0100)]
Merge pull request #16776 from kronbichler/simplify_fe_evaluation

FEEvaluation: Remove specialized Access class

5 months agoFix compiler warning for macro usage in TpetraWrappers
Daniel Arndt [Mon, 25 Mar 2024 17:46:50 +0000 (13:46 -0400)]
Fix compiler warning for macro usage in TpetraWrappers

5 months agoFix test environment variables for OpenMPI 5. 16782/head
David Wells [Mon, 25 Mar 2024 17:23:54 +0000 (13:23 -0400)]
Fix test environment variables for OpenMPI 5.

5 months agoMerge pull request #16781 from kinnewig/tpetra_wrappers_local_range
Wolfgang Bangerth [Mon, 25 Mar 2024 14:55:58 +0000 (08:55 -0600)]
Merge pull request #16781 from kinnewig/tpetra_wrappers_local_range

Add local_range() and in_local_range() to LA::TpetraWrappers::Vector

5 months agoQA: clean up some comments and constants. 16780/head
David Wells [Mon, 25 Mar 2024 12:27:10 +0000 (08:27 -0400)]
QA: clean up some comments and constants.

None of these are technically wrong but we need to replace 0u by the explicit
reversed line orientation so that 0u can become the default later.

5 months agoGridTools::orthogonal_equality(): simplify.
David Wells [Mon, 25 Mar 2024 03:52:17 +0000 (23:52 -0400)]
GridTools::orthogonal_equality(): simplify.

5 months agop::d::T: remove another GeometryInfo call.
David Wells [Mon, 25 Mar 2024 14:08:13 +0000 (10:08 -0400)]
p::d::T: remove another GeometryInfo call.

5 months agop::d::T: remove hardcoded inverse permutation.
David Wells [Mon, 25 Mar 2024 14:07:59 +0000 (10:07 -0400)]
p::d::T: remove hardcoded inverse permutation.

5 months agoAdd compatibility layer for 1D access 16776/head
Martin Kronbichler [Mon, 25 Mar 2024 12:33:21 +0000 (13:33 +0100)]
Add compatibility layer for 1D access

5 months agoAdd ReferenceCell::get_inverse_combined_orientation().
David Wells [Mon, 25 Mar 2024 02:25:42 +0000 (22:25 -0400)]
Add ReferenceCell::get_inverse_combined_orientation().

5 months agoPeriodicFacePair: Use unsigned char instead of bitset.
David Wells [Sun, 24 Mar 2024 20:34:27 +0000 (16:34 -0400)]
PeriodicFacePair: Use unsigned char instead of bitset.

In addition, use the standard (orientation, rotation, flip) order in a temporary
translation step.

5 months agoAdd local_range() and in_local_range() to LA::TpetraWrappers::Vector 16781/head
Sebastian Kinnewig [Wed, 20 Mar 2024 18:54:30 +0000 (19:54 +0100)]
Add local_range() and in_local_range() to LA::TpetraWrappers::Vector

5 months agoMerge pull request #16779 from quangx/step-32-typo
Wolfgang Bangerth [Sun, 24 Mar 2024 00:55:17 +0000 (18:55 -0600)]
Merge pull request #16779 from quangx/step-32-typo

fix typo regarding schur preconditioner for step-32

5 months agofix schur preconditioner format 16779/head
Quang Hoang [Sat, 23 Mar 2024 04:09:31 +0000 (00:09 -0400)]
fix schur preconditioner format

5 months agoMerge pull request #16778 from KJSchwiebert/master
Wolfgang Bangerth [Sat, 23 Mar 2024 02:58:29 +0000 (20:58 -0600)]
Merge pull request #16778 from KJSchwiebert/master

Remove typo from step-26 intro.dox

5 months agoRemove typo from step-26 intro.dox 16778/head
Kyle Schwiebert [Fri, 22 Mar 2024 23:52:32 +0000 (19:52 -0400)]
Remove typo from step-26 intro.dox

In order to match the stated initial condition, we should have no "-" sign here.

5 months agoUpdate tests 16765/head
Martin Kronbichler [Fri, 22 Mar 2024 16:51:45 +0000 (17:51 +0100)]
Update tests

5 months agoReview
Martin Kronbichler [Fri, 22 Mar 2024 16:51:15 +0000 (17:51 +0100)]
Review

5 months agoChangelog
Martin Kronbichler [Fri, 22 Mar 2024 16:22:42 +0000 (17:22 +0100)]
Changelog

5 months agoFEEvaluation: Reduced specialized Access class
Martin Kronbichler [Fri, 22 Mar 2024 16:22:18 +0000 (17:22 +0100)]
FEEvaluation: Reduced specialized Access class

5 months agoMerge pull request #16775 from kronbichler/fix_tensor_product_kernel
Matthias Maier [Fri, 22 Mar 2024 16:13:51 +0000 (16:13 +0000)]
Merge pull request #16775 from kronbichler/fix_tensor_product_kernel

Tensor product kernels: Implement generic operation for large sizes

5 months agoTensor product kernels: Implement generic operation for large sizes 16775/head
Martin Kronbichler [Fri, 22 Mar 2024 09:45:47 +0000 (10:45 +0100)]
Tensor product kernels: Implement generic operation for large sizes

5 months agoMerge pull request #16761 from kronbichler/gmres_all_zero
Wolfgang Bangerth [Thu, 21 Mar 2024 21:53:48 +0000 (15:53 -0600)]
Merge pull request #16761 from kronbichler/gmres_all_zero

SolverGMRES: Skip work if x is all zero

5 months agoMerge pull request #16770 from kronbichler/remove_special_class
Wolfgang Bangerth [Thu, 21 Mar 2024 21:35:53 +0000 (15:35 -0600)]
Merge pull request #16770 from kronbichler/remove_special_class

FEEvaluation: Remove specialized access class for d=1,n_components=1


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.