MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / RnnBatchStep

Function RnnBatchStep

tensorflow/lite/kernels/internal/kernel_utils.cc:24–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22namespace kernel_utils {
23
24void 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
38void RnnBatchStep(const float* input_ptr_batch, const float* input_weights_ptr,
39 const float* aux_input_ptr_batch,

Callers 6

EvalFloatFunction · 0.85
EvalHybridFunction · 0.85
EvalFloatFunction · 0.85
EvalHybridFunction · 0.85
EvalFloatFunction · 0.85
EvalHybridFunction · 0.85

Calls 5

VectorBatchVectorAssignFunction · 0.85
ApplyActivationToVectorFunction · 0.50
IsZeroVectorFunction · 0.50
SymmetricQuantizeFloatsFunction · 0.50

Tested by

no test coverage detected