We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://inside-compiler.github.io/2024/08/03/mlir-pass/
第5章:Pass和PassmanagerMLIR中提供了变换(Transformation)和分析(Analysis)的概念,变换指的是将IR进行优化,生成新的IR(和方言降级略有不同,降级一般不涉及优化,仅仅简单的将某一算子变成一个或多个新类型的操作);而分析是提供一些信息供优化使用。本节主要讨论变换Pass,最后简单介绍分析管理。注意:MLIR的分析和LLVM中的分析存在很大不同,LLVM分析
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://inside-compiler.github.io/2024/08/03/mlir-pass/
第5章:Pass和PassmanagerMLIR中提供了变换(Transformation)和分析(Analysis)的概念,变换指的是将IR进行优化,生成新的IR(和方言降级略有不同,降级一般不涉及优化,仅仅简单的将某一算子变成一个或多个新类型的操作);而分析是提供一些信息供优化使用。本节主要讨论变换Pass,最后简单介绍分析管理。注意:MLIR的分析和LLVM中的分析存在很大不同,LLVM分析
The text was updated successfully, but these errors were encountered: