Home
last modified time | relevance | path

Searched refs:prepareLaunchStatus (Results 1 – 2 of 2) sorted by relevance

/frameworks/ml/nn/runtime/
DExecutionPlan.cpp49 Return<ErrorStatus> prepareLaunchStatus = device->getInterface()->prepareModel( in compile() local
51 if (!prepareLaunchStatus.isOk()) { in compile()
53 << prepareLaunchStatus.description(); in compile()
56 if (prepareLaunchStatus != ErrorStatus::NONE) { in compile()
58 << toString(static_cast<ErrorStatus>(prepareLaunchStatus)); in compile()
DExecutionBuilder.cpp562 ErrorStatus prepareLaunchStatus = mDriver->prepareModel(model, preference, in startComputeOnDevice() local
564 if (prepareLaunchStatus != ErrorStatus::NONE) { in startComputeOnDevice()
565 return convertErrorStatusToResultCode(prepareLaunchStatus); in startComputeOnDevice()