executorch-pte-poc / method_stub.cpp
HegzaPlacx's picture
add PoC model files
2fc4a7e verified
Raw
History Blame Contribute Delete
376 Bytes
#include <executorch/runtime/executor/method.h>
namespace executorch {
namespace runtime {
Result<Method> Method::load(
executorch_flatbuffer::ExecutionPlan* ,
const Program* ,
MemoryManager* ,
EventTracer* ,
const NamedDataMap* ,
const LoadBackendOptionsMap* ,
Span<const Kernel> ) {
return Error::NotImplemented;
}
Method::~Method() {}
}
}