Home
last modified time | relevance | path

Searched refs:RNNStep (Results 1 – 4 of 4) sorted by relevance

/frameworks/ml/nn/common/operations/
DRNN.cpp88 RNNStep<_Float16>(reinterpret_cast<_Float16*>(input_->buffer), input_->shape(), in Eval()
100 RNNStep<float>(reinterpret_cast<float*>(input_->buffer), input_->shape(), in Eval()
120 bool RNN::RNNStep(const T* inputData, const Shape& inputShape, const T* hiddenStateInputData, in RNNStep() function in android::nn::RNN
128 return RNNStep<T>(inputData, inputShape, /*auxInputData=*/nullptr, /*auxInputShape=*/dummyShape, in RNNStep()
140 bool RNN::RNNStep(const T* inputData, const Shape& inputShape, const T* auxInputData, in RNNStep() function in android::nn::RNN
227 template bool RNN::RNNStep<_Float16>(const _Float16* inputData, const Shape& inputShape,
233 template bool RNN::RNNStep<_Float16>(const _Float16* inputData, const Shape& inputShape,
243 template bool RNN::RNNStep<float>(const float* inputData, const Shape& inputShape,
249 template bool RNN::RNNStep<float>(const float* inputData, const Shape& inputShape,
DRNN.h50 static bool RNNStep(const T* inputData, const Shape& inputShape, const T* hiddenStateInputData,
56 static bool RNNStep(const T* inputData, const Shape& inputShape, const T* auxInputData,
DBidirectionalSequenceRNN.cpp267 RNN::RNNStep<T>(inputBatchPtr, fixedTimeInputShape, auxInputBatchPtr, in executeTyped()
295 RNN::RNNStep<T>(inputBatchPtr, fixedTimeInputShape, auxInputBatchPtr, in executeTyped()
DUnidirectionalSequenceRNN.cpp109 RNN::RNNStep<T>(input, fixedTimeInputShape, hiddenState, bias, weights, weightsShape, in executeTyped()