Home
last modified time | relevance | path

Searched refs:nonExtensionOperandSizeOfData (Results 1 – 16 of 16) sorted by relevance

/packages/modules/NeuralNetworks/common/include/
DLegacyUtils.h142 uint32_t nonExtensionOperandSizeOfData(OperandType type, const std::vector<uint32_t>& dimensions);
152 inline uint32_t nonExtensionOperandSizeOfData(const Operand& operand) { in nonExtensionOperandSizeOfData() function
153 return nonExtensionOperandSizeOfData(operand.type, operand.dimensions); in nonExtensionOperandSizeOfData()
DLegacyHalUtils.h126 uint32_t nonExtensionOperandSizeOfData(V1_3::OperandType type,
137 inline uint32_t nonExtensionOperandSizeOfData(const V1_3::Operand& operand) {
138 return nonExtensionOperandSizeOfData(operand.type, operand.dimensions);
DCpuExecutor.h91 return length >= nonExtensionOperandSizeOfData(type, dimensions); in isSufficient()
/packages/modules/NeuralNetworks/common/operations/
DExpandDims.cpp43 nonExtensionOperandSizeOfData(inputShape.type, inputShape.dimensions)); in eval()
DEmbeddingLookup.cpp38 const int total_bytes = nonExtensionOperandSizeOfData(value_->type, value_->dimensions); in Eval()
DHashtableLookup.cpp49 nonExtensionOperandSizeOfData(value_->type, value_->dimensions) / num_rows; in Eval()
DLSHProjection.cpp98 int input_item_bytes = nonExtensionOperandSizeOfData(input->type, input->dimensions) / in runningSignBit()
DReshape.cpp37 size_t count = nonExtensionOperandSizeOfData(inputShape.type, inputShape.dimensions); in copyData()
/packages/modules/NeuralNetworks/driver/sample/
DCanonicalDevice.cpp233 uint32_t size = nonExtensionOperandSizeOfData(operand.type, operand.dimensions); in allocate()
DSampleDriver.cpp279 uint32_t size = nonExtensionOperandSizeOfData(operand.type, operand.dimensions); in allocate()
/packages/modules/NeuralNetworks/runtime/
DTypeManager.cpp275 return nonExtensionOperandSizeOfData(type, dimensions); in getSizeOfData()
/packages/modules/NeuralNetworks/common/
DCpuExecutor.cpp223 uint32_t length = nonExtensionOperandSizeOfData(info->type, info->dimensions); in setInfoAndAllocateIfNeeded()
234 uint32_t length = nonExtensionOperandSizeOfData(info->type, info->dimensions); in setInfoAndAllocateIfNeeded()
1777 bodyOutputHasUnknownShape[i] = nonExtensionOperandSizeOfData(operand) == 0; in executeWhileOperation()
DLegacyUtils.cpp327 uint32_t nonExtensionOperandSizeOfData(OperandType type, const std::vector<uint32_t>& dimensions) { in nonExtensionOperandSizeOfData() function
655 NN_RET_CHECK_NE(nonExtensionOperandSizeOfData(operand.type, operand.dimensions), 0u); in validateControlFlowOperandUnknownSize()
DLegacyHalUtils.cpp102 uint32_t nonExtensionOperandSizeOfData(V1_3::OperandType type, in nonExtensionOperandSizeOfData() function
104 return nonExtensionOperandSizeOfData(uncheckedConvert(type), dimensions); in nonExtensionOperandSizeOfData()
DValidateHal.cpp418 uint32_t expectedLength = nonExtensionOperandSizeOfData(operand); in validateOperands()
/packages/modules/NeuralNetworks/driver/sample_aidl/
DSampleDriver.cpp181 uint32_t size = nonExtensionOperandSizeOfData(convert(operand.type).value(), in allocate()