Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/examples/toy/Ch6/
H A Dtoyc.cpp242 auto maybeEngine = mlir::ExecutionEngine::create(module, engineOptions); in runJit() local
243 assert(maybeEngine && "failed to construct an execution engine"); in runJit()
244 auto &engine = maybeEngine.get(); in runJit()
/llvm-project-15.0.7/mlir/examples/toy/Ch7/
H A Dtoyc.cpp243 auto maybeEngine = mlir::ExecutionEngine::create(module, engineOptions); in runJit() local
244 assert(maybeEngine && "failed to construct an execution engine"); in runJit()
245 auto &engine = maybeEngine.get(); in runJit()
/llvm-project-15.0.7/mlir/docs/Tutorials/Toy/
H A DCh-6.md301 auto maybeEngine = mlir::ExecutionEngine::create(module,
303 assert(maybeEngine && "failed to construct an execution engine");
304 auto &engine = maybeEngine.get();