From 98ffaf30aca377880ea1bd6bd3969b94343bea4e Mon Sep 17 00:00:00 2001 From: Matthias Diener <mdiener@illinois.edu> Date: Mon, 21 Jun 2021 23:31:14 -0500 Subject: [PATCH] Clearer messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andreas Klöckner <inform@tiker.net> --- arraycontext/impl/pytato/compile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py index b7fd924..a7e368b 100644 --- a/arraycontext/impl/pytato/compile.py +++ b/arraycontext/impl/pytato/compile.py @@ -60,7 +60,7 @@ class ArrayContainerInputDescriptor(AbstractInputDescriptor): def _ary_container_key_stringifier(keys: Tuple[Any, ...]) -> str: """ Helper for :meth:`PytatoCompiledOperator.__call__`. Stringifies an - array-container's component's key. The aim is that no-two different keys + array-container's component's key. The aim is that no two different keys have the same stringification. """ def _rec_str(key: Any) -> str: @@ -162,7 +162,7 @@ class PytatoCompiledOperator: if not is_array_container(outputs): # TODO: We could possibly just short-circuit this interface if the # returned type is a scalar. Not sure if it's worth it though. - raise ValueError(f"Function '{self.f.__name__}' to be compiled did not" + raise NotImplementedError(f"Function '{self.f.__name__}' to be compiled did not" f" return an array container, but '{outputs}' instead.") def _as_dict_of_named_arrays(keys, ary): -- GitLab