From e883bc87d16b74ae7e3d7be71c8d895f71784843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Wed, 28 Apr 2021 17:06:27 -0500 Subject: [PATCH] Clarify nodes caching policy for interior faces --- grudge/execution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grudge/execution.py b/grudge/execution.py index 975cdc16..a0624479 100644 --- a/grudge/execution.py +++ b/grudge/execution.py @@ -75,8 +75,8 @@ class ExecutionMapper(mappers.Evaluator, discr = self.dcoll.discr_from_dd(expr.dd) return thaw(self.array_context, discr.nodes( # only save volume nodes or boundary nodes - # (but not interior ones, which are likely only used once - # to compute the normals) + # (but not nodes for interior face discretizations, which are likely only + # used once to compute the normals) cached=( discr.ambient_dim == discr.dim or expr.dd.is_boundary_or_partition_interface() -- GitLab