Skip to content

Commit 3c11823

Browse files
authored
[Release] Bump version into 0.1.7.post1 (#1506)
1 parent d7e264f commit 3c11823

File tree

4 files changed

+3
-23
lines changed

4 files changed

+3
-23
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.7
1+
0.1.7.post1

tilelang/engine/lower.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from tvm.target import Target
1414
from tilelang.contrib import hipcc, nvcc
1515
from tilelang.transform import PassConfigKey
16-
from tilelang.utils.deprecated import deprecated_warning
1716
from tilelang.engine.param import KernelParam, CompiledArtifact
1817
from tilelang.utils.target import determine_target
1918
from tilelang.engine.phase import (
@@ -76,12 +75,7 @@ def tilelang_callback_cuda_compile(code, target, pass_config=None):
7675

7776
# Read pass-config keys (string-valued) like in jit.adapter.libgen.compile_lib
7877
cfg = pass_config or {}
79-
if cfg.get(PassConfigKey.TL_DISABLE_FAST_MATH, False):
80-
deprecated_warning("TL_DISABLE_FAST_MATH", "TL_ENABLE_FAST_MATH", "0.1.7")
81-
disable_fast_math = bool(cfg.get(PassConfigKey.TL_DISABLE_FAST_MATH, True))
82-
enable_fast_math = not disable_fast_math
83-
else:
84-
enable_fast_math = bool(cfg.get(PassConfigKey.TL_ENABLE_FAST_MATH, False))
78+
enable_fast_math = bool(cfg.get(PassConfigKey.TL_ENABLE_FAST_MATH, False))
8579

8680
ptxas_usage_level = cfg.get(PassConfigKey.TL_PTXAS_REGISTER_USAGE_LEVEL, None)
8781
verbose_ptxas_output = bool(cfg.get(PassConfigKey.TL_ENABLE_PTXAS_VERBOSE_OUTPUT, False))

tilelang/jit/adapter/libgen.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from tilelang.contrib.nvcc import get_nvcc_compiler, get_target_arch, get_target_compute_version
1414
from tilelang.contrib.rocm import find_rocm_path, get_rocm_arch
1515
from tilelang.env import TILELANG_TEMPLATE_PATH
16-
from tilelang.utils.deprecated import deprecated_warning
1716

1817
from .utils import is_cpu_target, is_cuda_target, is_hip_target
1918

@@ -60,15 +59,7 @@ def compile_lib(self, timeout: float = None):
6059
target_arch = get_target_arch(get_target_compute_version(target))
6160
libpath = src.name.replace(".cu", ".so")
6261

63-
if self.pass_configs.get(PassConfigKey.TL_DISABLE_FAST_MATH):
64-
deprecated_warning(
65-
"TL_DISABLE_FAST_MATH",
66-
"TL_ENABLE_FAST_MATH",
67-
"0.1.7",
68-
)
69-
enable_fast_math = not self.pass_configs.get(PassConfigKey.TL_DISABLE_FAST_MATH, True)
70-
else:
71-
enable_fast_math = self.pass_configs.get(PassConfigKey.TL_ENABLE_FAST_MATH, False)
62+
enable_fast_math = self.pass_configs.get(PassConfigKey.TL_ENABLE_FAST_MATH, False)
7263

7364
ptxas_usage_level = self.pass_configs.get(PassConfigKey.TL_PTXAS_REGISTER_USAGE_LEVEL, None)
7465
verbose_ptxas_output = self.pass_configs.get(PassConfigKey.TL_ENABLE_PTXAS_VERBOSE_OUTPUT, False)

tilelang/transform/pass_config.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ class PassConfigKey(str, Enum):
1313
TL_DISABLE_WARP_SPECIALIZED = "tl.disable_warp_specialized"
1414
"""Disable warp specialization optimization. Default: False"""
1515

16-
TL_DISABLE_FAST_MATH = "tl.disable_fast_math"
17-
"""Disable fast math optimization. Default: True
18-
will be deprecated in the 0.1.7 release
19-
"""
20-
2116
TL_ENABLE_FAST_MATH = "tl.enable_fast_math"
2217
"""
2318
Enable fast math optimization. Default: False

0 commit comments

Comments
 (0)