Gru

#include <popnn/Gru.hpp>

Support for gated recurrent units.

namespace popnn

Functions used in neural networks.

namespace gru

Functions

const std::vector<BasicGruCellUnit> getDefaultBasicGruCellOrder()

Get the default order of the gates in a basic GRU cell.

The default order is: [Reset gate, Update gate, Candidate].

uint64_t getBasicGruCellFwdFlops(const GruParams &params)
uint64_t getBasicGruCellBwdFlops(const GruParams &params)
uint64_t getBasicGruCellWuFlops(const GruParams &params)
poplar::Tensor createInput(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Create an input tensor of shape [numSteps, batchSize, inputSize], that is optimally mapped to multiply the whole input sequence in a single matrix multiply operation.

GRU options

  • availableMemoryProportion Decimal between 0 and 1 (inclusive).

    See poplin::createWeights() for more information.

  • inferenceOnly (true, false) [=true]

    Sets convolution pass to INFERENCE_FWD if true; TRAINING_FWD otherwise. See the pass option in poplin::createWeights().

  • partialsType (half, float) [=float]

    See poplin::createWeights() for more information.

Parameters
  • graph – Graph object to add the tensor to.

  • params – The GRU parameters.

  • debugContext – Optional debug information.

  • options – Any implementation/debug options for the GRU.

  • planningCache – A poplin matrix multiply planning cache.

Returns

A tensor created in the graph of shape [timeSteps, batchSize, inputSize].

poplar::Tensor createInitialState(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options, poplin::PlanningCache *cache)
std::pair<poplar::Tensor, poplar::Tensor> createWeightsKernel(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Create the weights kernel used to weight the input and output of a GRU.

Returns the inputWeights and outputWeights.

poplar::Tensor createWeightsBiases(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Create the weights biases.

GruWeights createWeights(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Create the weights (both kernel and biases) used to weight the input and output of a GRU.

poplar::Tensor createAttention(poplar::Graph &graph, const GruParams &params, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options = {})

Create an attention tensor for AUGRU.

poplar::Tensor gruFwd(poplar::Graph &graph, const GruParams &params, const poplar::Tensor &stateInit, const poplar::Tensor &in, const GruWeights &weights, poplar::Tensor *intermediates, poplar::program::Sequence &fwdProg, const poplar::DebugContext &debugContext = {}, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Calculate the result of applying a GRU across a sequence.

The formulas for a GRU cell are:

  • \(r_t = \operatorname{sigmoid}(w_r \times x_t + u_r \times h_{t-1} + b_r)\)

  • \(u_t = \operatorname{sigmoid}(w_u \times x_t + u_u \times h_{t-1} + b_u)\)

  • \(c_t = \tanh(w_c \times x_t + u_c \times (r_t \circ h_{t-1}) + b_c)\)

  • \(h_t = u_t \circ h_{t-1} + (1 - u_t) \circ c_t\)

Where:

  • \(\times\) is matrix multiplication

  • \(\circ\) is Hadamard product

The GRU is run for rnn::RnnParams.maxTimeSteps, each with a batch of size batchSize and input size inputSize and output size outputSize. The total number of units within each GRU cell is BASIC_GRU_CELL_NUM_UNITS.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • stateInit – Initial state for the GRU.

  • in – The input tensor to the GRU of dimension [timeSteps, batchSize, inputSize].

  • weights – The GRU weights structure.

  • intermediates[out] Intermediate results that are retained in the forward pass of training for use in the backward pass. It includes the data for reset gate, update gate, candidate, and output if outputFullSequence is false. This argument should be set to null if we are only doing inference.

  • fwdProg – Program sequence.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The output of the GRU. Depending on the outputFullSequence parameter the output tensor is either the output of the last timestep in the shape [batchSize, outputSize] or it is the sequence of outputs for every timestep in the shape [timeSteps, batchSize, outputSize].

poplar::Tensor gruFwd(poplar::Graph &graph, const GruParams &params, const poplar::Tensor &stateInit, const poplar::Tensor &in, const poplar::Tensor &realTimeSteps, const GruWeights &weights, poplar::Tensor *intermediates, poplar::program::Sequence &fwdProg, const poplar::DebugContext &debugContext = {}, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Calculate the result of applying a GRU across a sequence.

Deprecated:

Use previously defined gruFwd() instead.

The formulas for a GRU cell are:

  • \(r_t = \operatorname{sigmoid}(w_r \times x_t + u_r \times h_{t-1} + b_r)\)

  • \(u_t = \operatorname{sigmoid}(w_u \times x_t + u_u \times h_{t-1} + b_u)\)

  • \(c_t = \tanh(w_c \times x_t + u_c \times (r_t \circ h_{t-1}) + b_c)\)

  • \(h_t = u_t \circ h_{t-1} + (1 - u_t) \circ c_t\)

Where:

  • \(\times\) is matrix multiplication

  • \(\circ\) is Hadamard product

The GRU is run for rnn::RnnParams.maxTimeSteps, each with a batch of size batchSize and input size inputSize and output size outputSize. The total number of units within each GRU cell is BASIC_GRU_CELL_NUM_UNITS.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • stateInit – Initial state for the GRU.

  • in – The input tensor to the GRU of dimension [timeSteps, batchSize, inputSize].

  • realTimeSteps – A tensor containing real timesteps for each sequence, of shape [batch].

  • weights – The GRU weights structure.

  • intermediates[out] Intermediate results that are retained in the forward pass of training for use in the backward pass. It includes the data for reset gate, update gate, candidate, and output if outputFullSequence is false. This argument should be set to null if we are only doing inference.

  • fwdProg – Program sequence.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The output of the GRU. Depending on the outputFullSequence parameter the output tensor is either the output of the last timestep in the shape [batchSize, outputSize] or it is the sequence of outputs for every timestep in the shape [timeSteps, batchSize, outputSize].

poplar::Tensor auGruFwd(poplar::Graph &graph, const GruParams &params, const poplar::Tensor &stateInit, const poplar::Tensor &in, const GruWeights &weights, poplar::Tensor *intermediates, const poplar::Tensor &attScores, poplar::program::Sequence &fwdProg, const poplar::DebugContext &debugContext = {}, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Calculate the result of applying an AUGRU across a sequence.

The formulas for a AUGRU cell are:

  • \(r_t = sigmod(w_r \times x_t + u_r \times h_{t-1} + b_r)\)

  • \(u_t = sigmod(w_u \times x_t + u_u \times h_{t-1} + b_u)\)

  • \(c_t = tanh(w_c \times x_t + u_c \times (r_t \circ h_{t-1}) + b_c)\)

  • \(u_t = (1 - a_t) \times u_t\)

  • \(h_t = u_t \circ h_{t-1} + (1 - u_t) \circ c_t\)

Where:

  • \(\times\) is matrix multiplication

  • \(\circ\) is Hadamard product

  • \(a_t\) is a scalar

The AUGRU is run for rnn::RnnParams.maxTimeSteps, each with a batch of size batchSize and input size inputSize and output size outputSize. The total number of units within each AUGRU cell is BASIC_GRU_CELL_NUM_UNITS.

Parameters
  • graph – Graph to which the AUGRU cell belongs.

  • params – The parameters of the AUGRU.

  • stateInit – Initial state for the AUGRU.

  • in – The input tensor to the AUGRU of dimension [timeSteps, batchSize, inputSize].

  • weights – The AUGRU weights structure.

  • intermediates[out] Intermediate results that are retained in the forward pass of training for use in the backward pass. It includes the data for reset gate, update gate, candidate, and output if outputFullSequence is false. This argument should be set to null if we are only doing inference.

  • attScores – Attention for each timestep.

  • fwdProg – Program sequence.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The output of the GRU. Depending on the outputFullSequence parameter the output tensor is either the output of the last timestep in the shape [batchSize, outputSize] or it is the sequence of outputs for every timestep in the shape [timeSteps, batchSize, outputSize].

poplar::Tensor auGruFwd(poplar::Graph &graph, const GruParams &params, const poplar::Tensor &stateInit, const poplar::Tensor &in, const poplar::Tensor &realTimeSteps, const GruWeights &weights, poplar::Tensor *intermediates, const poplar::Tensor &attScores, poplar::program::Sequence &fwdProg, const poplar::DebugContext &debugContext = {}, const poplar::OptionFlags &options = {}, poplin::PlanningCache *planningCache = nullptr)

Calculate the result of applying an AUGRU across a sequence.

Deprecated:

Use previously defined auGruFwd() instead.

The formulas for a AUGRU cell are:

  • \(r_t = sigmod(w_r \times x_t + u_r \times h_{t-1} + b_r)\)

  • \(u_t = sigmod(w_u \times x_t + u_u \times h_{t-1} + b_u)\)

  • \(c_t = tanh(w_c \times x_t + u_c \times (r_t \circ h_{t-1}) + b_c)\)

  • \(u_t = (1 - a_t) \times u_t\)

  • \(h_t = u_t \circ h_{t-1} + (1 - u_t) \circ c_t\)

Where:

  • \(\times\) is matrix multiplication

  • \(\circ\) is Hadamard product

  • \(a_t\) is a scalar

The AUGRU is run for rnn::RnnParams.maxTimeSteps, each with a batch of size batchSize and input size inputSize and output size outputSize. The total number of units within each AUGRU cell is BASIC_GRU_CELL_NUM_UNITS.

Parameters
  • graph – Graph to which the AUGRU cell belongs.

  • params – The parameters of the AUGRU.

  • stateInit – Initial state for the AUGRU.

  • in – The input tensor to the AUGRU of dimension [timeSteps, batchSize, inputSize].

  • realTimeSteps – A tensor containing real timesteps for each sequence, of shape [batch].

  • weights – The AUGRU weights structure.

  • intermediates[out] Intermediate results that are retained in the forward pass of training for use in the backward pass. It includes the data for reset gate, update gate, candidate, and output if outputFullSequence is false. This argument should be set to null if we are only doing inference.

  • attScores – Attention for each timestep.

  • fwdProg – Program sequence.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The output of the GRU. Depending on the outputFullSequence parameter the output tensor is either the output of the last timestep in the shape [batchSize, outputSize] or it is the sequence of outputs for every timestep in the shape [timeSteps, batchSize, outputSize].

poplar::Tensor gruBwd(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediatesSeq, const GruWeights &weights, const poplar::Tensor &fwdInputSeq, const poplar::Tensor &fwdOutput, const poplar::Tensor &gradLayerNext, poplar::Tensor *inputGrad, poplar::Tensor *bwdIntermediates, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run GRU backward pass.

The backward pass executes in reverse order compared to the forward pass. If the forward steps for a GRU layer are sf = {0, 1, 2, …, S - 1} then the backward steps run for sb = {S - 1, S - 2, …. , 1, 0}.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediatesSeq – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • fwdInputSeq – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • fwdOutput – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • gradLayerNext – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • *bwdIntermediates[out] Intermediates gradients that are retained in the backward pass of training for use in the weight update. It includes the derivatives for reset gate, update gate, and candidate. This argument should be set to null if you do not need to calculate weight deltas.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor gruBwd(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediatesSeq, const GruWeights &weights, const poplar::Tensor &fwdInputSeq, const poplar::Tensor &realTimeSteps, const poplar::Tensor &fwdOutput, const poplar::Tensor &gradLayerNext, poplar::Tensor *inputGrad, poplar::Tensor *bwdIntermediates, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run GRU backward pass.

Deprecated:

Use previously defined popnn::gruBwd() instead.

The backward pass executes in reverse order compared to the forward pass. If the forward steps for a GRU layer are sf = {0, 1, 2, …, S - 1} then the backward steps run for sb = {S - 1, S - 2, …. , 1, 0}.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediatesSeq – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • realTimeSteps – A tensor containing real timesteps for each sequence, with shape [batch].

  • fwdInputSeq – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • fwdOutput – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • gradLayerNext – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • *bwdIntermediates[out] Intermediates gradients that are retained in the backward pass of training for use in the weight update. It includes the derivatives for reset gate, update gate, and candidate. This argument should be set to null if you do not need to calculate weight deltas.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor auGruBwd(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediatesSeq, const GruWeights &weights, const poplar::Tensor &fwdInputSeq, const poplar::Tensor &fwdOutput, const poplar::Tensor &gradLayerNext, poplar::Tensor *inputGrad, poplar::Tensor *bwdIntermediates, const poplar::Tensor &attentions, poplar::Tensor *attentionsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run AUGRU backward pass.

The backward pass executes in reverse order compared to the forward pass. If the forward steps for an AUGRU layer are sf = {0, 1, 2, …, S - 1} then the backward steps run for sb = {S - 1, S - 2, …. , 1, 0}.

Parameters
  • graph – Graph to which the AUGRU cell belongs.

  • params – The parameters of the AUGRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediatesSeq – Intermediates results from the forward pass.

  • weights – The AUGRU weights structure.

  • fwdInputSeq – The input tensor to the AUGRU, of shape [timeSteps, batchSize, inputSize]

  • fwdOutput – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • gradLayerNext – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • *bwdIntermediates[out] Intermediates gradients that are retained in the backward pass of training for use in the weight update. It includes the derivatives for reset gate, update gate, and candidate. This argument should be set to null if you do not need to calculate weight deltas.

  • attentions – Attentions for each timestep.

  • attentionsGrad[out] Gradients for attentions.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor auGruBwd(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediatesSeq, const GruWeights &weights, const poplar::Tensor &fwdInputSeq, const poplar::Tensor &realTimeSteps, const poplar::Tensor &fwdOutput, const poplar::Tensor &gradLayerNext, poplar::Tensor *inputGrad, poplar::Tensor *bwdIntermediates, const poplar::Tensor &attentions, poplar::Tensor *attentionsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run AUGRU backward pass.

Deprecated:

Use previously defined auGruBwd() instead.

The backward pass executes in reverse order compared to the forward pass. If the forward steps for an AUGRU layer are sf = {0, 1, 2, …, S - 1} then the backward steps run for sb = {S - 1, S - 2, …. , 1, 0}.

Parameters
  • graph – Graph to which the AUGRU cell belongs.

  • params – The parameters of the AUGRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediatesSeq – Intermediates results from the forward pass.

  • weights – The AUGRU weights structure.

  • fwdInputSeq – The input tensor to the AUGRU, of shape [timeSteps, batchSize, inputSize]

  • realTimeSteps – A tensor containing real timesteps for each sequence, of shape [batch].

  • fwdOutput – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • gradLayerNext – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • *bwdIntermediates[out] Intermediates gradients that are retained in the backward pass of training for use in the weight update. It includes the derivatives for reset gate, update gate, and candidate. This argument should be set to null if you do not need to calculate weight deltas.

  • attentions – Attentions for each timestep.

  • attentionsGrad[out] Gradients for attentions.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

GruWeights gruWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const poplar::Tensor &bwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &output, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a standalone weight update pass.

Takes intermediates and gradients from the backward pass and calculates and returns weight deltas.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence to add operations to.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediate results from the forward pass.

  • bwdIntermediates – Intermediate results from the backward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

A set of weight gradients to sum with weights.

GruWeights auGruWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const poplar::Tensor &bwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &output, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a standalone weight update pass.

Takes intermediates and gradients from the backward pass and calculates and returns weight deltas.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence to add operations to.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediate results from the forward pass.

  • bwdIntermediates – Intermediate results from the backward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

A set of weight gradients to sum with weights.

poplar::Tensor gruBwdWithWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &output, const poplar::Tensor &outputGrad, poplar::Tensor *inputGrad, GruWeights &weightsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a combined GRU backward and weight update pass.

Use this combined backward and weight update pass in preference to gruBwd() and gruWU() separately in order to allow the most efficient implementation to be chosen if you do not need to split the operation.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • outputGrad – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • weightsGrad – A set of weight deltas to sum with weights.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor gruBwdWithWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &realTimeSteps, const poplar::Tensor &output, const poplar::Tensor &outputGrad, poplar::Tensor *inputGrad, GruWeights &weightsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a combined GRU backward and weight update pass.

Deprecated:

Use previously defined gruBwdWithWU() instead.

Use this combined backward and weight update pass in preference to gruBwd() and gruWU() separately in order to allow the most efficient implementation to be chosen if you do not need to split the operation.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • realTimeSteps – A tensor containing real timesteps for each sequence, of shape [batch].

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • outputGrad – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • weightsGrad – A set of weight deltas to sum with weights.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor auGruBwdWithWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &output, const poplar::Tensor &outputGrad, poplar::Tensor *inputGrad, GruWeights &weightsGrad, const poplar::Tensor &attentions, poplar::Tensor *attentionsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a combined AUGRU backward and weight update pass.

Use this combined backward and weight update pass in preference to auGruBwd() and auGruWU() separately in order to allow the most efficient implementation to be chosen if you do not need to split the operation.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize]

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • outputGrad – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • weightsGrad – A set of weight deltas to sum with weights.

  • attentions – Attention for each timestep.

  • attentionsGrad[out] Gradients for attentions.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

poplar::Tensor auGruBwdWithWU(poplar::Graph &graph, const GruParams &params, poplar::program::Sequence &prog, const poplar::Tensor &fwdOutputInit, const poplar::Tensor &fwdIntermediates, const GruWeights &weights, const poplar::Tensor &input, const poplar::Tensor &realTimeSteps, const poplar::Tensor &output, const poplar::Tensor &outputGrad, poplar::Tensor *inputGrad, GruWeights &weightsGrad, const poplar::Tensor &attentions, poplar::Tensor *attentionsGrad, const poplar::DebugContext &debugContext, const poplar::OptionFlags &options_, poplin::PlanningCache *planningCache)

Run a combined AUGRU backward and weight update pass.

Deprecated:

Use previously defined auGruBwdWithWU() instead.

Use this combined backward and weight update pass in preference to auGruBwd() and auGruWU() separately in order to allow the most efficient implementation to be chosen if you do not need to split the operation.

Note: If the timestep limit is variable, the entries above the given time step limit must be explicitly set to zero in fwdIntermediates, in order for the weights to be correctly updated.

Parameters
  • graph – Graph to which the GRU cell belongs.

  • params – The parameters of the GRU.

  • prog – Program sequence.

  • fwdOutputInit – Forward output tensor for initial step.

  • fwdIntermediates – Intermediates results from the forward pass.

  • weights – The GRU weights structure.

  • input – The input tensor to the GRU, of shape [timeSteps, batchSize, inputSize].

  • realTimeSteps – A tensor containing real timesteps for each sequence, of shape [batch].

  • output – The output tensor from the forward pass. Depending on the outputFullSequence parameter this is either the output for the last timestep or it is a sequence of outputs for each timestep.

  • outputGrad – The gradients of the output. Depending on the outputFullSequence parameter this is either the gradient of the output for the last timestep or it is a sequence output gradients for each timestep.

  • *inputGrad[out] The gradients of the inputs - may be null if this information is not required.

  • weightsGrad – A set of weight deltas to sum with weights.

  • attentions – Attention for each timestep.

  • attentionsGrad[out] Gradients for attentions.

  • debugContext – Optional debug information.

  • options – GRU implementation options. See createInput().

  • planningCache – The matmul planning cache.

Returns

The gradient of the initial output.

struct GruParams
#include <Gru.hpp>

Structure representing the parameters of the GRU.

Public Functions

GruParams(poplar::Type dataType, std::size_t batchSize, std::size_t timeSteps, std::vector<std::size_t> layerSizes, NonLinearityType activation = NonLinearityType::TANH, NonLinearityType recurrentActivation = NonLinearityType::SIGMOID)
GruParams(poplar::Type dataType, std::size_t batchSize, std::size_t maxTimeSteps, const poplar::Tensor &timeSteps, std::vector<std::size_t> layerSizes, NonLinearityType activation = NonLinearityType::TANH, NonLinearityType recurrentActivation = NonLinearityType::SIGMOID)
GruParams(const GruParams &other)

Public Members

rnn::RnnParams rnn
poplar::Type dataType

Deprecated:

Use rnn::RnnParams.dataType instead.

std::size_t batchSize

The batch size.

Deprecated:

Use rnn::RnnParams.batchSize instead.

std::size_t timeSteps

The number of time steps in the sequence of the GRU.

Deprecated:

Use rnn::RnnParams.maxTimeSteps instead.

std::vector<std::size_t> layerSizes

The number of neurons for the input and output layer.

Deprecated:

Use rnn::RnnParams.layerSizes instead.

bool outputFullSequence = true

If true the GRU function returns the entire sequence of outputs, otherwise it returns just the final output.

bool calcInputGradients = true

If this parameter is set to false then the GRU will skip the calculation of the gradients of the inputs.

std::vector<BasicGruCellUnit> cellOrder = getDefaultBasicGruCellOrder()

The weights and biases for all of the layers being processed are concatenated in the outermost dimension of the weights and biases tensors.

This option allows you to specify the order of the gates in that outermost dimension. The default order can be obtained with getDefaultBasicGruCellOrder().

bool resetAfter = false

Controls whether the reset gate is applied before or after the candidate weights and biases.

NonLinearityType activation = NonLinearityType::TANH

Activation function.

NonLinearityType recurrentActivation = NonLinearityType::SIGMOID

Recurrent activation function.

struct GruWeights
#include <Gru.hpp>

Structure holding all the parameters of a GRU cell, or the deltas for those parameters (depending on the context).

Public Members

poplar::Tensor inputWeights
poplar::Tensor outputWeights
poplar::Tensor biases