File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
mlir/include/mlir/Dialect/OpenACC/Analysis Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1515// Usage Pattern:
1616// ==============
1717//
18- // A pass that needs this functionality should call getAnalysis<OpenACCSupport>(),
19- // which will provide either:
18+ // A pass that needs this functionality should call
19+ // getAnalysis<OpenACCSupport>(), which will provide either:
2020// - A cached version if previously initialized, OR
2121// - A default implementation if not previously initialized
2222//
2727// =====================================
2828//
2929// If a custom implementation is needed, create a pass that runs BEFORE the pass
30- // that needs the analysis. In this setup pass, use getAnalysis<OpenACCSupport>()
31- // followed by setImplementation() to register your custom implementation. The
32- // custom implementation will need to provide implementation for all methods
33- // defined in the `OpenACCSupportTraits::Concept` class.
30+ // that needs the analysis. In this setup pass, use
31+ // getAnalysis<OpenACCSupport>() followed by setImplementation() to register
32+ // your custom implementation. The custom implementation will need to provide
33+ // implementation for all methods defined in the `OpenACCSupportTraits::Concept`
34+ // class.
3435//
3536// Example:
3637// void MySetupPass::runOnOperation() {
You can’t perform that action at this time.
0 commit comments