Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: intel/intel-xpu-backend-for-triton
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bf06234cef59b8c58557a13eee555f14c5ac1ed8
Choose a base ref
..
head repository: intel/intel-xpu-backend-for-triton
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39664ab6b1002b2ca48d975f8788510e0496321f
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +4 −4 python/test/unit/language/test_matmul.py
8 changes: 4 additions & 4 deletions python/test/unit/language/test_matmul.py
Original file line number Diff line number Diff line change
@@ -318,10 +318,10 @@ def fp8e8m0_to_float32(scale):
@pytest.mark.parametrize("nonKDim", ([0, 16, 32] if is_hip_cdna() else [0]))
def test_mxfp(M, N, K, BLOCK_M, BLOCK_N, BLOCK_K, NUM_STAGES, nonKDim, NUM_WARPS, device):
if is_xpu():
if (M, N, K, BLOCK_M, BLOCK_N, BLOCK_K, NUM_STAGES, nonKDim, NUM_WARPS) == (
1024, 512, 256, 128, 64, 128, 1, 0, 4) or (
M, N, K, BLOCK_M, BLOCK_N, BLOCK_K, NUM_STAGES, nonKDim, NUM_WARPS) == (
1024, 512, 256, 128, 64, 128, 3, 0, 4):
if (M, N, K, BLOCK_M, BLOCK_N, BLOCK_K, NUM_STAGES, nonKDim,
NUM_WARPS) == (1024, 512, 256, 128, 64, 128, 1, 0,
4) or (M, N, K, BLOCK_M, BLOCK_N, BLOCK_K, NUM_STAGES, nonKDim,
NUM_WARPS) == (1024, 512, 256, 128, 64, 128, 3, 0, 4):
pytest.skip("https://github.com/intel/intel-xpu-backend-for-triton/issues/3677")
if is_cuda() and torch.cuda.get_device_capability()[0] < 10:
pytest.skip("Requires compute capability >= 10")