Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace __restrict by DEAL_II_RESTRICT #10949

Merged
merged 1 commit into from
Sep 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/deal.II/matrix_free/evaluation_kernels.h
Expand Up @@ -2614,11 +2614,11 @@ namespace internal
// `scratch_data` variable to not risk a stack overflow.
constexpr unsigned int stack_array_size_threshold = 100;

VectorizedArrayType *DEAL_II_RESTRICT temp1;
VectorizedArrayType
temp_data[static_dofs_per_face < stack_array_size_threshold ?
2 * dofs_per_face :
1];
VectorizedArrayType *__restrict temp1;
if (static_dofs_per_face < stack_array_size_threshold)
temp1 = &temp_data[0];
else
Expand Down