Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhao9 committed Nov 19, 2024
1 parent dc2d5a8 commit 5809e27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_gpu/skip_tests_h100_pytorch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gemm:
- triton_tma_persistent_matmul
- triton_tma_persistent_cached_matmul
- hstu_triton_matmul
- colfax_gemm
- colfax_cutlass_matmul
jagged_layer_norm:
jagged_mean:
jagged_softmax:
Expand Down
6 changes: 5 additions & 1 deletion tritonbench/operators/gemm/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import csv
import os
from typing import Any, Callable, Generator, List, Optional, Tuple

import torch
import torch._inductor.config as inductor_config
import triton
Expand Down Expand Up @@ -39,7 +40,10 @@
)

if IS_FBCODE:
from hammer.ops.triton.triton_matmul import triton_matmul as hstu_triton_matmul_kernel
from hammer.ops.triton.triton_matmul import (
triton_matmul as hstu_triton_matmul_kernel,
)

HAS_HAMMER = True
else:
HAS_HAMMER = False
Expand Down

0 comments on commit 5809e27

Please sign in to comment.