Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
tilelang
Commits
5e529522
Unverified
Commit
5e529522
authored
Sep 13, 2025
by
Yichen Yan
Committed by
GitHub
Sep 13, 2025
Browse files
[Lint] Add ruff config to check for useless spaces (#807)
* update lint config * Remove spaces for blank line * update
parent
4d54854b
Changes
18
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
147 additions
and
145 deletions
+147
-145
benchmark/matmul/benchmark_matmul.py
benchmark/matmul/benchmark_matmul.py
+1
-1
benchmark/matmul/benchmark_matmul_intrinsic.py
benchmark/matmul/benchmark_matmul_intrinsic.py
+1
-1
benchmark/matmul/benchmark_matmul_sp.py
benchmark/matmul/benchmark_matmul_sp.py
+1
-1
benchmark/matmul_fp8/benchmark_matmul.py
benchmark/matmul_fp8/benchmark_matmul.py
+1
-1
examples/bitnet-1.58b/kernel_benchmark/tilelang_bitnet_158_int8xint2_prefill.py
...kernel_benchmark/tilelang_bitnet_158_int8xint2_prefill.py
+7
-7
examples/bitnet-1.58b/vllm_workspace/utils.py
examples/bitnet-1.58b/vllm_workspace/utils.py
+1
-1
examples/dequantize_gemm/example_dequant_gemm_bf16_fp4_hopper.py
...s/dequantize_gemm/example_dequant_gemm_bf16_fp4_hopper.py
+37
-37
examples/dequantize_gemm/example_dequant_gemm_bf16_mxfp4_hopper.py
...dequantize_gemm/example_dequant_gemm_bf16_mxfp4_hopper.py
+36
-36
examples/dequantize_gemm/example_dequant_gemm_bf16_mxfp4_hopper_tma.py
...antize_gemm/example_dequant_gemm_bf16_mxfp4_hopper_tma.py
+36
-36
examples/dequantize_gemm/utils.py
examples/dequantize_gemm/utils.py
+9
-9
examples/fusedmoe/example_fusedmoe_tilelang.py
examples/fusedmoe/example_fusedmoe_tilelang.py
+2
-2
examples/fusedmoe/example_fusedmoe_torch.py
examples/fusedmoe/example_fusedmoe_torch.py
+2
-2
examples/gdn/utils.py
examples/gdn/utils.py
+1
-1
examples/gemm/example_gemm_autotune.py
examples/gemm/example_gemm_autotune.py
+6
-6
examples/linear_attention/example_retention_fwd.py
examples/linear_attention/example_retention_fwd.py
+1
-1
examples/minference/test_vs_sparse_attn.py
examples/minference/test_vs_sparse_attn.py
+1
-1
examples/seer_attention/test_block_sparse_attn_tilelang.py
examples/seer_attention/test_block_sparse_attn_tilelang.py
+1
-1
pyproject.toml
pyproject.toml
+3
-1
No files found.
benchmark/matmul/benchmark_matmul.py
View file @
5e529522
benchmark/matmul/benchmark_matmul_intrinsic.py
View file @
5e529522
benchmark/matmul/benchmark_matmul_sp.py
View file @
5e529522
benchmark/matmul_fp8/benchmark_matmul.py
View file @
5e529522
examples/bitnet-1.58b/kernel_benchmark/tilelang_bitnet_158_int8xint2_prefill.py
View file @
5e529522
examples/bitnet-1.58b/vllm_workspace/utils.py
View file @
5e529522
examples/dequantize_gemm/example_dequant_gemm_bf16_fp4_hopper.py
View file @
5e529522
examples/dequantize_gemm/example_dequant_gemm_bf16_mxfp4_hopper.py
View file @
5e529522
examples/dequantize_gemm/example_dequant_gemm_bf16_mxfp4_hopper_tma.py
View file @
5e529522
examples/dequantize_gemm/utils.py
View file @
5e529522
examples/fusedmoe/example_fusedmoe_tilelang.py
View file @
5e529522
examples/fusedmoe/example_fusedmoe_torch.py
View file @
5e529522
examples/gdn/utils.py
View file @
5e529522
examples/gemm/example_gemm_autotune.py
View file @
5e529522
examples/linear_attention/example_retention_fwd.py
View file @
5e529522
examples/minference/test_vs_sparse_attn.py
View file @
5e529522
examples/seer_attention/test_block_sparse_attn_tilelang.py
View file @
5e529522
pyproject.toml
View file @
5e529522
...
...
@@ -31,7 +31,7 @@ skip = [
[tool.ruff.lint]
select
=
[
# pycodestyle
"E"
,
"E"
,
"W"
,
# Pyflakes
"F"
,
# pyupgrade
...
...
@@ -59,3 +59,5 @@ ignore = [
# No such file or directory
"E902"
,
]
[tool.ruff.lint.per-file-ignores]
"3rdparty/**/*"
=
["ALL"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment