psyclone.psyir.nodes.schedule

This module contains the Schedule node implementation.

Classes

  • Schedule: Stores schedule information for a sequence of statements (supplied

class psyclone.psyir.nodes.schedule.Schedule(children=None, parent=None, symbol_table=None)

Stores schedule information for a sequence of statements (supplied as a list of children).

Inheritance

Inheritance diagram of Schedule
gen_code(parent)

A Schedule does not have any direct Fortran representation. We just call gen_code() for all of its children.

Parameters:

parent (psyclone.f2pygen.BaseGen) – node in the f2pygen AST to which to add content.