Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreEichenberger committed Jan 9, 2025
2 parents 903fcb4 + b23daa9 commit 0cb084d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/BuildOnLinuxOSX.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Firstly, install MLIR (as a part of LLVM-Project):
``` bash
git clone -n https://github.com/llvm/llvm-project.git
# Check out a specific branch that is known to work with ONNX-MLIR.
cd llvm-project && git checkout af20aff35ec37ead88903bc3e44f6a81c5c9ca4e && cd ..
cd llvm-project && git checkout e86910337f98e57f5b9253f7d80d5b916eb1d97e && cd ..
```

[same-as-file]: <> (utils/build-mlir.sh)
Expand Down
2 changes: 1 addition & 1 deletion docs/BuildOnWindows.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Install MLIR (as a part of LLVM-Project):
```shell
git clone -n https://github.com/llvm/llvm-project.git
# Check out a specific branch that is known to work with ONNX-MLIR.
cd llvm-project && git checkout af20aff35ec37ead88903bc3e44f6a81c5c9ca4e && cd ..
cd llvm-project && git checkout e86910337f98e57f5b9253f7d80d5b916eb1d97e && cd ..
```

[same-as-file]: <> (utils/build-mlir.cmd)
Expand Down
2 changes: 1 addition & 1 deletion third_party/stablehlo
Submodule stablehlo updated 39 files
+2 −1 .github/workflows/buildAndTestCMake.yml
+2 −1 .github/workflows/publishWheelRelease.yml
+18 −0 BUILD.bazel
+2 −2 WORKSPACE.bazel
+1 −1 build_tools/llvm_version.txt
+14 −2 build_tools/math/README.md
+45 −12 build_tools/math/generate_ChloDecompositionPatternsMath.py
+36 −30 build_tools/math/generate_tests.py
+27 −0 docs/generated/stablehlo_passes.md
+2 −1 docs/spec.md
+25 −0 stablehlo/dialect/ChloEnums.td
+372 −0 stablehlo/dialect/ChloOps.cpp
+61 −0 stablehlo/dialect/ChloOps.td
+2 −2 stablehlo/dialect/Version.cpp
+1 −1 stablehlo/dialect/Version.h
+9 −0 stablehlo/integrations/python/CMakeLists.txt
+5 −4 stablehlo/integrations/python/CheckModule.cpp
+17 −13 stablehlo/integrations/python/ChloModule.cpp
+84 −39 stablehlo/integrations/python/StablehloApi.cpp
+4 −4 stablehlo/integrations/python/StablehloApi.h
+94 −80 stablehlo/integrations/python/StablehloModule.cpp
+5 −4 stablehlo/integrations/python/VhloModule.cpp
+23 −1 stablehlo/testdata/BUILD.bazel
+1 −1 stablehlo/testdata/igamma_float64_20_20_float64_20_20_chlo.large.mlir
+1 −1 stablehlo/testdata/igammac_float64_20_20_float64_20_20_chlo.large.mlir
+0 −0 ...ersion_path_3d_lhs_float32_1_4_28_28_1__rhs_float32_2_3_3_1_16__windowst-8282934958224398022_qi8.large.mlir
+0 −0 ...version_path_3d_lhs_float32_1_4_28_28_1__rhs_float32_2_3_3_1_16__windowst8524424959485066052_qi8.large.mlir
+19 −0 stablehlo/tests/math/log_plus_one_complex128.mlir
+19 −0 stablehlo/tests/math/log_plus_one_complex64.mlir
+19 −0 stablehlo/tests/math/log_plus_one_float32.mlir
+19 −0 stablehlo/tests/math/log_plus_one_float64.mlir
+432 −0 stablehlo/tests/ops_chlo.mlir
+110 −0 stablehlo/tests/stablehlo_complex_math_expander.mlir
+6 −0 stablehlo/transforms/CMakeLists.txt
+1 −1 stablehlo/transforms/ChloDecompositionPatternsMath.td
+5 −0 stablehlo/transforms/Passes.h
+34 −0 stablehlo/transforms/Passes.td
+76 −0 stablehlo/transforms/StablehloComplexMathExpander.cpp
+275 −0 stablehlo/transforms/StablehloComplexMathExpanderPatterns.td
2 changes: 1 addition & 1 deletion utils/clone-mlir.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
git clone -n https://github.com/llvm/llvm-project.git
# Check out a specific branch that is known to work with ONNX-MLIR.
cd llvm-project && git checkout af20aff35ec37ead88903bc3e44f6a81c5c9ca4e && cd ..
cd llvm-project && git checkout e86910337f98e57f5b9253f7d80d5b916eb1d97e && cd ..

0 comments on commit 0cb084d

Please sign in to comment.