We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a340e8d commit 29751a0Copy full SHA for 29751a0
lightllm/common/triton_utils/autotuner.py
@@ -81,6 +81,9 @@ def __init__(
81
82
@torch.no_grad()
83
def __call__(self, *args, **kwargs):
84
+ if kwargs.get("run_config", None) is not None:
85
+ return self.fn(*args, **kwargs)
86
+
87
if self.disable_autotune:
88
return self.fn(*args, **kwargs)
89
0 commit comments