Home
last modified time | relevance | path

Searched refs:maybeEngine (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/mlir/examples/toy/Ch7/
Dtoyc.cpp230 auto maybeEngine = mlir::ExecutionEngine::create( in runJit() local
232 assert(maybeEngine && "failed to construct an execution engine"); in runJit()
233 auto &engine = maybeEngine.get(); in runJit()
/external/llvm-project/mlir/examples/toy/Ch6/
Dtoyc.cpp229 auto maybeEngine = mlir::ExecutionEngine::create( in runJit() local
231 assert(maybeEngine && "failed to construct an execution engine"); in runJit()
232 auto &engine = maybeEngine.get(); in runJit()
/external/llvm-project/mlir/docs/Tutorials/Toy/
DCh-6.md295 auto maybeEngine = mlir::ExecutionEngine::create(module, optPipeline);
296 assert(maybeEngine && "failed to construct an execution engine");
297 auto &engine = maybeEngine.get();