From 0d26af9f9cddd5ecbbf1ee2479388a952d2e15e2 Mon Sep 17 00:00:00 2001 From: Matthias Diener <mdiener@illinois.edu> Date: Mon, 7 Jun 2021 14:16:19 -0500 Subject: [PATCH] add tagged --- arraycontext/impl/pytato.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arraycontext/impl/pytato.py b/arraycontext/impl/pytato.py index fd6047d..794ae14 100644 --- a/arraycontext/impl/pytato.py +++ b/arraycontext/impl/pytato.py @@ -425,7 +425,7 @@ class PytatoArrayContext(ArrayContext): # Sorry, not capable. return array - def einsum(self, spec, *args): + def einsum(self, spec, *args, tagged=()): import pytato as pt return pt.einsum(spec, *args) -- GitLab