From a80b924b91d6b6d5d8e5a48c10dab8f4da65acbe Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni <kaushikcfd@gmail.com> Date: Tue, 29 Jun 2021 05:56:01 -0500 Subject: [PATCH] improves _get_arg_id_to_arg_and_arg_id_to_descr docs Co-authored-by: Andreas Kloeckner <inform@tiker.net> --- arraycontext/impl/pytato/compile.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py index cb6813b..127c125 100644 --- a/arraycontext/impl/pytato/compile.py +++ b/arraycontext/impl/pytato/compile.py @@ -97,10 +97,11 @@ def _get_arg_id_to_arg_and_arg_id_to_descr(args: Tuple[Any, ...] AbstractInputDescriptor]\ ]": """ - Helper for :meth:`LazilyCompilingFunctionCaller.__call__`. Extracts the - argument id to argument values and descriptor mappings from the input - arguments. See :attr:`CompiledFunction.input_id_to_name_in_program` for - argument-id's representation. + Helper for :meth:`LazilyCompilingFunctionCaller.__call__`. Extracts + mappings from argument id to argument values and from argument id to + :class:`AbstractInputDescriptor`. See + :attr:`CompiledFunction.input_id_to_name_in_program` for argument-id's + representation. """ arg_id_to_arg: Dict[Tuple[Any, ...], Any] = {} arg_id_to_descr: Dict[Tuple[Any, ...], AbstractInputDescriptor] = {} -- GitLab