Condition¶
Note
This documentation is mirrored from the graph-scheduler package and often refers to nodes
, edges
, and graphs
. In PsyNeuLink terms, nodes
are Mechanisms or Compositions, edges
are Projections, and graphs
are Compositions. The one exception is during learning, in which Projections may be assigned for execution as nodes to ensure that MappingProjections are updated in the proper order.
Note
This documentation was modified from the original due to environment-specific TimeScale renamings. If there is any confusion, please see the original documentation at https://www.github.com/kmantel/graph-scheduler
Overview¶
Conditions
are used to specify when nodes are allowed to execute. Conditions
can be used to specify a variety of required conditions for execution, including the state of the node
itself (e.g., how many times it has already executed, or the value of one of its attributes), the state of the
Scheduler
(e.g., how many TIME_STEP
s have occurred in the current TRIAL
), or the state of other
nodes in a graph (e.g., whether or how many times they have executed). This package provides a number of
pre-specified Conditions that can be parametrized (e.g., how many times a node should
be executed). Custom conditions can also be created, by assigning a function to a Condition that
can reference any node or its attributes, thus providing considerable flexibility for scheduling.
These Conditions may also be referred to as “basic” Conditions.
Graph structure Conditions are distinct,
and affect scheduling instead by modifying the base ordering in which
nodes are considered for execution.
Creating Conditions¶
Pre-specified Conditions¶
Pre-specified Conditions can be instantiated and added to a Scheduler
at any time,
and take effect immediately for the execution of that Scheduler. Most pre-specified Conditions have one or more
arguments that must be specified to achieve the desired behavior. Many Conditions are also associated with an
owner
attribute (a node to which the Condition
belongs). Schedulers maintain the data
used to test for satisfaction of Condition, independent in different execution contexts
. The Scheduler is generally
responsible for ensuring that Conditions have access to the necessary data.
When pre-specified Conditions are instantiated within a call to the add_condition
method of a Scheduler or ConditionSet
,
the Condition’s owner
is determined through
context and assigned automatically, as in the following example:
my_scheduler.add_condition(A, EveryNPasses(1))
my_scheduler.add_condition(B, EveryNCalls(A, 2))
my_scheduler.add_condition(C, EveryNCalls(B, 2))
Here, EveryNCalls(A, 2)
for example, is assigned the owner
B
.
Custom Conditions¶
Custom Conditions can be created by calling the constructor for the base class (Condition()
) or one of the
generic classes, and assigning a function to the func argument and any arguments it
requires to the args and/or kwargs arguments (for formal or keyword arguments, respectively). The function
is called with args and kwargs by the Scheduler on each PASS
through its consideration_queue
, and the result is
used to determine whether the associated node is allowed to execute on that PASS
. Custom Conditions allow
arbitrary schedules to be created, in which the execution of each node can depend on one or more attributes of
any other node in the graph.
For example, the following script fragment creates a custom Condition in which node_A
is scheduled to wait to
execute until node_B
has “converged” (that is, settled to the point that none of
its elements has changed in value more than a specified amount since the previous TIME_STEP
):
def converge(node, thresh, context):
for val in node.parameters.value.get_delta(context):
if abs(val) >= thresh:
return False
return True
epsilon = 0.01
my_scheduler.add_condition(node_A, NWhen(Condition(converge, node_B, epsilon), 1))
In the example, a function converge
is defined that references the change in a node’s value
. The function is assigned to
the standard Condition
with node_A
and epsilon
as its arguments, and composite Condition
NWhen
(which is satisfied the first N times after its condition becomes true), The Condition is assigned to node_B
,
thus scheduling it to execute one time when all of the elements of node_A
have changed by less than epsilon
.
Graph Structure Conditions¶
Graph structure Conditions share the same interface as basic Conditions,
but operate differently. Like basic Conditions, they are assigned to an
owner
, and like node-based Conditions, they also track other nodes. Each graph
structure Condition represents a transformation that can be applied to a
graph, adding and removing edges, which will result in modifying a
Scheduler’s consideration queue. Some execution
patterns that are difficult to create using basic Conditions can be
achieved much more easily by making a simple change to the graph.
For example, consider a situation in which a node computes an initial
value and provides feedback to one or more of its ancestors. A direct
construction of the scheduling graph with D
providing feedback to A
and C
may be represented by:
D
↗ ↖
B C
↑
A
{A: set(), B: {A}, C: set(), D: {B, C}}
Creating a scheduling pattern for D
to compute its initial
value first, like [{D}, {A, C}, {B}]
, would require several basic Conditions:
scheduler.add_condition(A, EveryNCalls(D, 1))
scheduler.add_condition(B, EveryNCalls(D, 1))
scheduler.add_condition(C, EveryNCalls(D, 1))
scheduler.add_condition(D, Always())
This can become especially burdensome or impossible in larger graphs containing nodes that also need other Conditions. The same pattern would only require a single graph structure Condition:
scheduler.add_condition(D, BeforeNodes(A, C))
which modifies the scheduler’s graph to behave as if it were originally the following graph:
B
↑
A C
↖ ↗
D
{A: {D}, B: {A}, C: {D}, D: set()}
Not only is this easier, but it also allows the simultaneous use of the full range of basic Conditions.
Of course, this is the same as if you created a scheduler using the second graph. What graph structure Conditions do is provide an interface that can be used to avoid manually producing and managing transformations of an existing, possibly complicated, graph.
Note
Default behavior of graph structure conditions should be considered in beta and subject to change.
Structure¶
The Scheduler
associates every
node with a single basic Condition and zero or more graph structure
Conditions. If a node has not been
explicitly assigned a
Condition, it is assigned a Condition that causes it to be executed whenever it is under consideration
and all its structural parents have been executed at least once since the node’s last execution.
Condition subclasses (listed below)
provide a standard set of Conditions that can be implemented simply by specifying their parameter(s).
Along with graph structure Conditions,
there are six types of basic Conditions:
Generic - satisfied when a user-specified function and set of arguments evaluates to
True
;Static - satisfied either always or never;
Composite - satisfied based on one or more other Conditions;
Time-based - satisfied based on the current count of units of time at a specified
TimeScale
;Node-based - based on the execution or state of other nodes.
Convenience - based on other Conditions, condensed for convenience
List of Pre-specified Conditions¶
Note
The optional TimeScale
argument in many Conditions specifies the unit of time over which the
Condition operates; the default value is TRIAL
for all Conditions except those with “Trial”
in their name, for which it is RUN
.
Generic Conditions (used to construct custom Conditions):
While
(func, *args, **kwargs) satisfied whenever the specified function (or callable) called with args and/or kwargs evaluates toTrue
. Equivalent toCondition(func, *args, **kwargs)
WhileNot
(func, *args, **kwargs) satisfied whenever the specified function (or callable) called with args and/or kwargs evaluates toFalse
. Equivalent toNot(Condition(func, *args, **kwargs))
Static Conditions (independent of other Conditions, nodes or time):
Composite Conditions (based on one or more other Conditions):
All
(*Conditions) satisfied whenever all of the specified Conditions are satisfied.
Any
(*Conditions) satisfied whenever any of the specified Conditions are satisfied.
Not
(Condition) satisfied whenever the specified Condition is not satisfied.
NWhen
(Condition, int) satisfied the first specified number of times the specified Condition is satisfied.
Time-Based Conditions (based on the count of units of time at a
specified TimeScale
or Time):
TimeInterval
([pint.Quantity
,pint.Quantity
,pint.Quantity
]) satisfied every time an optional amount of absolute time has passed in between an optional specified range
TimeTermination
(pint.Quantity
) satisfied after the given absolute time
BeforeTimeStep
(int[, TimeScale]) satisfied any time before the specifiedTIME_STEP
occurs.
AtTimeStep
(int[, TimeScale]) satisfied only during the specifiedTIME_STEP
.
AfterTimeStep
(int[, TimeScale]) satisfied any time after the specifiedTIME_STEP
has occurred.
AfterNTimeSteps
(int[, TimeScale]) satisfied when or any time after the specified number ofTIME_STEP
s has occurred.
BeforePass
(int[, TimeScale]) satisfied any time before the specifiedPASS
occurs.
AtPass
(int[, TimeScale]) satisfied only during the specifiedPASS
.
AfterPass
(int[, TimeScale]) satisfied any time after the specifiedPASS
has occurred.
AfterNPasses
(int[, TimeScale]) satisfied when or any time after the specified number ofPASS
es has occurred.
EveryNPasses
(int[, TimeScale]) satisfied every time the specified number ofPASS
es occurs.
BeforeTrial
(int[, TimeScale]) satisfied any time before the specifiedTRIAL
occurs.
AtTrial
(int[, TimeScale]) satisfied any time during the specifiedTRIAL
.
AfterTrial
(int[, TimeScale]) satisfied any time after the specifiedTRIAL
occurs.
AfterNTrials
(int[, TimeScale]) satisfied any time after the specified number ofTRIAL
s has occurred.
AfterRun
(int) satisfied any time after the specifiedRUN
occurs.
AfterNRuns
(int) satisfied any time after the specified number ofRUN
s has occurred.
Node-Based Conditions (based on the execution or state of other nodes):
BeforeNCalls
(node, int[, TimeScale]) satisfied any time before the specified node has executed the specified number of times.
AtNCalls
(node, int[, TimeScale]) satisfied when the specified node has executed the specified number of times.
AfterCall
(node, int[, TimeScale]) satisfied any time after the node has executed the specified number of times.
AfterNCalls
(node, int[, TimeScale]) satisfied when or any time after the node has executed the specified number of times.
AfterNCallsCombined
(*nodes, int[, TimeScale]) satisfied when or any time after the specified nodes have executed the specified number of times among themselves, in total.
EveryNCalls
(node, int[, TimeScale]) satisfied when the specified node has executed the specified number of times since the last timeowner
has run.
JustRan
(node) satisfied if the specified node was assigned to run in the previousTIME_STEP
.
AllHaveRun
(*nodes) satisfied when all of the specified nodes have executed at least once.
WhenFinished
(node) satisfied when theis_finished
method of the specified node, givenexecution_id
returnsTrue
.
WhenFinishedAny
(*nodes) satisfied when theis_finished
method of any of the specified nodes, givenexecution_id
returnsTrue
.
WhenFinishedAll
(*nodes) satisfied when theis_finished
method of all of the specified nodes, givenexecution_id
returnsTrue
.
Convenience Conditions (based on other Conditions, condensed for convenience)
AtTrialStart
satisfied at the beginning of anTRIAL
(AtPass(0)
)
AtTrialNStart
satisfied onPASS
0 of the specifiedTRIAL
counted using ‘TimeScale`
AtRunStart
satisfied at the beginning of anRUN
AtRunNStart
satisfied onTRIAL
0 of the specifiedRUN
counted using ‘TimeScale`
Graph Structure Conditions (used to make modifications to the Scheduler graph):
BeforeNodes
(*nodes, **options)adds a dependency from the owner to each of the specified nodes and optionally modifies the senders and receivers of all affected nodes
BeforeNode
(node, **options)adds a dependency from the owner to the specified node and optionally modifies the senders and receivers of both
AfterNodes
(*nodes, **options)adds a dependency from each of the specified nodes to the owner and optionally modifies the senders and receivers of all affected nodes
AddEdgeTo
(node)adds an edge from
AddEdgeTo.owner
toAddEdgeTo.node
RemoveEdgeFrom
(node)removes an edge from
RemoveEdgeFrom.node
toRemoveEdgeFrom.owner
CustomGraphStructureCondition
(callable, **kwargs)applies a user-defined function to a graph
Execution¶
When the Scheduler runs
, it makes a sequential PASS
through its consideration_queue
,
evaluating each consideration_set in the queue to determine which nodes should be assigned
to execute. It evaluates the nodes in each set by calling the
is_satisfied
method of the basic Condition associated
with each of those nodes. If it returns True
, then the node is assigned to the execution set for the
TIME_STEP
of execution generated by that PASS
. Otherwise, the node is not executed.
Class Reference¶
- class psyneulink.core.scheduling.condition.AbsoluteCondition(func, *args, **kwargs)¶
- class psyneulink.core.scheduling.condition.AddEdgeTo(*nodes, **kwargs)¶
Adds an edge from
AddEdgeTo.owner
toAddEdgeTo.node
- node¶
the subject node
- class psyneulink.core.scheduling.condition.AfterCall(dependency, n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
dependency (node) – the node on which the Condition depends
n (int) – the number of executions of dependency after which the Condition is satisfied
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
the node specified in dependency has executed at least n+1 times within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.AfterNCalls(dependency, n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
dependency (node) – the node on which the Condition depends
n (int) – the number of executions of dependency after which the Condition is satisfied
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
the node specified in dependency has executed at least n times within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.AfterNCallsCombined(*dependencies, n=None, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
*nodes (nodes) – one or more nodes on which the Condition depends
n (int) – the number of combined executions of all nodes specified in dependencies after which the
(default (Condition is satisfied) – None)
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
there have been at least n+1 executions among all of the nodes specified in dependencies within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.AfterNode(*nodes, owner_senders=Operation.KEEP, owner_receivers=Operation.MERGE, subject_senders=Operation.MERGE, subject_receivers=Operation.KEEP, reconnect_non_subject_receivers=True, remove_new_self_referential_edges=True, prune_cycles=True, ignore_conflicts=False)¶
Adds a dependency from the specified node to the owner and optionally modifies the senders and receivers of both
- Parameters
owner_senders (
Union
[Operation
,str
]) –Operation
that determines how the original senders ofowner
(the Operation source) combine with the union of all original senders of all subjectnodes
(the Operation comparison) to produce the new set of senders ofowner
aftermodify_graph
owner_receivers (
Union
[Operation
,str
]) –Operation
that determines how the original receivers ofowner
(the Operation source) combine with the union of all original receivers of all subjectnodes
(the Operation comparison) to produce the new set of receivers ofowner
aftermodify_graph
subject_senders (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original senders for each of the subjectnodes
(the Operation source) combine with the original senders ofowner
(the Operation comparison) to produce the new set of senders for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.subject_receivers (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original receivers for each of the subjectnodes
(the Operation source) combine with the original receivers ofowner
(the Operation comparison) to produce the new set of receivers for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.reconnect_non_subject_receivers (
bool
) – If True,modify_graph
will create an edge from all prior senders ofowner
to all receivers ofowner
that are not innodes
, if there is no longer a path from that sender to that receiver. Defaults to True.remove_new_self_referential_edges (
bool
) – If True,modify_graph
will remove any newly-created edges from a node to itself. Defaults to True.prune_cycles (
bool
) – If True,modify_graph
will attempt to prune any newly-created cycles, preferring to remove edges adjacent toowner
that affect the placement ofowner
more than any subjectnode
. Defaults to True.ignore_conflicts (
bool
) – If True, when any two operations give different results for the new senders and receivers of a node inmodify_graph
, an error will not be raised. Defaults to False.
- nodes¶
the subject nodes
- node¶
the subject node
- class psyneulink.core.scheduling.condition.AfterNodes(*nodes, owner_senders=Operation.KEEP, owner_receivers=Operation.MERGE, subject_senders=Operation.MERGE, subject_receivers=Operation.KEEP, reconnect_non_subject_receivers=True, remove_new_self_referential_edges=True, prune_cycles=True, ignore_conflicts=False)¶
Adds a dependency from each of the specified nodes to the owner and optionally modifies the senders and receivers of all affected nodes
- Parameters
owner_senders (
Union
[Operation
,str
]) –Operation
that determines how the original senders ofowner
(the Operation source) combine with the union of all original senders of all subjectnodes
(the Operation comparison) to produce the new set of senders ofowner
aftermodify_graph
owner_receivers (
Union
[Operation
,str
]) –Operation
that determines how the original receivers ofowner
(the Operation source) combine with the union of all original receivers of all subjectnodes
(the Operation comparison) to produce the new set of receivers ofowner
aftermodify_graph
subject_senders (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original senders for each of the subjectnodes
(the Operation source) combine with the original senders ofowner
(the Operation comparison) to produce the new set of senders for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.subject_receivers (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original receivers for each of the subjectnodes
(the Operation source) combine with the original receivers ofowner
(the Operation comparison) to produce the new set of receivers for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.reconnect_non_subject_receivers (
bool
) – If True,modify_graph
will create an edge from all prior senders ofowner
to all receivers ofowner
that are not innodes
, if there is no longer a path from that sender to that receiver. Defaults to True.remove_new_self_referential_edges (
bool
) – If True,modify_graph
will remove any newly-created edges from a node to itself. Defaults to True.prune_cycles (
bool
) – If True,modify_graph
will attempt to prune any newly-created cycles, preferring to remove edges adjacent toowner
that affect the placement ofowner
more than any subjectnode
. Defaults to True.ignore_conflicts (
bool
) – If True, when any two operations give different results for the new senders and receivers of a node inmodify_graph
, an error will not be raised. Defaults to False.
- nodes¶
the subject nodes
- class psyneulink.core.scheduling.condition.AfterNPasses(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
- class psyneulink.core.scheduling.condition.AfterNRuns(n)¶
- Parameters
n (int) – the number of
RUN
s after which the Condition is satisfied
Satisfied when:
at least n
RUN
s have occured.
Notes
RUN
s are managed by the environment using the Scheduler (e.g.end_environment_sequence
) and are not automatically updated by this package.
- class psyneulink.core.scheduling.condition.AfterNTimeSteps(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
- class psyneulink.core.scheduling.condition.AfterNTrials(n, time_scale=TimeScale.ENVIRONMENT_SEQUENCE)¶
- Parameters
Satisfied when:
- class psyneulink.core.scheduling.condition.AfterPass(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.AfterRun(n)¶
- Parameters
n (int) – the
RUN
after which the Condition is satisfied
Satisfied when:
at least n+1
RUN
s have occurred.
Notes
RUN
s are managed by the environment using the Scheduler (e.g.end_environment_sequence
) and are not automatically updated by this package.
- class psyneulink.core.scheduling.condition.AfterTimeStep(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.AfterTrial(n, time_scale=TimeScale.ENVIRONMENT_SEQUENCE)¶
- Parameters
Satisfied when:
Notes
Counts of TimeScales are zero-indexed (that is, the first
TRIAL
is 0, the second
TRIAL
is 1, etc.); so,AfterPass(1)
is satisfied afterTRIAL
1 has occurred and thereafter (i.e., inTRIAL
s 2, 3, 4, etc.).
- class psyneulink.core.scheduling.condition.All(*args, **dependencies)¶
- Parameters
args – one or more Conditions
Satisfied when:
all of the Conditions in args are satisfied.
Notes
To initialize with a list (for example):
conditions = [AfterNCalls(node, 5) for node in node_list]
unpack the list to supply its members as args:
composite_condition = All(*conditions)
- class psyneulink.core.scheduling.condition.AllHaveRun(*dependencies, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
*nodes (nodes) – an iterable of nodes on which the Condition depends
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
all of the nodes specified in dependencies have executed at least once within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.Always¶
- Parameters
none –
Satisfied when:
always satisfied.
- class psyneulink.core.scheduling.condition.And(*args, **dependencies)¶
- Parameters
args – one or more Conditions
Satisfied when:
all of the Conditions in args are satisfied.
Notes
To initialize with a list (for example):
conditions = [AfterNCalls(node, 5) for node in node_list]
unpack the list to supply its members as args:
composite_condition = All(*conditions)
- class psyneulink.core.scheduling.condition.Any(*args, **dependencies)¶
- Parameters
args – one or more Conditions
Satisfied when:
one or more of the Conditions in args is satisfied.
Notes
To initialize with a list (for example):
conditions = [AfterNCalls(node, 5) for node in node_list]
unpack the list to supply its members as args:
composite_condition = Any(*conditions)
- class psyneulink.core.scheduling.condition.AtNCalls(dependency, n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
dependency (node) – the node on which the Condition depends
n (int) – the number of executions of dependency at which the Condition is satisfied
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
the node specified in dependency has executed exactly n times within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.AtPass(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.AtRun(n)¶
- Parameters
n (int) – the
RUN
at which the Condition is satisfied
Satisfied when:
exactly n
RUN
s have occurred.
Notes
RUN
s are managed by the environment using the Scheduler (e.g.end_environment_sequence
) and are not automatically updated by this package.
- class psyneulink.core.scheduling.condition.AtRunNStart(n)¶
- Parameters
n (int) – the
RUN
on which the Condition is satisfied
Satisfied when:
Notes
identical to
All(AtTrial(0), AtRun(n))
- class psyneulink.core.scheduling.condition.AtRunStart¶
Satisfied when:
at the beginning of an
RUN
Notes
identical to
AtTrial(0)
- class psyneulink.core.scheduling.condition.AtTimeStep(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
Counts of TimeScales are zero-indexed (that is, the first ‘TIME_STEP’ is pass 0, the second ‘TIME_STEP’ is 1, etc.); so,
AtTimeStep(1)
is satisfied when a singleTIME_STEP
(TIME_STEP
0) has occurred, andAtTimeStep(2)
is satisfied when twoTIME_STEP
s have occurred (TIME_STEP
0 andTIME_STEP
1), etc..
- class psyneulink.core.scheduling.condition.AtTrial(n, time_scale=TimeScale.ENVIRONMENT_SEQUENCE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.AtTrialNStart(n, time_scale=TimeScale.ENVIRONMENT_SEQUENCE)¶
- Parameters
Satisfied when:
Notes
identical to All(AtPass(0), AtTrial(n, time_scale))
- class psyneulink.core.scheduling.condition.AtTrialStart¶
Satisfied when:
at the beginning of an
TRIAL
Notes
identical to
AtPass(0)
- class psyneulink.core.scheduling.condition.BeforeNCalls(dependency, n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
dependency (node) – the node on which the Condition depends
n (int) – the number of executions of dependency before which the Condition is satisfied
time_scale (TimeScale) – the TimeScale used as basis for counting executions of dependency
(default – TimeScale.TRIAL)
Satisfied when:
the node specified in dependency has executed at most n-1 times within one unit of time at the
TimeScale
specified by time_scale.
- class psyneulink.core.scheduling.condition.BeforeNode(*nodes, owner_senders=Operation.MERGE, owner_receivers=Operation.KEEP, subject_senders=Operation.KEEP, subject_receivers=Operation.KEEP, reconnect_non_subject_receivers=True, remove_new_self_referential_edges=True, prune_cycles=True, ignore_conflicts=False)¶
Adds a dependency from the owner to the specified node and optionally modifies the senders and receivers of both
- Parameters
owner_senders (
Union
[Operation
,str
]) –Operation
that determines how the original senders ofowner
(the Operation source) combine with the union of all original senders of all subjectnodes
(the Operation comparison) to produce the new set of senders ofowner
aftermodify_graph
owner_receivers (
Union
[Operation
,str
]) –Operation
that determines how the original receivers ofowner
(the Operation source) combine with the union of all original receivers of all subjectnodes
(the Operation comparison) to produce the new set of receivers ofowner
aftermodify_graph
subject_senders (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original senders for each of the subjectnodes
(the Operation source) combine with the original senders ofowner
(the Operation comparison) to produce the new set of senders for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.subject_receivers (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original receivers for each of the subjectnodes
(the Operation source) combine with the original receivers ofowner
(the Operation comparison) to produce the new set of receivers for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.reconnect_non_subject_receivers (
bool
) – If True,modify_graph
will create an edge from all prior senders ofowner
to all receivers ofowner
that are not innodes
, if there is no longer a path from that sender to that receiver. Defaults to True.remove_new_self_referential_edges (
bool
) – If True,modify_graph
will remove any newly-created edges from a node to itself. Defaults to True.prune_cycles (
bool
) – If True,modify_graph
will attempt to prune any newly-created cycles, preferring to remove edges adjacent toowner
that affect the placement ofowner
more than any subjectnode
. Defaults to True.ignore_conflicts (
bool
) – If True, when any two operations give different results for the new senders and receivers of a node inmodify_graph
, an error will not be raised. Defaults to False.
- nodes¶
the subject nodes
- node¶
the subject node
- class psyneulink.core.scheduling.condition.BeforeNodes(*nodes, owner_senders=Operation.MERGE, owner_receivers=Operation.KEEP, subject_senders=Operation.KEEP, subject_receivers=Operation.KEEP, reconnect_non_subject_receivers=True, remove_new_self_referential_edges=True, prune_cycles=True, ignore_conflicts=False)¶
Adds a dependency from the owner to each of the specified nodes and optionally modifies the senders and receivers of all affected nodes
- Parameters
owner_senders (
Union
[Operation
,str
]) –Operation
that determines how the original senders ofowner
(the Operation source) combine with the union of all original senders of all subjectnodes
(the Operation comparison) to produce the new set of senders ofowner
aftermodify_graph
owner_receivers (
Union
[Operation
,str
]) –Operation
that determines how the original receivers ofowner
(the Operation source) combine with the union of all original receivers of all subjectnodes
(the Operation comparison) to produce the new set of receivers ofowner
aftermodify_graph
subject_senders (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original senders for each of the subjectnodes
(the Operation source) combine with the original senders ofowner
(the Operation comparison) to produce the new set of senders for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.subject_receivers (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original receivers for each of the subjectnodes
(the Operation source) combine with the original receivers ofowner
(the Operation comparison) to produce the new set of receivers for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.reconnect_non_subject_receivers (
bool
) – If True,modify_graph
will create an edge from all prior senders ofowner
to all receivers ofowner
that are not innodes
, if there is no longer a path from that sender to that receiver. Defaults to True.remove_new_self_referential_edges (
bool
) – If True,modify_graph
will remove any newly-created edges from a node to itself. Defaults to True.prune_cycles (
bool
) – If True,modify_graph
will attempt to prune any newly-created cycles, preferring to remove edges adjacent toowner
that affect the placement ofowner
more than any subjectnode
. Defaults to True.ignore_conflicts (
bool
) – If True, when any two operations give different results for the new senders and receivers of a node inmodify_graph
, an error will not be raised. Defaults to False.
- nodes¶
the subject nodes
- class psyneulink.core.scheduling.condition.BeforePass(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.BeforeTimeStep(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.BeforeTrial(n, time_scale=TimeScale.ENVIRONMENT_SEQUENCE)¶
- Parameters
Satisfied when:
Notes
- class psyneulink.core.scheduling.condition.CompositeCondition(func, *args, **kwargs)¶
- class psyneulink.core.scheduling.condition.Condition(func, *args, **kwargs)¶
Used in conjunction with a
Scheduler
to specify the condition under which a node should be allowed to execute.- Parameters
func (callable) – specifies function to be called when the Condition is evaluated, to determine whether it is currently satisfied.
args (*args) – specifies formal arguments to pass to
func
when the Condition is evaluated.kwargs (**kwargs) – specifies keyword arguments to pass to
func
when the Condition is evaluated.
- is_satisfied(*args, context=None, execution_id=None, **kwargs)¶
the function called to determine satisfaction of this Condition.
- Parameters
args (*args) – specifies additional formal arguments to pass to
func
when the Condition is evaluated. these are appended to the args specified at instantiation of this Conditionkwargs (**kwargs) – specifies additional keyword arguments to pass to
func
when the Condition is evaluated. these are added to the kwargs specified at instantiation of this Condition
- Returns
True - if the Condition is satisfied
False - if the Condition is not satisfied
- class psyneulink.core.scheduling.condition.ConditionBase(_owner=None, **kwargs)¶
Abstract base class for
basic conditions
andgraph structure conditions
- owner¶
the node with which the Condition is associated, and the execution of which it determines.
- Type
Hashable
- exception psyneulink.core.scheduling.condition.ConditionError¶
- class psyneulink.core.scheduling.condition.ConditionSet(*condition_sets, conditions=None)¶
Used in conjunction with a
Scheduler
to store the Conditions associated with a node.- Parameters
*condition_sets – each item is a dict or ConditionSet mapping nodes to one or more conditions to be added via
ConditionSet.add_condition_set
conditions (
Dict
[Hashable
,Union
[ConditionBase
,Iterable
[ConditionBase
]]]) – a dict or ConditionSet mapping nodes to one or more conditions to be added viaConditionSet.add_condition_set
. Maintained for backwards compatibility with versions 1.x
- conditions¶
the key of each entry is a node, and its value is a condition associated with that node. Conditions can be added to the ConditionSet using the ConditionSet’s
add_condition
method.- Type
Dict[Hashable: Union[ConditionBase, Iterable[ConditionBase]]]
- conditions_basic¶
a dict mapping nodes to their single
basic Conditions
- Type
Dict[Hashable:
Condition
]
- conditions_structural¶
a dict mapping nodes to their
graph structure Conditions
- Type
Dict[Hashable: List[
GraphStructureCondition
]]
- structural_condition_order¶
a list storing all
GraphStructureCondition
s in this ConditionSet in the order in which they were added (and will be applied to a Scheduler)- Type
List[
GraphStructureCondition
]
- add_condition(owner, condition)¶
Adds a
basic
orgraph structure
Condition to the ConditionSet.If condition is basic, it will overwrite the current basic Condition for owner, if present. If you want to add multiple basic Conditions to a single owner, instead add a single Composite Condition to accurately specify the desired behavior.
- Parameters
owner (node) – specifies the node with which the condition should be associated. condition will govern the execution behavior of owner
condition (ConditionBase) – specifies the condition associated with owner to be added to the ConditionSet.
- remove_condition(owner_or_condition)¶
Removes the condition specified as or owned by owner_or_condition.
- Parameters
owner_or_condition (Union[Hashable,
ConditionBase
]) – Either a condition or the owner of a condition- Return type
Optional
[ConditionBase
]- Returns
The condition removed, or None if no condition removed
- Raises
when owner_or_condition is an owner and it owns multiple conditions - when owner_or_condition is a condition and its owner is None
- add_condition_set(conditions)¶
Adds a set of
basic
orgraph structure
Conditions (in the form of a dict or another ConditionSet) to the ConditionSet.Any basic Condition added here will overwrite the current basic Condition for a given owner, if present. If you want to add multiple basic Conditions to a single owner, instead add a single Composite Condition to accurately specify the desired behavior.
- Parameters
conditions (
Union
[ConditionSet
,Dict
[Hashable
,Union
[ConditionBase
,Iterable
[ConditionBase
]]]]) –specifies collection of Conditions to be added to this ConditionSet,
- if a dict is provided:
each entry should map an owner node (the node whose execution behavior will be governed) to a
Condition
orGraphStructureCondition
, or an iterable of them.
- property conditions¶
Returns the Conditions contained within this ConditionSet
- Returns
Union[
ConditionBase
, List[ConditionBase
]]]: a dictionary mapping owners to their conditions. The value for an owner will be a list if there is more than one condition for an owner- Return type
dict[node
Note
This property maintains compatibility for v1.x. Prefer the
conditions_basic
andconditions_structural
attributes for new code.
- class psyneulink.core.scheduling.condition.CustomGraphStructureCondition(process_graph_function, **kwargs)¶
Applies a user-defined function to a graph
- Parameters
process_graph_function (Callable) – a function taking an optional ‘self’ argument (as the first argument, if present), and a graph dependency dictionary
kwargs (**kwargs) – optional arguments to be stored as attributes
- class psyneulink.core.scheduling.condition.EveryNCalls(dependency, n)¶
- Parameters
dependency (node) – the node on which the Condition depends
n (int) – the frequency of executions of dependency at which the Condition is satisfied
Satisfied when:
the node specified in dependency has executed at least n times since the last time the Condition’s owner executed.
Notes
scheduler’s count of each other node that is “useable” by the node is reset to 0 when the node runs
- class psyneulink.core.scheduling.condition.EveryNPasses(n, time_scale=TimeScale.ENVIRONMENT_STATE_UPDATE)¶
- Parameters
Satisfied when:
- class psyneulink.core.scheduling.condition.GraphStructureCondition(_owner=None, **kwargs)¶
Abstract base class for graph structure conditions
- Subclasses must implement:
_process
- class psyneulink.core.scheduling.condition.JustRan(dependency)¶
- Parameters
dependency (node) – the node on which the Condition depends
Satisfied when:
the node specified in dependency executed in the previous
TIME_STEP
.
Notes
This Condition can transcend divisions between
TimeScales
. For example, if A runs in the finalTIME_STEP
of anTRIAL
, JustRan(A) is satisfied at the beginning of the nextTRIAL
.
- class psyneulink.core.scheduling.condition.Never¶
- Parameters
none –
Satisfied when:
never satisfied.
- class psyneulink.core.scheduling.condition.Not(condition)¶
-
Satisfied when:
condition is not satisfied.
- class psyneulink.core.scheduling.condition.NWhen(condition, n=1)¶
- Parameters
Satisfied when:
the first n times condition is satisfied upon evaluation
- class psyneulink.core.scheduling.condition.Operation(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)¶
Used in conjunction with
GraphStructureCondition
to indicate how a set of source nodes (S below) should be combined with a set of comparison nodes (C below) to produce a result set. Many Operations correspond to standard set operations.Each enum item can be called with a source set and comparison set as arguments to produce the result set.
- KEEP¶
Returns S
- REPLACE¶
Returns C
- DISCARD¶
Returns the empty set
- INTERSECTION¶
Returns the set of items that are in both S and C
- UNION¶
Returns the set of items in either S or C
- MERGE¶
Returns the set of items in either S or C
- DIFFERENCE¶
Returns the set of items in S but not C
- INVERSE_DIFFERENCE¶
Returns the set of items in C but not S
- SYMMETRIC_DIFFERENCE¶
Returns the set of items that are in one of S or C but not both
- class psyneulink.core.scheduling.condition.Or(*args, **dependencies)¶
- Parameters
args – one or more Conditions
Satisfied when:
one or more of the Conditions in args is satisfied.
Notes
To initialize with a list (for example):
conditions = [AfterNCalls(node, 5) for node in node_list]
unpack the list to supply its members as args:
composite_condition = Any(*conditions)
- class psyneulink.core.scheduling.condition.RemoveEdgeFrom(*nodes, **kwargs)¶
Removes an edge from
RemoveEdgeFrom.node
toRemoveEdgeFrom.owner
- node¶
the subject node
- class psyneulink.core.scheduling.condition.Threshold(dependency, parameter, threshold, comparator, indices=None, atol=0, rtol=0)¶
- dependency¶
the node on which the Condition depends
- parameter¶
the name of the parameter of dependency whose value is to be compared to threshold
- threshold¶
the fixed value compared to the value of the parameter
- comparator¶
the string comparison operator determining the direction or type of comparison of the value of the parameter relative to threshold
- indices¶
if specified, a series of indices that reach the desired number given an iterable value for parameter
- atol¶
absolute tolerance for the comparison
- rtol¶
relative tolerance (to threshold) for the comparison
Satisfied when:
The comparison between the value of the parameter and threshold using comparator is true. If comparator is an equality (==, !=), the comparison will be considered equal within tolerances atol and rtol.
Notes
The comparison must be done with scalars. If the value of parameter contains more than one item, indices must be specified.
- class psyneulink.core.scheduling.condition.TimeInterval(repeat=None, start=None, end=None, unit=<Unit('millisecond')>, start_inclusive=True, end_inclusive=True)¶
-
- start¶
the time at/after which this condition can be satisfied
- end¶
the time at/fter which this condition can be satisfied
- unit¶
the
pint.Unit
to use for scalar values of repeat, start, and end
- start_inclusive¶
if True, start allows satisfaction exactly at the time corresponding to start. if False, satisfaction can occur only after start
- end_inclusive¶
if True, end allows satisfaction exactly until the time corresponding to end. if False, satisfaction can occur only before end
Satisfied when:
Every repeat units of time at/after start and before/through end
Notes
Using a
TimeInterval
as a termination Condition may result in unexpected behavior. The user may be inclined to create TimeInterval(end=x) to terminate at time x, but this will do the opposite and be true only and always until time x, terminating at any time before x. If in doubt, useTimeTermination
instead.If the scheduler is not set to
exact_time_mode = True
, start_inclusive and end_inclusive may not behave as expected. See Exact Time Mode for more info.
- class psyneulink.core.scheduling.condition.TimeTermination(t, inclusive=True, unit=<Unit('millisecond')>)¶
- t¶
the time at/after which this condition is satisfied
- unit¶
the
pint.Unit
to use for scalar values of t, start, and end
- start_inclusive¶
if True, the condition is satisfied exactly at the time corresponding to t. if False, satisfaction can occur only after t
Satisfied when:
At/After time t
- psyneulink.core.scheduling.condition.When¶
- class psyneulink.core.scheduling.condition.WhenFinished(dependency)¶
- Parameters
dependency (node) – the node on which the Condition depends
Satisfied when:
the
is_finished
methods of the node specified in dependencies returnsTrue
.
Notes
This is a dynamic Condition: Each node is responsible for managing its finished status on its own, which can occur independently of the execution of other nodes. Therefore the satisfaction of this Condition) can vary arbitrarily in time.
The is_finished method is called with
execution_id
as its sole positional argument
- class psyneulink.core.scheduling.condition.WhenFinishedAll(*dependencies)¶
- Parameters
*nodes (nodes) – zero or more nodes on which the Condition depends
Satisfied when:
the
is_finished
methods of all nodes specified in dependencies returnTrue
.
Notes
This is a convenience class; WhenFinishedAny(A, B, C) is equivalent to All(WhenFinished(A), WhenFinished(B), WhenFinished(C)). If no nodes are specified, the condition will default to checking all of scheduler’s nodes.
This is a dynamic Condition: Each node is responsible for managing its finished status on its own, which can occur independently of the execution of other nodes. Therefore the satisfaction of this Condition) can vary arbitrarily in time.
The is_finished method is called with
execution_id
as its sole positional argument
- class psyneulink.core.scheduling.condition.WhenFinishedAny(*dependencies)¶
- Parameters
*nodes (nodes) – zero or more nodes on which the Condition depends
Satisfied when:
the
is_finished
methods of any nodes specified in dependencies returnsTrue
.
Notes
This is a convenience class; WhenFinishedAny(A, B, C) is equivalent to Any(WhenFinished(A), WhenFinished(B), WhenFinished(C)). If no nodes are specified, the condition will default to checking all of scheduler’s nodes.
This is a dynamic Condition: Each node is responsible for managing its finished status on its own, which can occur independently of the execution of other nodes. Therefore the satisfaction of this Condition) can vary arbitrarily in time.
The is_finished method is called with
execution_id
as its sole positional argument
- class psyneulink.core.scheduling.condition.While(func, *args, **kwargs)¶
Used in conjunction with a
Scheduler
to specify the condition under which a node should be allowed to execute.- Parameters
func (callable) – specifies function to be called when the Condition is evaluated, to determine whether it is currently satisfied.
args (*args) – specifies formal arguments to pass to
func
when the Condition is evaluated.kwargs (**kwargs) – specifies keyword arguments to pass to
func
when the Condition is evaluated.
- class psyneulink.core.scheduling.condition.WhileNot(func, *args, **kwargs)¶
- Parameters
func – callable specifies function to be called when the Condition is evaluated, to determine whether it is currently satisfied.
args – *args specifies formal arguments to pass to
func
when the Condition is evaluated.kwargs – **kwargs specifies keyword arguments to pass to
func
when the Condition is evaluated.
Satisfied when:
func is False
- class psyneulink.core.scheduling.condition.WithNode(node, owner_receivers=Operation.KEEP, subject_receivers=Operation.KEEP, reconnect_non_subject_receivers=True, remove_new_self_referential_edges=True, prune_cycles=True, ignore_conflicts=False)¶
Adds a dependency from each of the senders of both the owner and the specified node to both the owner and the specified node, and optionally modifies the receivers of both
- Parameters
owner_senders –
Operation
that determines how the original senders ofowner
(the Operation source) combine with the union of all original senders of all subjectnodes
(the Operation comparison) to produce the new set of senders ofowner
aftermodify_graph
owner_receivers (
Union
[Operation
,str
]) –Operation
that determines how the original receivers ofowner
(the Operation source) combine with the union of all original receivers of all subjectnodes
(the Operation comparison) to produce the new set of receivers ofowner
aftermodify_graph
subject_senders –
Operation
that determines how the original senders for each of the subjectnodes
(the Operation source) combine with the original senders ofowner
(the Operation comparison) to produce the new set of senders for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.subject_receivers (
Union
[Operation
,str
,Dict
[Hashable
,Union
[Operation
,str
]]]) –Operation
that determines how the original receivers for each of the subjectnodes
(the Operation source) combine with the original receivers ofowner
(the Operation comparison) to produce the new set of receivers for the subjectnodes
aftermodify_graph
. Operations are applied individually to each subject node, and this argument may also be specified as a dictionary mapping nodes to separate operations.reconnect_non_subject_receivers (
bool
) – If True,modify_graph
will create an edge from all prior senders ofowner
to all receivers ofowner
that are not innodes
, if there is no longer a path from that sender to that receiver. Defaults to True.remove_new_self_referential_edges (
bool
) – If True,modify_graph
will remove any newly-created edges from a node to itself. Defaults to True.prune_cycles (
bool
) – If True,modify_graph
will attempt to prune any newly-created cycles, preferring to remove edges adjacent toowner
that affect the placement ofowner
more than any subjectnode
. Defaults to True.ignore_conflicts (
bool
) – If True, when any two operations give different results for the new senders and receivers of a node inmodify_graph
, an error will not be raised. Defaults to False.
- nodes¶
the subject nodes
- node¶
the subject node