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: 2 additions & 0 deletions scripts/skiplist/default/language.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# https://github.com/intel/intel-xpu-backend-for-triton/issues/3556
test/unit/language/test_core.py::test_convert_mma2mma[mma_pair0-float16-256-256]
# https://github.com/intel/intel-xpu-backend-for-triton/issues/3870
test/unit/language/test_core.py::test_dot3d[8-2-64-64-64-32-32-float32-float32]
2 changes: 2 additions & 0 deletions scripts/skiplist/xe2/language.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# https://github.com/intel/intel-xpu-backend-for-triton/issues/3870
test/unit/language/test_core.py::test_dot3d[8-2-64-64-64-32-32-float32-float32]
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,8 @@ class DotOpDPASConversionHelper {
totalElems /
((batch * outer * inner) * (repClusterOuter * repClusterInner));
VectorType dotOpTy = vec_ty(elemTy, numElemsPerOperand);
// TODO: IGC bug, Update isFToTF32Enabled as follows once issue #3870 is
// fixed. isFToTF32Enabled = elemTy.isFloat(32) && (isOperandA ||
// isOperandB)
isFToTF32Enabled = elemTy.isFloat(32) &&
((rank == 3) ? isOperandA : (isOperandA || isOperandB));

isFToTF32Enabled = elemTy.isFloat(32) && (isOperandA || isOperandB);

auto tb = TritonLLVMOpBuilder(loc, rewriter);
int offset = 0;
Expand Down
Loading