Home
last modified time | relevance | path

Searched refs:candidate_bias (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/experimental/kernels/
Dunidirectional_sequence_gru.cc33 const TfLiteTensor* candidate_bias, TfLiteTensor* output, in GruImpl() argument
53 const RuntimeShape candidate_bias_shape = GetTensorShape(candidate_bias); in GruImpl()
54 const float* candidate_bias_data = GetTensorData<float>(candidate_bias); in GruImpl()
170 const TfLiteTensor* candidate_bias; in Prepare() local
172 context, GetInputSafe(context, node, kCandidateBias, &candidate_bias)); in Prepare()
173 TF_LITE_ENSURE_EQ(context, candidate_bias->dims->size, 1); in Prepare()
174 TF_LITE_ENSURE_EQ(context, candidate_bias->dims->data[0], n_output); in Prepare()
240 const TfLiteTensor* candidate_bias; in Eval() local
242 context, GetInputSafe(context, node, kCandidateBias, &candidate_bias)); in Eval()
257 candidate_bias, output, output_state, activation, concat, in Eval()
Dgru_cell.cc39 const float* candidate_bias, const RuntimeShape& output_shape, in GruCell() argument
81 candidate_weight, candidate_bias_shape, candidate_bias, in GruCell()
Dgru_cell.h34 const float* candidate_bias, const RuntimeShape& output_shape,