Skip to content
Snippets Groups Projects
Commit 7ec975bc authored by Kaushik Kulkarni's avatar Kaushik Kulkarni
Browse files

LazilyCompilingFunctionCaller: better docs

parent a80b924b
No related branches found
No related tags found
No related merge requests found
...@@ -138,13 +138,14 @@ def _get_arg_id_to_arg_and_arg_id_to_descr(args: Tuple[Any, ...] ...@@ -138,13 +138,14 @@ def _get_arg_id_to_arg_and_arg_id_to_descr(args: Tuple[Any, ...]
@dataclass @dataclass
class LazilyCompilingFunctionCaller: class LazilyCompilingFunctionCaller:
""" """
Records a side-effect-free callable :attr:`LazilyCompilingFunctionCaller.f`, that Records a side-effect-free callable
would be specialized for different input types :attr:`LazilyCompilingFunctionCaller.f` that can be specialized for the
:meth:`LazilyCompilingFunctionCaller.__call__` is invoked with. input types with which :meth:`LazilyCompilingFunctionCaller.__call__` is
invoked.
.. attribute:: f .. attribute:: f
The callable that would be specialized into :mod:`pytato` DAGs. The callable that will be called to obtain :mod:`pytato` DAGs.
.. automethod:: __call__ .. automethod:: __call__
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment