From d6c66db48e1e8d214b3a397fbe8751fa37864af0 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 20 Feb 2015 18:35:28 -0600 Subject: [PATCH] Kernel attribute docs --- loopy/kernel/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/loopy/kernel/__init__.py b/loopy/kernel/__init__.py index db1af79ad..d3089fc6a 100644 --- a/loopy/kernel/__init__.py +++ b/loopy/kernel/__init__.py @@ -95,6 +95,9 @@ class LoopKernel(RecordWithoutPickling): .. attribute:: instructions .. attribute:: args + + A list of :class:`loopy.kernel.data.KernelArgument` + .. attribute:: schedule *None* or a list of :class:`loopy.schedule.ScheduleItem` @@ -105,7 +108,16 @@ class LoopKernel(RecordWithoutPickling): .. attribute:: assumptions .. attribute:: local_sizes .. attribute:: temporary_variables + + A :class:`dict` of mapping variable names to + :class:`loopy.kernel.data.TemporaryVariable` + instances. + .. attribute:: iname_to_tag + + A :class:`dict` mapping inames (as strings) + to instances of :class:`loopy.kernel.data.IndexTag`. + .. attribute:: function_manglers .. attribute:: symbol_manglers -- GitLab