Skip to content
Merged
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
2 changes: 1 addition & 1 deletion cmake/llvm-hash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6cd68c2f87832ef39eb502a20d358b4c7fa37b9e
930f21c6bc0fe05c1d08be6353f7c7c6c51f4dc0
4 changes: 1 addition & 3 deletions lib/Conversion/TritonGPUToLLVM/ElementwiseOpToLLVM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,8 @@ struct AbsIOpConversion
ConversionPatternRewriter &rewriter,
Type elemTy, MultipleOperandsRange operands,
Location loc) const {
auto boolFalse = rewriter.getBoolAttr(false);
auto constFalse = rewriter.create<LLVM::ConstantOp>(loc, boolFalse);
return {rewriter.create<LLVM::AbsOp>(loc, elemTy, operands[0][0],
/*is_int_min_poison=*/constFalse)};
/*is_int_min_poison=*/false)};
}
};

Expand Down