Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lib/Dialect/Fly/IR/FlyOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,8 @@ Type applyOffsetOnTensorLike(LayoutBuilder<LayoutAttr> &builder, Type tensorLike
#define FLY_INFER_RETURN_TYPES(OP) \
llvm::LogicalResult OP::inferReturnTypes( \
mlir::MLIRContext *context, std::optional<::mlir::Location> location, \
mlir::ValueRange operands, mlir::DictionaryAttr attributes, \
mlir::OpaqueProperties properties, mlir::RegionRange regions, \
llvm::SmallVectorImpl<mlir::Type> &inferredReturnTypes)
mlir::ValueRange operands, mlir::DictionaryAttr attributes, mlir::PropertyRef properties, \
mlir::RegionRange regions, llvm::SmallVectorImpl<mlir::Type> &inferredReturnTypes)

//===----------------------------------------------------------------------===//
// Constructors
Expand Down
6 changes: 3 additions & 3 deletions lib/Dialect/FlyROCDL/GFX1250/MmaAtom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ static FailureOr<Value> emitWmmaSSA(OpBuilder &builder, Location loc, VectorType
Value b, Value c) {
Value res;
if constexpr (Variant == WmmaVariant::ModsAllReuse) {
res = WmmaOp::create(builder, loc, accTy,
/*signA=*/false, a, /*signB=*/false, b,
/*modC=*/(uint16_t)0, c)
res = WmmaOp::create(builder, loc, accTy, a, b,
/*modC=*/(uint16_t)0, c,
/*reuseA=*/false, /*reuseB=*/false)
.getResult();
} else if constexpr (Variant == WmmaVariant::ModsC) {
res = WmmaOp::create(builder, loc, accTy, a, b,
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/llvm-hash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7f77ca0dbda4abbf9af06537b2c475f20ccd6007
87717bf9f81f7b29466c5d9a30a3453bdfc93941
Loading