Home
last modified time | relevance | path

Searched refs:WrapperType (Results 1 – 9 of 9) sorted by relevance

/frameworks/ml/nn/runtime/test/
DTestMemoryInternal.cpp39 using WrapperType = ::android::nn::test_wrapper::Type; typedef
118 WrapperOperandType matrixType(WrapperType::TENSOR_FLOAT32, {3, 4}); in TEST_F()
119 WrapperOperandType scalarType(WrapperType::INT32, {}); in TEST_F()
190 WrapperOperandType type3(WrapperType::INT32, {}); in TEST_F()
191 WrapperOperandType type2(WrapperType::TENSOR_INT32, {128}, 0.25, 0); in TEST_F()
192 WrapperOperandType type0(WrapperType::TENSOR_QUANT8_ASYMM, {12, 104, 104, 128}, 0.5, 0); in TEST_F()
193 WrapperOperandType type4(WrapperType::TENSOR_QUANT8_ASYMM, {12, 92, 92, 128}, 1.0, 0); in TEST_F()
194 WrapperOperandType type1(WrapperType::TENSOR_QUANT8_ASYMM, {128, 13, 13, 128}, 0.5, 0); in TEST_F()
DTestMemory.cpp32 using WrapperType = ::android::nn::test_wrapper::Type; typedef
59 WrapperOperandType matrixType(WrapperType::TENSOR_FLOAT32, {3, 4}); in TEST_F()
60 WrapperOperandType scalarType(WrapperType::INT32, {}); in TEST_F()
117 WrapperOperandType matrixType(WrapperType::TENSOR_FLOAT32, {3, 4}); in TEST_F()
118 WrapperOperandType scalarType(WrapperType::INT32, {}); in TEST_F()
DTestFailingDriver.cpp37 using WrapperType = test_wrapper::Type; typedef
105 WrapperOperandType floatType(WrapperType::TENSOR_FLOAT32, {2}); in TEST_F()
106 WrapperOperandType boolType(WrapperType::TENSOR_BOOL8, {1}); in TEST_F()
183 WrapperOperandType floatType(WrapperType::TENSOR_FLOAT32, {2}); in TEST_F()
DTestCompliance.cpp34 using WrapperType = test_wrapper::Type; typedef
85 static const WrapperOperandType kTypeTensorFloat(WrapperType::TENSOR_FLOAT32, {1});
86 static const WrapperOperandType kTypeTensorFloatRank0(WrapperType::TENSOR_FLOAT32, {});
87 static const WrapperOperandType kTypeInt32(WrapperType::INT32, {});
DTestIntrospectionControl.cpp59 using WrapperType = nn::test_wrapper::Type; typedef
202 WrapperOperandType type0(WrapperType::TENSOR_FLOAT32, {2}); in createSimpleAddModel()
203 WrapperOperandType type1(WrapperType::INT32, {}); in createSimpleAddModel()
1117 WrapperOperandType type0(WrapperType::TENSOR_FLOAT32, {2}); in createAddMaxModel()
1118 WrapperOperandType type1(WrapperType::INT32, {}); in createAddMaxModel()
1180 WrapperOperandType type0(WrapperType::TENSOR_FLOAT32, {2}); in createAddMulModel()
1181 WrapperOperandType type1(WrapperType::INT32, {}); in createAddMulModel()
DTestPartitioningRandom.cpp107 using WrapperType = nn::test_wrapper::Type; typedef
388 const WrapperOperandType alphaType(WrapperType::FLOAT32, {}); in makeEluSpecialInput()
401 const WrapperOperandType biasType(WrapperType::TENSOR_FLOAT32, {problemSize}); in makeRnnSpecialInput()
419 const WrapperOperandType permType(WrapperType::TENSOR_INT32, {2}); in makeTransposeSpecialInput()
753 const WrapperOperandType problemType(WrapperType::TENSOR_FLOAT32, {problemSize, problemSize}); in TEST_P()
754 const WrapperOperandType unknownDimensionsType(WrapperType::TENSOR_FLOAT32, {0, 0}); in TEST_P()
756 static const WrapperOperandType activationFunctionType(WrapperType::INT32, {}); in TEST_P()
DTestPartitioning.cpp166 using WrapperType = ::android::nn::test_wrapper::Type; typedef
635 return addOperand(WrapperType::TENSOR_FLOAT32, dimensioned); in addFloatOperand()
638 return addOperand(WrapperType::TENSOR_QUANT8_ASYMM, dimensioned); in addQuantOperand()
641 return addOperand(WrapperType::TENSOR_BOOL8, dimensioned); in addBooleanOperand()
646 uint32_t addOperand(WrapperType wrapperType, Dimensioned dimensioned = Dimensioned::YES) { in addOperand()
705 const std::vector<uint32_t>& inputs, WrapperType outputType, in addExplicitOperationXTo1()
841 uint32_t operand = addOperand(WrapperType::INT32); in addIntOperand()
848 const uint32_t index = addOperand(WrapperType::MODEL); in addRefModelOperand()
1978 uint32_t opndIn = model.addOperand(static_cast<WrapperType>(operandType)); in TEST_F()
2578 ANEURALNETWORKS_EQUAL, {opnd0, opnd1}, WrapperType::TENSOR_BOOL8); in createCondModel()
DTestRemoveDefaultArguments.cpp106 using WrapperType = test_wrapper::Type; typedef
DTestExecution.cpp56 using WrapperType = nn::test_wrapper::Type; typedef
681 static const WrapperOperandType tensorType(WrapperType::TENSOR_FLOAT32, {1}); in makeModel()