Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Feb 4, 2022
1 parent 0a82149 commit 78f76df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion python/tvm/contrib/cutlass/gen_gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ def profile(
profile_all_alignments=profile_all_alignments,
find_first_valid=find_first_valid,
use_multiprocessing=use_multiprocessing,

)

name, opdef = create_gemm_operator_with_epilogue(
Expand Down
9 changes: 8 additions & 1 deletion python/tvm/contrib/cutlass/gen_tensor_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,14 @@ def generate_tensor_op_common(


def generate_sm75_tensor_op_1688(
out_dtype, arg0_dtype, arg1_dtype, op_creator, check_align, _, profile_all_alignments=False, accumlator_dtype="float32",
out_dtype,
arg0_dtype,
arg1_dtype,
op_creator,
check_align,
_,
profile_all_alignments=False,
accumlator_dtype="float32",
):
"""Generate GEMM or Conv2D kernels for Turing."""
assert out_dtype in ["float32", "float16", "int32"]
Expand Down
1 change: 0 additions & 1 deletion tests/python/contrib/test_cutlass.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,6 @@ def test_conv2d_transpose():
)



@pytest.mark.skip("weird")
def test_conv2d_backward_weight():
OC = 8
Expand Down

0 comments on commit 78f76df

Please sign in to comment.