Lines Matching refs:GetInput
221 input_ = GetInput(operation, operands, kInputTensor); in QuantizedLSTMCell()
223 inputToInputWeights_ = GetInput(operation, operands, kInputToInputWeightsTensor); in QuantizedLSTMCell()
224 inputToForgetWeights_ = GetInput(operation, operands, kInputToForgetWeightsTensor); in QuantizedLSTMCell()
225 inputToCellWeights_ = GetInput(operation, operands, kInputToCellWeightsTensor); in QuantizedLSTMCell()
226 inputToOutputWeights_ = GetInput(operation, operands, kInputToOutputWeightsTensor); in QuantizedLSTMCell()
228 recurrentToInputWeights_ = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in QuantizedLSTMCell()
229 recurrentToForgetWeights_ = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in QuantizedLSTMCell()
230 recurrentToCellWeights_ = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in QuantizedLSTMCell()
231 recurrentToOutputWeights_ = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in QuantizedLSTMCell()
233 inputGateBias_ = GetInput(operation, operands, kInputGateBiasTensor); in QuantizedLSTMCell()
234 forgetGateBias_ = GetInput(operation, operands, kForgetGateBiasTensor); in QuantizedLSTMCell()
235 cellGateBias_ = GetInput(operation, operands, kCellGateBiasTensor); in QuantizedLSTMCell()
236 outputGateBias_ = GetInput(operation, operands, kOutputGateBiasTensor); in QuantizedLSTMCell()
238 prevCellState_ = GetInput(operation, operands, kPrevCellStateTensor); in QuantizedLSTMCell()
239 prevOutput_ = GetInput(operation, operands, kPrevOutputTensor); in QuantizedLSTMCell()
247 auto input = GetInput(operation, operands, kInputTensor); in prepare()
254 auto prevOutput = GetInput(operation, operands, kPrevOutputTensor); in prepare()
261 auto inputToInputWeights = GetInput(operation, operands, kInputToInputWeightsTensor); in prepare()
275 auto inputToForgetWeights = GetInput(operation, operands, kInputToForgetWeightsTensor); in prepare()
276 auto inputToCellWeights = GetInput(operation, operands, kInputToCellWeightsTensor); in prepare()
277 auto inputToOutputWeights = GetInput(operation, operands, kInputToOutputWeightsTensor); in prepare()
283 auto recurrentToInputWeights = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in prepare()
284 auto recurrentToForgetWeights = GetInput(operation, operands, kRecurrentToForgetWeightsTensor); in prepare()
285 auto recurrentToCellWeights = GetInput(operation, operands, kRecurrentToCellWeightsTensor); in prepare()
286 auto recurrentToOutputWeights = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in prepare()
292 auto inputGateBias = GetInput(operation, operands, kInputGateBiasTensor); in prepare()
306 auto forgetGateBias = GetInput(operation, operands, kForgetGateBiasTensor); in prepare()
307 auto cellGateBias = GetInput(operation, operands, kCellGateBiasTensor); in prepare()
308 auto outputGateBias = GetInput(operation, operands, kOutputGateBiasTensor); in prepare()
314 auto prevCellState = GetInput(operation, operands, kPrevCellStateTensor); in prepare()