updated default value
This commit is contained in:
parent
ac2dccd174
commit
a24c2cc5e9
|
@ -283,7 +283,7 @@ elif ENGINE == "triton":
|
||||||
softmax_scale: float,
|
softmax_scale: float,
|
||||||
window_size_left: int = -1,
|
window_size_left: int = -1,
|
||||||
causal: bool = True,
|
causal: bool = True,
|
||||||
softcap: float = 0.0,
|
softcap: Optional[float] = None,
|
||||||
):
|
):
|
||||||
if softcap is not None:
|
if softcap is not None:
|
||||||
raise NotImplementedError("softcap is only available with CK flash attn")
|
raise NotImplementedError("softcap is only available with CK flash attn")
|
||||||
|
|
Loading…
Reference in New Issue