-
Notifications
You must be signed in to change notification settings - Fork 15
Add neura-compiler #47
New issue
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| #include "mlir/Pass/PassManager.h" | ||
| #include "mlir/Pass/PassRegistry.h" | ||
| #include "mlir/Transforms/Passes.h" | ||
|
|
||
| #include "NeuraDialect/NeuraDialect.h" | ||
| #include "NeuraDialect/NeuraOps.h" | ||
| #include "NeuraDialect/NeuraPasses.h" | ||
| #include "NeuraDialect/NeuraTypes.h" | ||
| #include "Conversion/ConversionPasses.h" | ||
|
|
||
| // This pass pipeline can convert all the other dialects into the Neura dialect | ||
| void mlir::neura::registerNeuraConversionPassPipeline() { | ||
| PassPipelineRegistration<>("neura-conversion", | ||
| "Convert all dialects to Neura dialect", | ||
| [](OpPassManager &pm) { | ||
| // Convert all the other dialects into the Neura dialect | ||
| pm.addPass(mlir::createLowerArithToNeuraPass()); | ||
| pm.addPass(mlir::createLowerLlvmToNeuraPass()); | ||
| }); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,11 @@ | ||
| // RUN: mlir-neura-opt --lower-arith-to-neura %s | FileCheck %s | ||
| // RUN: neura-compiler --neura-conversion %s | FileCheck %s --check-prefix=COMPILER | ||
| // RUN: mlir-neura-opt --lower-arith-to-neura %s | FileCheck %s --check-prefix=OPT | ||
|
|
||
| func.func @test(%a: f32) -> f32 { | ||
| %b = arith.constant 2.0 : f32 | ||
| %res = arith.addf %a, %b : f32 | ||
| // CHECK: neura.fadd | ||
| return %res : f32 | ||
| } | ||
|
|
||
| // COMPILER: neura.fadd | ||
| // OPT: neura.fadd | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| add_subdirectory(mlir-neura-opt) | ||
| add_subdirectory(neura-interpreter) | ||
| add_subdirectory(neura-interpreter) | ||
| add_subdirectory(neura-compiler) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| add_executable(neura-compiler neura-compiler.cpp) | ||
| get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS) | ||
| get_property(conversion_libs GLOBAL PROPERTY MLIR_CONVERSION_LIBS) | ||
| set(LIBS | ||
| ${dialect_libs} | ||
| ${conversion_libs} | ||
| MLIRNeuraTransforms | ||
| MLIRConversion | ||
| MLIRNeura | ||
| MLIRTransforms | ||
| MLIROptLib | ||
| MLIRPass | ||
| MLIRIR | ||
| MLIRParser | ||
| MLIRSupport | ||
| ) | ||
|
|
||
| target_link_libraries(neura-compiler PRIVATE ${LIBS}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| // neura-compiler.cpp | ||
|
|
||
| #include "mlir/Dialect/Affine/IR/AffineOps.h" | ||
| #include "mlir/Dialect/DLTI/DLTI.h" | ||
| #include "mlir/Dialect/LLVMIR/LLVMDialect.h" | ||
| #include "mlir/InitAllDialects.h" | ||
| #include "mlir/InitAllPasses.h" | ||
| #include "mlir/Support/FileUtilities.h" | ||
| #include "mlir/Support/LogicalResult.h" | ||
| #include "mlir/Tools/mlir-opt/MlirOptMain.h" | ||
|
|
||
| #include "Conversion/ConversionPasses.h" | ||
| #include "NeuraDialect/NeuraDialect.h" | ||
| #include "NeuraDialect/NeuraPasses.h" | ||
|
|
||
| int main(int argc, char **argv) { | ||
| // Registers MLIR dialects. | ||
| mlir::DialectRegistry registry; | ||
| registry.insert<mlir::neura::NeuraDialect>(); | ||
| registry.insert<mlir::func::FuncDialect>(); | ||
| registry.insert<mlir::arith::ArithDialect>(); | ||
| registry.insert<mlir::DLTIDialect>(); | ||
| registry.insert<mlir::LLVM::LLVMDialect>(); | ||
| registry.insert<mlir::affine::AffineDialect>(); | ||
| registry.insert<mlir::memref::MemRefDialect>(); | ||
|
|
||
| mlir::neura::registerNeuraConversionPassPipeline(); | ||
ShangkunLi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| // Runs the MLIR optimizer. | ||
| return mlir::asMainReturnCode( | ||
| mlir::MlirOptMain(argc, argv, "Neura Dialect Compiler", registry)); | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.