Lines Matching refs:GetInput
224 input_ = GetInput(operation, operands, kInputTensor); in QuantizedLSTMCell()
226 inputToInputWeights_ = GetInput(operation, operands, kInputToInputWeightsTensor); in QuantizedLSTMCell()
227 inputToForgetWeights_ = GetInput(operation, operands, kInputToForgetWeightsTensor); in QuantizedLSTMCell()
228 inputToCellWeights_ = GetInput(operation, operands, kInputToCellWeightsTensor); in QuantizedLSTMCell()
229 inputToOutputWeights_ = GetInput(operation, operands, kInputToOutputWeightsTensor); in QuantizedLSTMCell()
231 recurrentToInputWeights_ = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in QuantizedLSTMCell()
232 recurrentToForgetWeights_ = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in QuantizedLSTMCell()
233 recurrentToCellWeights_ = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in QuantizedLSTMCell()
234 recurrentToOutputWeights_ = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in QuantizedLSTMCell()
236 inputGateBias_ = GetInput(operation, operands, kInputGateBiasTensor); in QuantizedLSTMCell()
237 forgetGateBias_ = GetInput(operation, operands, kForgetGateBiasTensor); in QuantizedLSTMCell()
238 cellGateBias_ = GetInput(operation, operands, kCellGateBiasTensor); in QuantizedLSTMCell()
239 outputGateBias_ = GetInput(operation, operands, kOutputGateBiasTensor); in QuantizedLSTMCell()
241 prevCellState_ = GetInput(operation, operands, kPrevCellStateTensor); in QuantizedLSTMCell()
242 prevOutput_ = GetInput(operation, operands, kPrevOutputTensor); in QuantizedLSTMCell()
250 auto input = GetInput(operation, operands, kInputTensor); in prepare()
257 auto prevOutput = GetInput(operation, operands, kPrevOutputTensor); in prepare()
264 auto inputToInputWeights = GetInput(operation, operands, kInputToInputWeightsTensor); in prepare()
278 auto inputToForgetWeights = GetInput(operation, operands, kInputToForgetWeightsTensor); in prepare()
279 auto inputToCellWeights = GetInput(operation, operands, kInputToCellWeightsTensor); in prepare()
280 auto inputToOutputWeights = GetInput(operation, operands, kInputToOutputWeightsTensor); in prepare()
286 auto recurrentToInputWeights = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in prepare()
287 auto recurrentToForgetWeights = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in prepare()
288 auto recurrentToCellWeights = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in prepare()
289 auto recurrentToOutputWeights = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in prepare()
295 auto inputGateBias = GetInput(operation, operands, kInputGateBiasTensor); in prepare()
309 auto forgetGateBias = GetInput(operation, operands, kForgetGateBiasTensor); in prepare()
310 auto cellGateBias = GetInput(operation, operands, kCellGateBiasTensor); in prepare()
311 auto outputGateBias = GetInput(operation, operands, kOutputGateBiasTensor); in prepare()
317 auto prevCellState = GetInput(operation, operands, kPrevCellStateTensor); in prepare()