Skip to content

Commit 06aa7ef

Browse files
committed
Address code review comments
Signed-off-by: Tiotto, Ettore <[email protected]>
1 parent cb82d19 commit 06aa7ef

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

python/test/unit/language/test_core.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3440,11 +3440,11 @@ def test_scaled_dot(M, N, K, col_a, col_b, rhs_scale, normal_type, mxfp_type, nu
34403440
pytest.skip(f"scaled_dot({normal_type}, {mxfp_type}) only implemented for MI300")
34413441
if mma == 16 and K == 64:
34423442
pytest.skip(f"K == {K} too small for mfma {mma} in scaled_dot")
3443-
3444-
# FIXME
34453443
if is_xpu():
3446-
if M == 128 and N == 128 and K == 64 and col_a == False and col_b == False and rhs_scale == True and normal_type == "e4m3" and mxfp_type == "bf16":
3447-
pytest.skip(f"FIXME: {M}x{N}x{K} col_a={col_a} col_b={col_b} rhs_scale={rhs_scale} normal_type={normal_type} mxfp_type={mxfp_type}")
3444+
if M == 128 and N == 128 and K == 64 and not col_a and not col_b and rhs_scale and normal_type == "e4m3" and mxfp_type == "bf16":
3445+
pytest.skip(
3446+
f"FIXME: {M}x{N}x{K} col_a={col_a} col_b={col_b} rhs_scale={rhs_scale} normal_type={normal_type} mxfp_type={mxfp_type}"
3447+
)
34483448

34493449
@triton.jit
34503450
def dot_scale_kernel(a_base, stride_a0, stride_a1, a_scale, b_base, stride_b0, stride_b1, b_scale, out,

third_party/intel/lib/TritonIntelGPUToLLVM/UpcastMXFPToLLVM.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#include "triton/Dialect/Triton/IR/Dialect.h"
1010
#include "llvm/ADT/STLExtras.h"
1111
#include "llvm/ADT/SmallVector.h"
12-
#include <array>
1312

1413
using namespace mlir;
1514
using namespace mlir::triton;

0 commit comments

Comments
 (0)