From b1f7f18354e08825b65990b557d87242992c3560 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 29 May 2023 19:35:48 -0500 Subject: [PATCH] Better explain DistributedGraphPartition.name_to_output --- pytato/distributed/partition.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pytato/distributed/partition.py b/pytato/distributed/partition.py index a59bd0e..15f4f89 100644 --- a/pytato/distributed/partition.py +++ b/pytato/distributed/partition.py @@ -249,7 +249,9 @@ class DistributedGraphPartition: .. attribute:: name_to_output Mapping of placeholder names to the respective :class:`pytato.array.Array` - they represent. + they represent. This is where the actual expressions are stored, for + all parts. Observe that the :class:`DistributedGraphPart`, for the most + part, only stores names. """ parts: Mapping[PartId, DistributedGraphPart] name_to_output: Mapping[str, Array] -- GitLab