Skip to content

Commit

Permalink
Force inlining
Browse files Browse the repository at this point in the history
  • Loading branch information
bergbauer committed Jan 22, 2024
1 parent 84419ae commit 5dc3c94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/deal.II/matrix_free/evaluation_kernels_face.h
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ namespace internal
}

template <int fe_degree>
static void
static DEAL_II_ALWAYS_INLINE void
project_to_face(const unsigned int n_components,
const EvaluationFlags::EvaluationFlags evaluation_flag,
const Number *values_dofs,
Expand Down Expand Up @@ -1579,7 +1579,7 @@ namespace internal


template <int fe_degree, int n_q_points_1d>
static void
static DEAL_II_ALWAYS_INLINE void
evaluate_in_face(const unsigned int n_components,
const EvaluationFlags::EvaluationFlags evaluation_flag,
FEEvaluationData<dim, Number, true> &fe_eval,
Expand Down Expand Up @@ -1643,7 +1643,7 @@ namespace internal
subface_index);
}

static void
static DEAL_II_ALWAYS_INLINE void
adjust_quadrature_for_face_orientation(
const unsigned int n_components,
const EvaluationFlags::EvaluationFlags evaluation_flag,
Expand Down Expand Up @@ -1932,7 +1932,7 @@ namespace internal
return true;
}

static void
static DEAL_II_ALWAYS_INLINE void
adjust_quadrature_for_face_orientation(
const unsigned int n_components,
const EvaluationFlags::EvaluationFlags integration_flag,
Expand Down Expand Up @@ -1984,7 +1984,7 @@ namespace internal
}

template <int fe_degree, int n_q_points_1d>
static void
static DEAL_II_ALWAYS_INLINE void
integrate_in_face(const unsigned int n_components,
const EvaluationFlags::EvaluationFlags integration_flag,
FEEvaluationData<dim, Number, true> &fe_eval,
Expand Down Expand Up @@ -2050,7 +2050,7 @@ namespace internal
}

template <int fe_degree>
static void
static DEAL_II_ALWAYS_INLINE void
collect_from_face(const unsigned int n_components,
const EvaluationFlags::EvaluationFlags integration_flag,
Number *values_dofs,
Expand Down

0 comments on commit 5dc3c94

Please sign in to comment.