Lines Matching refs:GetInput
225 input_ = GetInput(operation, operands, kInputTensor); in QuantizedLSTMCell()
227 inputToInputWeights_ = GetInput(operation, operands, kInputToInputWeightsTensor); in QuantizedLSTMCell()
228 inputToForgetWeights_ = GetInput(operation, operands, kInputToForgetWeightsTensor); in QuantizedLSTMCell()
229 inputToCellWeights_ = GetInput(operation, operands, kInputToCellWeightsTensor); in QuantizedLSTMCell()
230 inputToOutputWeights_ = GetInput(operation, operands, kInputToOutputWeightsTensor); in QuantizedLSTMCell()
232 recurrentToInputWeights_ = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in QuantizedLSTMCell()
233 recurrentToForgetWeights_ = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in QuantizedLSTMCell()
234 recurrentToCellWeights_ = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in QuantizedLSTMCell()
235 recurrentToOutputWeights_ = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in QuantizedLSTMCell()
237 inputGateBias_ = GetInput(operation, operands, kInputGateBiasTensor); in QuantizedLSTMCell()
238 forgetGateBias_ = GetInput(operation, operands, kForgetGateBiasTensor); in QuantizedLSTMCell()
239 cellGateBias_ = GetInput(operation, operands, kCellGateBiasTensor); in QuantizedLSTMCell()
240 outputGateBias_ = GetInput(operation, operands, kOutputGateBiasTensor); in QuantizedLSTMCell()
242 prevCellState_ = GetInput(operation, operands, kPrevCellStateTensor); in QuantizedLSTMCell()
243 prevOutput_ = GetInput(operation, operands, kPrevOutputTensor); in QuantizedLSTMCell()
251 auto input = GetInput(operation, operands, kInputTensor); in prepare()
258 auto prevOutput = GetInput(operation, operands, kPrevOutputTensor); in prepare()
265 auto inputToInputWeights = GetInput(operation, operands, kInputToInputWeightsTensor); in prepare()
279 auto inputToForgetWeights = GetInput(operation, operands, kInputToForgetWeightsTensor); in prepare()
280 auto inputToCellWeights = GetInput(operation, operands, kInputToCellWeightsTensor); in prepare()
281 auto inputToOutputWeights = GetInput(operation, operands, kInputToOutputWeightsTensor); in prepare()
287 auto recurrentToInputWeights = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in prepare()
288 auto recurrentToForgetWeights = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in prepare()
289 auto recurrentToCellWeights = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in prepare()
290 auto recurrentToOutputWeights = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in prepare()
296 auto inputGateBias = GetInput(operation, operands, kInputGateBiasTensor); in prepare()
310 auto forgetGateBias = GetInput(operation, operands, kForgetGateBiasTensor); in prepare()
311 auto cellGateBias = GetInput(operation, operands, kCellGateBiasTensor); in prepare()
312 auto outputGateBias = GetInput(operation, operands, kOutputGateBiasTensor); in prepare()
318 auto prevCellState = GetInput(operation, operands, kPrevCellStateTensor); in prepare()