Skip to content
Snippets Groups Projects
Commit 2ba5c27e authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Doc fixes

parent d7ac5561
No related branches found
No related tags found
No related merge requests found
...@@ -371,9 +371,9 @@ class TemporaryVariable(ArrayBase): ...@@ -371,9 +371,9 @@ class TemporaryVariable(ArrayBase):
class SubstitutionRule(Record): class SubstitutionRule(Record):
""" """
:ivar name: .. attribute:: name
:ivar arguments: .. attribute:: arguments
:ivar expression: .. attribute:: expression
""" """
def __init__(self, name, arguments, expression): def __init__(self, name, arguments, expression):
...@@ -411,10 +411,11 @@ class InstructionBase(Record): ...@@ -411,10 +411,11 @@ class InstructionBase(Record):
.. attribute:: insn_deps .. attribute:: insn_deps
a list of ids of :class:`Instruction` instances that *must* be executed a :class:`frozenset` of :attr:`id` values of :class:`Instruction` instances that
before this one. Note that :func:`loopy.preprocess_kernel` (usually *must* be executed before this one. Note that
invoked automatically) augments this by adding dependencies on any :func:`loopy.preprocess_kernel` (usually invoked automatically)
writes to temporaries read by this instruction. augments this by adding dependencies on any writes to temporaries read
by this instruction.
May be *None* to invoke the default. May be *None* to invoke the default.
......
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