Home
last modified time | relevance | path

Searched defs:OHNNMemory (Results 1 – 3 of 3) sorted by relevance

/test/xts/acts/ai/neural_network_runtime/interface/src/
DMemoryTest.cpp40 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(executor, inputIndex, length); in CheckCreateInputMemory() local
46 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateOutputMemory(executor, outputIndex, length); in CheckCreateOutputMemory() local
59 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(nullptr, 0, 4); variable
78 …OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(executor, 2, graphArgs.operands[0].le… variable
98 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(executor, 0, 0); variable
118 … OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(executor, 0, 1024 * 1024 * 1024 + 1); variable
138 …OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateInputMemory(executor, 0, graphArgs.operands[0].le… variable
174 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateOutputMemory(nullptr, 0, 4); variable
193 …OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateOutputMemory(executor, 2, graphArgs.operands[0].l… variable
213 OH_NN_Memory *OHNNMemory = OH_NNExecutor_AllocateOutputMemory(executor, 0, 0); variable
[all …]
DExecutorTest.cpp1121 OH_NN_Memory *OHNNMemory[graphArgs.inputIndices.size()]; variable
/test/xts/acts/ai/neural_network_runtime/common/
Dnnrt_utils.cpp239 …utorWithMemory(OH_NNExecutor *executor, const OHNNGraphArgs &graphArgs, OH_NN_Memory *OHNNMemory[], in ExecutorWithMemory()