[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2026-07-07 22:29:49 +00:00
commit 8f493da647
2 changed files with 43 additions and 43 deletions

View file

@ -33,13 +33,13 @@ compat = _load_compat_module()
def test_no_deprecation_warning_on_causal_mask():
with warnings.catch_warnings(record=True) as caught:
with warnings.catch_warnings(record = True) as caught:
warnings.simplefilter("always")
compat.AttentionMaskConverter(is_causal=True, sliding_window=3).to_causal_4d(
compat.AttentionMaskConverter(is_causal = True, sliding_window = 3).to_causal_4d(
1,
8,
8,
dtype=torch.float16,
dtype = torch.float16,
)
assert not any(
issubclass(w.category, FutureWarning) and "modeling_attn_mask_utils" in str(w.message)
@ -62,23 +62,23 @@ def test_causal_4d_matches_transformers(batch_size, query_length, sliding_window
with warnings.catch_warnings():
warnings.simplefilter("ignore", FutureWarning)
expected = legacy.AttentionMaskConverter(
is_causal=True,
sliding_window=sliding_window,
is_causal = True,
sliding_window = sliding_window,
).to_causal_4d(
batch_size,
query_length,
key_value_length,
dtype=dtype,
dtype = dtype,
)
actual = compat.AttentionMaskConverter(
is_causal=True,
sliding_window=sliding_window,
is_causal = True,
sliding_window = sliding_window,
).to_causal_4d(
batch_size,
query_length,
key_value_length,
dtype=dtype,
dtype = dtype,
)
if expected is None:
@ -106,7 +106,7 @@ def test_prepare_4d_causal_attention_mask_for_sdpa_matches_transformers(
batch_size = 2 if attention_mask is not None else 1
query_length = 5
inputs_embeds = torch.zeros(batch_size, query_length, 16, dtype=torch.float32)
inputs_embeds = torch.zeros(batch_size, query_length, 16, dtype = torch.float32)
with warnings.catch_warnings():
warnings.simplefilter("ignore", FutureWarning)
@ -115,7 +115,7 @@ def test_prepare_4d_causal_attention_mask_for_sdpa_matches_transformers(
(batch_size, query_length),
inputs_embeds,
past_length,
sliding_window=3,
sliding_window = 3,
)
actual = compat._prepare_4d_causal_attention_mask_for_sdpa(
@ -123,7 +123,7 @@ def test_prepare_4d_causal_attention_mask_for_sdpa_matches_transformers(
(batch_size, query_length),
inputs_embeds,
past_length,
sliding_window=3,
sliding_window = 3,
)
if expected is None:
@ -138,14 +138,14 @@ def test_prepare_4d_attention_mask_for_sdpa_matches_transformers():
except ImportError:
pytest.skip("transformers.modeling_attn_mask_utils unavailable")
mask = torch.tensor([[1, 1, 0, 0], [1, 1, 1, 1]], dtype=torch.float32)
mask = torch.tensor([[1, 1, 0, 0], [1, 1, 1, 1]], dtype = torch.float32)
dtype = torch.float32
with warnings.catch_warnings():
warnings.simplefilter("ignore", FutureWarning)
expected = legacy._prepare_4d_attention_mask_for_sdpa(mask, dtype=dtype)
expected = legacy._prepare_4d_attention_mask_for_sdpa(mask, dtype = dtype)
actual = compat._prepare_4d_attention_mask_for_sdpa(mask, dtype=dtype)
actual = compat._prepare_4d_attention_mask_for_sdpa(mask, dtype = dtype)
if expected is None:
assert actual is None
@ -159,7 +159,7 @@ def test_repo_has_no_direct_deprecated_imports():
for path in model_dir.glob("*.py"):
if path.name == "_attn_mask_compat.py":
continue
text = path.read_text(encoding="utf-8")
text = path.read_text(encoding = "utf-8")
if "transformers.modeling_attn_mask_utils" in text:
offenders.append(str(path.relative_to(_REPO_ROOT)))
assert offenders == []
@ -224,7 +224,7 @@ def test_import_falls_back_when_is_tracing_missing():
assert reloaded.is_tracing(proxy) is True
# ``torch.jit.is_tracing()`` should be detected via patch.
with mock.patch("torch.jit.is_tracing", return_value=True):
with mock.patch("torch.jit.is_tracing", return_value = True):
assert reloaded.is_tracing() is True
# Dynamo compilation is also covered (the fallback calls

View file

@ -47,7 +47,7 @@ try:
from transformers.utils.import_utils import is_tracing # type: ignore[attr-defined]
except ImportError:
def is_tracing(tensor=None) -> bool: # type: ignore[no-redef]
def is_tracing(tensor = None) -> bool: # type: ignore[no-redef]
"""Local fallback for transformers < 4.52.
Returns True when the active context is any of: ``torch.jit.trace``,
@ -104,9 +104,9 @@ class AttentionMaskConverter:
causal_4d_mask = self._make_causal_mask(
input_shape,
dtype,
device=device,
past_key_values_length=past_key_values_length,
sliding_window=self.sliding_window,
device = device,
past_key_values_length = past_key_values_length,
sliding_window = self.sliding_window,
)
return causal_4d_mask
@ -131,9 +131,9 @@ class AttentionMaskConverter:
causal_4d_mask = self._make_causal_mask(
input_shape,
dtype,
device=attention_mask_2d.device,
past_key_values_length=past_key_values_length,
sliding_window=self.sliding_window,
device = attention_mask_2d.device,
past_key_values_length = past_key_values_length,
sliding_window = self.sliding_window,
)
elif self.sliding_window is not None:
raise NotImplementedError(
@ -141,7 +141,7 @@ class AttentionMaskConverter:
)
expanded_attn_mask = self._expand_mask(
attention_mask_2d, dtype, tgt_len=input_shape[-1]
attention_mask_2d, dtype, tgt_len = input_shape[-1]
).to(attention_mask_2d.device)
if causal_4d_mask is not None:
@ -160,22 +160,22 @@ class AttentionMaskConverter:
sliding_window: int | None = None,
):
bsz, tgt_len = input_ids_shape
mask = torch.full((tgt_len, tgt_len), torch.finfo(dtype).min, device=device)
mask_cond = torch.arange(mask.size(-1), device=device)
mask = torch.full((tgt_len, tgt_len), torch.finfo(dtype).min, device = device)
mask_cond = torch.arange(mask.size(-1), device = device)
mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
mask = mask.to(dtype)
if past_key_values_length > 0:
mask = torch.cat(
[torch.zeros(tgt_len, past_key_values_length, dtype=dtype, device=device), mask],
dim=-1,
[torch.zeros(tgt_len, past_key_values_length, dtype = dtype, device = device), mask],
dim = -1,
)
if sliding_window is not None:
diagonal = past_key_values_length - sliding_window - 1
context_mask = torch.tril(torch.ones_like(mask, dtype=torch.bool), diagonal=diagonal)
context_mask = torch.tril(torch.ones_like(mask, dtype = torch.bool), diagonal = diagonal)
if is_torchdynamo_compiling():
mask = mask.clone()
mask.masked_fill_(context_mask, torch.finfo(dtype).min)
@ -204,7 +204,7 @@ class AttentionMaskConverter:
"AttentionMaskConverter._unmask_unattended expects a float `expanded_mask`, got a BoolTensor."
)
return expanded_mask.mul(~torch.all(expanded_mask == min_dtype, dim=-1, keepdim=True))
return expanded_mask.mul(~torch.all(expanded_mask == min_dtype, dim = -1, keepdim = True))
@staticmethod
def _ignore_causal_mask_sdpa(
@ -245,17 +245,17 @@ def _prepare_4d_causal_attention_mask_for_sdpa(
past_key_values_length: int,
sliding_window: int | None = None,
):
attn_mask_converter = AttentionMaskConverter(is_causal=True, sliding_window=sliding_window)
attn_mask_converter = AttentionMaskConverter(is_causal = True, sliding_window = sliding_window)
key_value_length = input_shape[-1] + past_key_values_length
is_tracing_ = is_tracing(inputs_embeds)
ignore_causal_mask = AttentionMaskConverter._ignore_causal_mask_sdpa(
attention_mask=attention_mask,
inputs_embeds=inputs_embeds,
past_key_values_length=past_key_values_length,
sliding_window=sliding_window,
attention_mask = attention_mask,
inputs_embeds = inputs_embeds,
past_key_values_length = past_key_values_length,
sliding_window = sliding_window,
)
if ignore_causal_mask:
@ -265,8 +265,8 @@ def _prepare_4d_causal_attention_mask_for_sdpa(
input_shape[0],
input_shape[-1],
key_value_length,
dtype=inputs_embeds.dtype,
device=inputs_embeds.device,
dtype = inputs_embeds.dtype,
device = inputs_embeds.device,
)
else:
if attention_mask.dim() == 4:
@ -275,8 +275,8 @@ def _prepare_4d_causal_attention_mask_for_sdpa(
expanded_4d_mask = attn_mask_converter.to_4d(
attention_mask,
input_shape[-1],
dtype=inputs_embeds.dtype,
key_value_length=key_value_length,
dtype = inputs_embeds.dtype,
key_value_length = key_value_length,
)
if (
@ -285,7 +285,7 @@ def _prepare_4d_causal_attention_mask_for_sdpa(
and expanded_4d_mask.device.type in ["cuda", "xpu"]
):
expanded_4d_mask = AttentionMaskConverter._unmask_unattended(
expanded_4d_mask, min_dtype=torch.finfo(inputs_embeds.dtype).min
expanded_4d_mask, min_dtype = torch.finfo(inputs_embeds.dtype).min
)
return expanded_4d_mask
@ -296,7 +296,7 @@ def _prepare_4d_attention_mask(
dtype: torch.dtype,
tgt_len: int | None = None,
):
return AttentionMaskConverter._expand_mask(mask=mask, dtype=dtype, tgt_len=tgt_len)
return AttentionMaskConverter._expand_mask(mask = mask, dtype = dtype, tgt_len = tgt_len)
def _prepare_4d_attention_mask_for_sdpa(
@ -310,4 +310,4 @@ def _prepare_4d_attention_mask_for_sdpa(
if not is_tracing(mask) and torch.all(mask == 1):
return None
return AttentionMaskConverter._expand_mask(mask=mask, dtype=dtype, tgt_len=tgt_len)
return AttentionMaskConverter._expand_mask(mask = mask, dtype = dtype, tgt_len = tgt_len)