Hi, I’m new to MLIR.
I was studying MLIR source code from llvm-project repository and I’m interested algorithms in MLIR affine transformations. I want to make some experimental changes on it and I’m trying to debug the code to strengthen my understandings. However, I couldn’t find any unit-test suite or use cases in the source code that uses transformations in Dialect/Affine/Transforms.
It seems basic testing can be done by using llvm-lit. However, it doesn’t allow me to debug or look inside how the code behaves precisely.
How can I debug the transformation code in Dialect/Affine/Transforms directory?
best regards