Home
last modified time | relevance | path

Searched refs:SVDF (Results 1 – 17 of 17) sorted by relevance

/frameworks/ml/nn/common/operations/
DSVDF.cpp28 SVDF::SVDF(const Operation& operation, in SVDF() function in android::nn::SVDF
45 bool SVDF::Prepare(const Operation &operation, in Prepare()
57 GetInput(operation, operands, SVDF::kInputTensor); in Prepare()
59 GetInput(operation, operands, SVDF::kWeightsFeatureTensor); in Prepare()
61 GetInput(operation, operands, SVDF::kWeightsTimeTensor); in Prepare()
96 bool SVDF::Eval() { in Eval()
148 void SVDF::EvalFloat32(const float* inputData, const float* inputStateData, const float* biasData, in EvalFloat32()
DSVDF.h37 class SVDF {
39 SVDF(const Operation& operation, std::vector<RunTimeOperandInfo>& operands);
DSVDFTest.cpp264 ASSERT_EQ(execution.setInput(SVDF::k##X##Tensor, X##_.data(), \ in Invoke()
274 ASSERT_EQ(execution.setOutput(SVDF::k##X##Tensor, X##_.data(), \ in Invoke()
282 ASSERT_EQ(execution.setInput(SVDF::kRankParam, &rank_, sizeof(rank_)), in Invoke()
286 ASSERT_EQ(execution.setInput(SVDF::kActivationParam, &activation, in Invoke()
/frameworks/ml/nn/runtime/test/generated/vts_models/
Dsvdf_state_float16.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_state.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_float16.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf2.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_bias_present.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_state_relaxed.model.cpp91 .type = OperationType::SVDF, in createTestModel()
208 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf2_relaxed.model.cpp91 .type = OperationType::SVDF, in createTestModel()
208 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_bias_present_float16.model.cpp91 .type = OperationType::SVDF, in createTestModel()
207 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_relaxed.model.cpp91 .type = OperationType::SVDF, in createTestModel()
208 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
Dsvdf_bias_present_relaxed.model.cpp91 .type = OperationType::SVDF, in createTestModel()
208 .type = OperationType::SVDF, in createTestModel_dynamic_output_shape()
/frameworks/ml/nn/common/
DAndroid.bp150 "operations/SVDF.cpp",
DCpuExecutor.cpp1157 case OperationType::SVDF: { in executeOperation()
1158 RunTimeOperandInfo& stateOut = mOperands[outs[SVDF::kStateOutTensor]]; in executeOperation()
1159 RunTimeOperandInfo& output = mOperands[outs[SVDF::kOutputTensor]]; in executeOperation()
1162 SVDF svdf(operation, mOperands); in executeOperation()
1164 success = SVDF::Prepare(operation, mOperands, &stateShape, &outputShape) && in executeOperation()
/frameworks/ml/nn/runtime/
DNeuralNetworks.cpp309 static_assert(static_cast<int32_t>(OperationType::SVDF) == ANEURALNETWORKS_SVDF,