hello-mlir/include/Passes.h
jackfiled 902915a57b
feat: toy tutorial chapter 4.
Signed-off-by: jackfiled <xcrenchangjun@outlook.com>
2025-06-03 16:03:17 +08:00

21 lines
241 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();
}
}
#endif //PASSES_H