hello-mlir/include/Passes.h
jackfiled c5ab1a6bc0
feat: toy tutorial chapter 5.
Signed-off-by: jackfiled <xcrenchangjun@outlook.com>
2025-06-05 23:46:52 +08:00

23 lines
304 B
C++

//
// Created by ricardo on 02/06/25.
//
#ifndef PASSES_H
#define PASSES_H
#include <memory>
namespace mlir
{
class Pass;
namespace hello
{
std::unique_ptr<Pass> createShapeInferencePass();
std::unique_ptr<Pass> createLowerToAffineLoopsPass();
}
}
#endif //PASSES_H