Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GleasonK authored Sep 1, 2023
1 parent 7f8eccb commit c4a2b74
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ http_archive(
],
)

LLVM_COMMIT = "3823395c9d715a1ed993eb13fc2bec97372f5655"
LLVM_COMMIT = "f0f395e00e2ec3f1f20ca9021d1554fde73d56c9"

LLVM_SHA256 = "6ee059f385900bb7b0b6c5b6e7d9145cbf216090b03a58c0f96628e6e88b4911"
LLVM_SHA256 = "4f59f9ff83edc7be5d762682b2da960e40cfba1087f63d3934a6975aede77a27"

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 +1 @@
3823395c9d715a1ed993eb13fc2bec97372f5655
f0f395e00e2ec3f1f20ca9021d1554fde73d56c9
4 changes: 2 additions & 2 deletions stablehlo/dialect/ChloOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,11 +416,11 @@ LogicalResult BroadcastSelectOp::reifyReturnTypeShapes(
//===----------------------------------------------------------------------===//

void RankSpecializationClusterOp::getSuccessorRegions(
std::optional<unsigned> index, SmallVectorImpl<RegionSuccessor>& regions) {
RegionBranchPoint point, SmallVectorImpl<RegionSuccessor>& regions) {
// RankSpecializationClusterOp has unconditional control flows into the region
// and back to the parent, so return the correct RegionSuccessor purely based
// on the index being None or 0.
if (index.has_value()) {
if (!point.isParent()) {
regions.push_back(RegionSuccessor(getResults()));
return;
}
Expand Down
2 changes: 1 addition & 1 deletion stablehlo/dialect/StablehloOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ limitations under the License.
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/Diagnostics.h"
#include "mlir/IR/Dialect.h"
#include "mlir/IR/FunctionInterfaces.h"
#include "mlir/IR/Location.h"
#include "mlir/IR/MLIRContext.h"
#include "mlir/IR/Matchers.h"
Expand All @@ -68,6 +67,7 @@ limitations under the License.
#include "mlir/IR/TypeUtilities.h"
#include "mlir/IR/Types.h"
#include "mlir/IR/Value.h"
#include "mlir/Interfaces/FunctionInterfaces.h"
#include "mlir/Support/LLVM.h"
#include "mlir/Support/LogicalResult.h"
#include "mlir/Transforms/InliningUtils.h"
Expand Down
2 changes: 1 addition & 1 deletion stablehlo/dialect/VhloOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ limitations under the License.
#include "mlir/IR/BuiltinAttributeInterfaces.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/FunctionImplementation.h"
#include "mlir/IR/MLIRContext.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/IR/TypeUtilities.h"
#include "mlir/IR/Value.h"
#include "mlir/Interfaces/FunctionImplementation.h"
#include "mlir/Support/LogicalResult.h"
#include "stablehlo/dialect/AssemblyFormat.h"
#include "stablehlo/dialect/VhloBytecode.h"
Expand Down
2 changes: 1 addition & 1 deletion stablehlo/dialect/VhloOps.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ limitations under the License.
#include "mlir/IR/Attributes.h"
#include "mlir/IR/Dialect.h"
#include "mlir/IR/DialectImplementation.h"
#include "mlir/IR/FunctionInterfaces.h"
#include "mlir/IR/Location.h"
#include "mlir/IR/MLIRContext.h"
#include "mlir/Interfaces/FunctionInterfaces.h"
#include "stablehlo/dialect/Version.h"
#include "stablehlo/dialect/VhloTypes.h"

Expand Down

0 comments on commit c4a2b74

Please sign in to comment.