From bf15308f113aa4db057cd10b59e9a4a914d53e42 Mon Sep 17 00:00:00 2001 From: mloubout Date: Mon, 26 Jan 2026 12:20:27 -0500 Subject: [PATCH] compiler: fix msd thickness lowering --- devito/ir/equations/algorithms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/devito/ir/equations/algorithms.py b/devito/ir/equations/algorithms.py index b3a78c0ebe..8fbc7cca5e 100644 --- a/devito/ir/equations/algorithms.py +++ b/devito/ir/equations/algorithms.py @@ -339,3 +339,4 @@ def _(d, mapper, rebuilt, sregistry): kwargs['functions'] = functions mapper[d] = d._rebuild(**kwargs) + mapper.update({tkn0: tkn1 for tkn0, tkn1 in zip(d.thickness, tkns, strict=True)})