Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DMemory.cpp261 const auto [n, runtimeMemory] = MemoryRuntimeAHWB::create(srcMetadata.logicalSize); in copyIBuffers()
504 std::tie(n, memory) = MemoryRuntimeAHWB::create(size); in allocate()
580 std::pair<int, std::unique_ptr<MemoryRuntimeAHWB>> MemoryRuntimeAHWB::create(uint32_t size) { in create()
608 auto memoryAHWB = std::make_unique<MemoryRuntimeAHWB>(std::move(memory).value(), in create()
619 uint8_t* MemoryRuntimeAHWB::getPointer() const { in getPointer()
623 MemoryRuntimeAHWB::MemoryRuntimeAHWB(SharedMemory memory, Mapping mapping) in MemoryRuntimeAHWB() function in android::nn::MemoryRuntimeAHWB
DMemory.h319 class MemoryRuntimeAHWB : public RuntimeMemory {
327 static std::pair<int, std::unique_ptr<MemoryRuntimeAHWB>> create(uint32_t size);
339 MemoryRuntimeAHWB(SharedMemory memory, Mapping mapping);
DExecutionBuilder.cpp1625 auto [nAhwb, blobAhwb] = MemoryRuntimeAHWB::create(size); in computeOnCpuFallback()
/packages/modules/NeuralNetworks/runtime/test/
DTestCompliance.cpp149 const auto [n, ahwb] = MemoryRuntimeAHWB::create(kAhwbMemorySize); in TEST_F()