Engine (original) (raw)

Back to top

Edit this page

Toggle table of contents sidebar

class composer.Engine(state, logger, algorithm_passes=None)[source]#

Coordinator for running algorithms and resolving ordering conflicts among them for composition.

Parameters

close()[source]#

Shutdown the engine.

As part of the shutdown procedure, Callback.close() and Callback.post_close() are invoked for each callback. Note that Callback.post_close() is invoked only for callbacks that did not raise an exception during Callback.close().

This method does not re-raise any exceptions from Callback.close() and Callback.post_close(). Instead, these exceptions are logged as errors.

register_pass(algorithm_pass, index=- 1)[source]#

Registers an algorithm pass with the Engine.

Parameters

run_event(event)[source]#

Runs the sequence of algorithms and callbacks (see Callback).

Filters algorithms by calling each one’s Algorithm.match() method, internally checks for conflicting algorithms, then runs each algorithm’s Algorithm.apply() method to make in-place changes to thestate.

The default order of execution for algorithms is determined by the provided list. However, Engine makes changes to this order internally to resolve ordering conflicts.

Returns Traces of the execution, a dictionary with keys formatted as <algorithm_name>/<event> (e.g.,Blurpool/INIT), and values are an instance of Trace.

Callbacks are always run after algorithms and do not return a trace.

This method can be called with either the Event enum member values or a string of the event name.

Examples

engine = Engine(state, logger) engine.run_event(Event.BEFORE_LOSS) OrderedDict()

calling with a string of the event name also works

engine.run_event('before_loss') OrderedDict()

Parameters

event (Event | str) – The current Event. It can be the enum member values or a string with the event value.

Returns

traces (Traces) – Ordered dictionary of trace for each algorithm.

run_marker_only_event(event)[source]#

Runs the marker for an event if the profiler is enabled.

This is primarily used to complete the dataloader marker at the end of the dataloader. In this scenario, the dataloader marker has started from Event.BEFORE_DATALOADER, but Event.AFTER_DATALOADER cannot be called as no batch was yielded from the dataloader.

Parameters

event (Event | str) – The current Event. It can be the enum member values or a string with the event value.