Skip to content

Commit

Permalink
Integrate LLVM at llvm/llvm-project@2a1f1b5fde0a
Browse files Browse the repository at this point in the history
Updates LLVM usage to match
[2a1f1b5fde0a](llvm/llvm-project@2a1f1b5fde0a)

PiperOrigin-RevId: 571867638
  • Loading branch information
tensorflower-gardener authored and TensorFlow MLIR Team committed Oct 9, 2023
1 parent e53cb69 commit a4b5cfc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ http_archive(
],
)

LLVM_COMMIT = "ff5e2babcb46e7eb3887ee265decb2948da2792c"
LLVM_COMMIT = "2a1f1b5fde0a2e03f94fa2cb5c7765d405fda0de"

LLVM_SHA256 = "31682f931855f1061ef6082622adcfffe5aeda98596cbf9f1d8574e924b6f78e"
LLVM_SHA256 = "52a4b342a71c94966c291cc78376b8027727eed214955122c26b45c2482a958e"

http_archive(
name = "llvm-raw",
Expand Down
2 changes: 1 addition & 1 deletion build_tools/llvm_version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ff5e2babcb46e7eb3887ee265decb2948da2792c
2a1f1b5fde0a2e03f94fa2cb5c7765d405fda0de

2 changes: 1 addition & 1 deletion stablehlo/build_tools/llvm_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ff5e2babcb46e7eb3887ee265decb2948da2792c
2a1f1b5fde0a2e03f94fa2cb5c7765d405fda0de
6 changes: 3 additions & 3 deletions transforms/test_hlo_transform_dialect_interpreter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class TestHloTransformDialectInterpreterPass
if (failed(transform::detail::interpreterBaseRunOnOperationImpl(
getOperation(), getArgument(), getSharedTransformModule(),
getTransformLibraryModule(), extraMapping, options,
transformFileName, transformLibraryFileName, debugPayloadRootTag,
transformFileName, transformLibraryPaths, debugPayloadRootTag,
debugTransformRootTag, getBinaryName())))
return signalPassFailure();
}
Expand Down Expand Up @@ -184,8 +184,8 @@ class TestHloTransformDialectInterpreterPass
"Optional filename containing a transform dialect specification to "
"apply. If left empty, the IR is assumed to contain one top-level "
"transform dialect operation somewhere in the module.")};
Option<std::string> transformLibraryFileName{
*this, "transform-library-file-name", llvm::cl::init(""),
ListOption<std::string> transformLibraryPaths{
*this, "transform-library-paths", llvm::cl::ZeroOrMore,
llvm::cl::desc(
"Optional name of the file containing transform dialect symbol "
"definitions to be injected into the transform module.")};
Expand Down

0 comments on commit a4b5cfc

Please sign in to comment.