| 22 | namespace kernel_utils { |
| 23 | |
| 24 | void RnnBatchStep(const float* input_ptr_batch, const float* input_weights_ptr, |
| 25 | const float* recurrent_weights_ptr, const float* bias_ptr, |
| 26 | int input_size, int num_units, int batch_size, |
| 27 | int output_batch_leading_dim, |
| 28 | TfLiteFusedActivation activation, |
| 29 | float* hidden_state_ptr_batch, float* output_ptr_batch) { |
| 30 | RnnBatchStep(input_ptr_batch, input_weights_ptr, |
| 31 | /*aux_input_ptr_batch=*/nullptr, |
| 32 | /*aux_input_weights_ptr=*/nullptr, recurrent_weights_ptr, |
| 33 | bias_ptr, input_size, /*aux_input_size=*/0, num_units, |
| 34 | batch_size, output_batch_leading_dim, activation, |
| 35 | hidden_state_ptr_batch, output_ptr_batch); |
| 36 | } |
| 37 | |
| 38 | void RnnBatchStep(const float* input_ptr_batch, const float* input_weights_ptr, |
| 39 | const float* aux_input_ptr_batch, |
no test coverage detected