Processes¶
Build Nengo Processes into the TensorFlow graph.
-
class
nengo_dl.process_builders.
SimProcessBuilder
(ops, signals, rng)[source]¶ Builds a group of
SimProcess
operators.Calls the appropriate sub-build class for the different process types.
Attributes: - TF_PROCESS_IMPL : list of
Process
the process types that have a custom implementation
-
build_step
(signals)[source]¶ This function builds whatever computations need to be executed in each simulation timestep.
Parameters: - signals :
signals.SignalDict
mapping from
Signal
totf.Tensor
(updated by operations)
Returns: - list of ``tf.Tensor``, optional
if not None, the returned tensors correspond to outputs with possible side-effects, i.e. computations that need to be executed in the tensorflow graph even if their output doesn’t appear to be used
- signals :
- TF_PROCESS_IMPL : list of
-
class
nengo_dl.process_builders.
GenericProcessBuilder
(ops, signals, rng)[source]¶ Builds all process types for which there is no custom Tensorflow implementation.
Notes
These will be executed as native Python functions, requiring execution to move in and out of Tensorflow. This can significantly slow down the simulation, so any performance-critical processes should consider adding a custom Tensorflow implementation for their type instead.
-
class
nengo_dl.process_builders.
LowpassBuilder
(ops, signals)[source]¶ Build a group of
Lowpass
synapse operators.
-
class
nengo_dl.process_builders.
LinearFilterBuilder
(ops, signals)[source]¶ Build a group of
LinearFilter
synapse operators.