Home
last modified time | relevance | path

Searched refs:recurrent_to_output_weights_ (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/modules/NeuralNetworks/common/operations/
H A DLSTM.cpp67 recurrent_to_output_weights_ = GetInput(operation, operands, kRecurrentToOutputWeightsTensor); in LSTMCell()
355 NN_CHECK_EQ(NumDimensions(recurrent_to_output_weights_), 2); in Prepare()
356 NN_CHECK_EQ(SizeOfDimension(recurrent_to_output_weights_, 0), n_cell); in Prepare()
357 const uint32_t n_output = SizeOfDimension(recurrent_to_output_weights_, 1); in Prepare()
363 recurrent_to_cell_weights_, recurrent_to_output_weights_, cell_to_input_weights_, in Prepare()
1002 GetBuffer<const float>(recurrent_to_output_weights_), in Eval()
1003 recurrent_to_output_weights_->shape(), in Eval()
1037 GetBuffer<const _Float16>(recurrent_to_output_weights_), in Eval()
1038 recurrent_to_output_weights_->shape(), in Eval()
H A DLSTM.h217 const RunTimeOperandInfo* recurrent_to_output_weights_; variable