Transformers
Safetensors
t5
text2text-generation
protein-language-model
fastplms
custom_code
text-generation-inference
Instructions to use Synthyra/ANKH_base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Synthyra/ANKH_base with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Synthyra/ANKH_base", trust_remote_code=True) model = AutoModelForSeq2SeqLM.from_pretrained("Synthyra/ANKH_base", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 30,880 Bytes
a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea a3afa1d d2b84ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 | """Low-level attention kernels and mask construction.
The public backend contract lives in :mod:`fastplms.attention`. Optional
kernels are resolved only after a caller explicitly requests them, so importing
FastPLMs never downloads or compiles code.
"""
from __future__ import annotations
import warnings
import torch
from collections import OrderedDict
from collections.abc import Callable
from enum import Enum
from threading import RLock
from einops import rearrange
from torch.nn import functional as F
from ._kernel_lock import load_locked_kernel
try:
from torch.nn.attention.flex_attention import BlockMask, create_block_mask, flex_attention
except ImportError:
create_block_mask = None
flex_attention = None
BlockMask = None
_MAX_FLEX_CACHE_ENTRIES = 128
_compiled_flex_attention: OrderedDict[tuple, object] = OrderedDict()
_flex_block_masks: OrderedDict[tuple, BlockMask] = OrderedDict()
_flex_cache_lock = RLock()
def _remember(cache: OrderedDict, key: tuple, value):
"""Insert an item into a bounded least-recently-used cache."""
cache[key] = value
cache.move_to_end(key)
while len(cache) > _MAX_FLEX_CACHE_ENTRIES:
cache.popitem(last=False)
return value
def clear_flex_attention_caches() -> None:
"""Drop FastPLMs-owned compiled Flex callables and block masks.
This deliberately does not call :func:`torch.compiler.reset`, which would
clear process-global Torch compilation state owned by unrelated models.
Active forwards retain their local references and can complete safely.
"""
with _flex_cache_lock:
_compiled_flex_attention.clear()
_flex_block_masks.clear()
def _get_flex_attention_fn(
*,
device: torch.device | None = None,
dtype: torch.dtype | None = None,
shape: tuple[int, ...] | None = None,
sequence_lengths: tuple[int, ...] | None = None,
mask_semantics: str = "padding",
):
"""Return a compiled Flex callable for an explicit execution signature.
Compilation depends on execution shape, device, dtype, and mask semantics.
Per-example padding lengths are represented by the ``BlockMask`` argument
and must not create a new compiled graph for every batch composition.
"""
if flex_attention is None:
return None
# Retain the keyword for compatibility with remote-code artifacts while
# deliberately excluding data-dependent lengths from the compile key.
del sequence_lengths
flex_mod = torch.nn.attention.flex_attention
if getattr(flex_mod, "_FLEX_ATTENTION_DISABLE_COMPILE_DEBUG", False):
return flex_attention
key = (
None if device is None else str(device),
None if dtype is None else str(dtype),
shape,
mask_semantics,
)
with _flex_cache_lock:
compiled = _compiled_flex_attention.get(key)
if compiled is None:
compiled = torch.compile(flex_attention, dynamic=False)
_remember(_compiled_flex_attention, key, compiled)
else:
_compiled_flex_attention.move_to_end(key)
return compiled
def _get_flex_block_mask(
*,
mask_pattern: torch.Tensor,
batch_size: int,
query_length: int,
key_value_length: int,
device: torch.device,
dtype: torch.dtype | None,
mask_semantics: str,
mask_mod: Callable[
[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor],
torch.Tensor,
],
) -> BlockMask:
"""Return a bounded, exact-pattern cached Flex ``BlockMask``.
The complete pattern is transferred to the host once to avoid a CUDA
synchronization per batch row. Execution dtype remains part of the key
because compiled Flex plans can specialize on it even though the pattern
tensor itself is boolean or integer.
"""
if create_block_mask is None:
raise RuntimeError(
"'flex_attention' was requested, but torch.create_block_mask is unavailable."
)
pattern = mask_pattern.detach().to(device=device).contiguous() # mask_pattern.shape
# One device-to-host transfer is required for an exact cache identity. Use
# the contiguous buffer directly instead of materializing one Python int
# per byte, which is prohibitively expensive for long batched sequences.
host_pattern = pattern.to(device="cpu").contiguous() # mask_pattern.shape
pattern_bytes = host_pattern.view(torch.uint8).numpy().tobytes(order="C") # bytes
cache_key = (
str(device),
None if dtype is None else str(dtype),
(batch_size, query_length, key_value_length),
str(pattern.dtype),
pattern_bytes,
mask_semantics,
)
with _flex_cache_lock:
flex_block_mask = _flex_block_masks.get(cache_key)
if flex_block_mask is None:
flex_block_mask = create_block_mask(
mask_mod,
batch_size,
1,
query_length,
key_value_length,
device=device,
)
_remember(_flex_block_masks, cache_key, flex_block_mask)
else:
_flex_block_masks.move_to_end(cache_key)
return flex_block_mask
# Hugging Face `kernels` exposes slightly different APIs for FlashAttention 2
# and 3. Detect the loaded variant once so every caller uses the same dispatch.
def _infer_kernels_flash_variant(kernel) -> str | None:
if hasattr(kernel, "fwd") and hasattr(kernel, "varlen_fwd"):
return "flash_attn2"
if hasattr(kernel, "flash_attn_func") and hasattr(kernel, "flash_attn_varlen_func"):
return "flash_attn3"
return None
def _load_kernels_flash(implementation: str) -> tuple[object, str]:
"""Load exactly the requested FlashAttention kernel.
Loading is deferred until backend selection. A FlashAttention-2 request
never falls through to FlashAttention-3, or vice versa.
"""
from fastplms.registry import get_model_registry
kernel_spec = get_model_registry().attention_kernels[implementation]
repository = kernel_spec.repository
try:
flash_kernel = load_locked_kernel(repository, kernel_spec.revision)
except Exception as error:
raise RuntimeError(
f"Unable to load the manifest-pinned kernel "
f"{repository}@{kernel_spec.revision} for {implementation!r}."
) from error
flash_kernel_variant = _infer_kernels_flash_variant(flash_kernel)
if flash_kernel_variant != kernel_spec.expected_variant:
raise RuntimeError(
f"{repository}@{kernel_spec.revision} exposed {flash_kernel_variant!r}; "
f"expected {kernel_spec.expected_variant!r}."
)
if not all(
callable(getattr(flash_kernel, name, None))
for name in ("flash_attn_func", "flash_attn_varlen_func")
):
raise RuntimeError(
f"{repository}@{kernel_spec.revision} does not expose the "
"autograd-enabled flash_attn_func and flash_attn_varlen_func APIs."
)
return flash_kernel, flash_kernel_variant
_FLASH_KERNELS: dict[str, tuple[object, str]] = {}
def _validate_kernels_flash_dtype(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
implementation: str,
) -> torch.dtype:
"""Reject dtypes outside the immutable kernel manifest before dispatch."""
# query_states, key_states, value_states: (b, l, h, d) or (t, h, d)
tensor_dtypes = {query_states.dtype, key_states.dtype, value_states.dtype}
if len(tensor_dtypes) != 1:
observed = ", ".join(sorted(str(dtype) for dtype in tensor_dtypes))
raise RuntimeError(
f"{implementation!r} requires Q, K, and V to share one dtype; received {observed}."
)
runtime_dtype = query_states.dtype
if (
runtime_dtype == torch.float32
and query_states.is_cuda
and torch.is_autocast_enabled("cuda")
):
runtime_dtype = torch.get_autocast_dtype("cuda")
dtype_names = {
torch.float32: "float32",
torch.bfloat16: "bfloat16",
torch.float16: "float16",
}
runtime_dtype_name = dtype_names.get(runtime_dtype, str(runtime_dtype))
from fastplms.registry import get_model_registry
supported = get_model_registry().attention_kernels[implementation].dtypes
if runtime_dtype_name not in supported:
expected = ", ".join(supported)
raise RuntimeError(
f"{implementation!r} supports only manifest-declared dtype(s) {expected}; "
f"received {runtime_dtype_name}. Use CUDA BF16 autocast for FP32-resident "
"models."
)
return runtime_dtype
def _validate_kernels_flash_device(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
implementation: str,
) -> torch.device:
"""Require Q, K, and V on one CUDA device before loading a kernel."""
# query_states, key_states, value_states: (b, l, h, d) or (t, h, d)
devices = (query_states.device, key_states.device, value_states.device)
if len(set(devices)) != 1:
observed = ", ".join(str(device) for device in devices)
raise RuntimeError(
f"{implementation!r} requires Q, K, and V on one device; received {observed}."
)
device = devices[0]
if device.type != "cuda" or not all(
tensor.is_cuda for tensor in (query_states, key_states, value_states)
):
raise RuntimeError(
f"{implementation!r} requires CUDA Q, K, and V; received device {device}."
)
return device
def _ensure_flash_kernels_loaded(implementation: str) -> tuple[object, str]:
cached = _FLASH_KERNELS.get(implementation)
if cached is not None:
return cached
loaded = _load_kernels_flash(implementation)
_FLASH_KERNELS[implementation] = loaded
return loaded
def _kernels_flash_forward(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
causal: bool = False,
softmax_scale: float | None = None,
implementation: str = "flash_attention_3",
) -> torch.Tensor:
"""Flash-attention forward, optionally overriding the softmax scale.
When `softmax_scale is None`, the flash kernel applies its default
`1 / sqrt(head_dim)`. Pass `softmax_scale=1.0` if the caller has already
pre-scaled Q (the convention used by ESM2, DPLM, DPLM2, E1, ESMFold).
Failing to override when Q is pre-scaled applies the scale twice and breaks
parity with eager attention and SDPA.
"""
# query_states, key_states, value_states: (b, l, h, d)
flash_kernel, flash_kernel_variant = _ensure_flash_kernels_loaded(implementation)
if flash_kernel_variant == "flash_attn2":
output = flash_kernel.flash_attn_func( # (b, l, h, d) or tuple with that first
q=query_states,
k=key_states,
v=value_states,
dropout_p=0.0,
softmax_scale=softmax_scale,
causal=causal,
)
return output[0] if isinstance(output, tuple) else output # (b, l, h, d)
if flash_kernel_variant == "flash_attn3":
output = flash_kernel.flash_attn_func( # (b, l, h, d) or tuple with that first
q=query_states,
k=key_states,
v=value_states,
softmax_scale=softmax_scale,
causal=causal,
)
if isinstance(output, tuple):
return output[0] # (b, l, h, d)
return output # (b, l, h, d)
raise RuntimeError(f"Unsupported FlashAttention kernel variant: {flash_kernel_variant}")
def _kernels_flash_varlen_forward(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
cu_seqlens_q: torch.Tensor,
cu_seqlens_k: torch.Tensor,
max_seqlen_in_batch_q: int,
max_seqlen_in_batch_k: int,
causal: bool = False,
softmax_scale: float | None = None,
implementation: str = "flash_attention_3",
) -> torch.Tensor:
"""Varlen flash-attention forward, optionally overriding the softmax scale.
See `_kernels_flash_forward` docstring for why `softmax_scale=1.0` must be
passed when Q has been pre-scaled by the caller.
"""
# query_states, key_states, value_states: (t, h, d)
# cu_seqlens_q, cu_seqlens_k: (b + 1,)
flash_kernel, flash_kernel_variant = _ensure_flash_kernels_loaded(implementation)
if flash_kernel_variant == "flash_attn2":
output = flash_kernel.flash_attn_varlen_func( # (t, h, d) or tuple with that first
q=query_states,
k=key_states,
v=value_states,
cu_seqlens_q=cu_seqlens_q,
cu_seqlens_k=cu_seqlens_k,
max_seqlen_q=max_seqlen_in_batch_q,
max_seqlen_k=max_seqlen_in_batch_k,
dropout_p=0.0,
softmax_scale=softmax_scale,
causal=causal,
)
return output[0] if isinstance(output, tuple) else output # (t, h, d)
if flash_kernel_variant == "flash_attn3":
output = flash_kernel.flash_attn_varlen_func( # (t, h, d) or tuple with that first
q=query_states,
k=key_states,
v=value_states,
cu_seqlens_q=cu_seqlens_q,
cu_seqlens_k=cu_seqlens_k,
max_seqlen_q=max_seqlen_in_batch_q,
max_seqlen_k=max_seqlen_in_batch_k,
softmax_scale=softmax_scale,
causal=causal,
)
if isinstance(output, tuple):
return output[0] # (t, h, d)
return output # (t, h, d)
raise RuntimeError(f"Unsupported FlashAttention kernel variant: {flash_kernel_variant}")
# Varlen flash attention runs only on real tokens. These helpers remove padding
# before the kernel call and restore the original padded batch shape afterward.
class IndexFirstAxis(torch.autograd.Function):
@staticmethod
def forward(ctx, input, indices) -> torch.Tensor:
# input: (n, ...); indices: (m,)
ctx.save_for_backward(indices)
if input.ndim < 2:
raise ValueError(
"index_first_axis input must have at least two dimensions; "
f"received shape {tuple(input.shape)}."
)
if indices.ndim != 1:
raise ValueError(
"index_first_axis indices must be one-dimensional; "
f"received shape {tuple(indices.shape)}."
)
ctx.first_axis_dim, other_shape = input.shape[0], input.shape[1:]
second_dim = other_shape.numel()
return torch.gather( # (m, ...)
rearrange(input, "b ... -> b (...)"), 0, indices.unsqueeze(1).expand(-1, second_dim)
).reshape(-1, *other_shape)
@staticmethod
def backward(ctx, grad_output) -> tuple[torch.Tensor, None]:
# grad_output: (m, ...)
(indices,) = ctx.saved_tensors
if grad_output.ndim < 2:
raise RuntimeError(
"index_first_axis received an invalid gradient with fewer than "
"two dimensions."
)
other_shape = grad_output.shape[1:]
grad_output = rearrange(grad_output, "b ... -> b (...)") # (m, product(...))
grad_input = torch.zeros( # (n, product(...))
[ctx.first_axis_dim, grad_output.shape[1]],
device=grad_output.device,
dtype=grad_output.dtype,
)
grad_input.scatter_(0, indices.unsqueeze(1).expand(-1, grad_output.shape[1]), grad_output)
return grad_input.reshape(ctx.first_axis_dim, *other_shape), None # (n, ...), None
class IndexPutFirstAxis(torch.autograd.Function):
@staticmethod
def forward(ctx, values, indices, first_axis_dim) -> torch.Tensor:
# values: (m, ...); indices: (m,)
ctx.save_for_backward(indices)
if indices.ndim != 1:
raise ValueError(
"index_put_first_axis indices must be one-dimensional; "
f"received shape {tuple(indices.shape)}."
)
if values.ndim < 2:
raise ValueError(
"index_put_first_axis values must have at least two dimensions; "
f"received shape {tuple(values.shape)}."
)
output = torch.zeros( # (n, ...)
first_axis_dim, *values.shape[1:], device=values.device, dtype=values.dtype
)
output[indices] = values
return output # (n, ...)
@staticmethod
def backward(ctx, grad_output) -> tuple[torch.Tensor, None, None]:
# grad_output: (n, ...)
(indices,) = ctx.saved_tensors
return grad_output[indices], None, None # (m, ...), None, None
index_first_axis = IndexFirstAxis.apply
index_put_first_axis = IndexPutFirstAxis.apply
def pad_input(
hidden_states: torch.Tensor, indices: torch.Tensor, batch: int, seqlen: int
) -> torch.Tensor:
# hidden_states: (t, ...); indices: (t,)
output = index_put_first_axis(hidden_states, indices, batch * seqlen) # (b * l, ...)
return rearrange(output, "(b s) ... -> b s ...", b=batch) # (b, l, ...)
def _unpad_input(
query_layer: torch.Tensor,
key_layer: torch.Tensor,
value_layer: torch.Tensor,
attention_mask_2d: torch.Tensor,
) -> tuple[
torch.Tensor,
torch.Tensor,
torch.Tensor,
torch.Tensor,
tuple[torch.Tensor, torch.Tensor],
tuple[int, int],
]:
# query_layer, key_layer, value_layer: (b, l, h, d); attention_mask_2d: (b, l)
batch_size, seq_len, num_heads, head_dim = query_layer.shape
seqlens = attention_mask_2d.sum(dim=1).int() # (b,)
cu_seqlens = F.pad(seqlens.cumsum(0, dtype=torch.int32), (1, 0)) # (b + 1,)
max_seqlen = int(seqlens.max().item())
indices = attention_mask_2d.flatten().nonzero(as_tuple=False).flatten() # (t,)
query_layer = index_first_axis( # (t, h, d)
query_layer.reshape(batch_size * seq_len, num_heads, head_dim), indices
)
key_layer = index_first_axis( # (t, h, d)
key_layer.reshape(batch_size * seq_len, num_heads, head_dim), indices
)
value_layer = index_first_axis( # (t, h, d)
value_layer.reshape(batch_size * seq_len, num_heads, head_dim), indices
)
return (
query_layer,
key_layer,
value_layer,
indices,
(cu_seqlens, cu_seqlens),
(max_seqlen, max_seqlen),
)
def _validate_flash_padding_mask(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
attention_mask_2d: torch.Tensor,
) -> torch.Tensor:
"""Validate the self-attention padding mask used by the varlen kernels."""
# query_states, key_states, value_states: (b, l, h, d); attention_mask_2d: (b, l)
if attention_mask_2d.ndim != 2:
raise ValueError("FlashAttention padding masks must have shape (batch, sequence_length).")
expected_shape = query_states.shape[:2]
if tuple(attention_mask_2d.shape) != tuple(expected_shape):
raise ValueError(
"FlashAttention padding mask shape must match the query batch and "
f"sequence dimensions; expected {tuple(expected_shape)}, received "
f"{tuple(attention_mask_2d.shape)}."
)
if key_states.shape[:2] != expected_shape or value_states.shape[:2] != expected_shape:
raise ValueError(
"Masked FlashAttention requires Q, K, and V to share batch and sequence dimensions."
)
if attention_mask_2d.device != query_states.device:
raise ValueError("FlashAttention padding mask and Q, K, and V must be on the same device.")
return attention_mask_2d.to(dtype=torch.bool) # (b, l)
def kernels_flash_attention_func(
query_states: torch.Tensor,
key_states: torch.Tensor,
value_states: torch.Tensor,
attention_mask_2d: torch.Tensor | None = None,
causal: bool = False,
softmax_scale: float | None = None,
implementation: str = "flash_attention_3",
) -> torch.Tensor:
"""Public flash-attention entry point with optional padding handling.
`softmax_scale`:
None -> kernel applies its default `1 / sqrt(head_dim)`.
float -> kernel uses the given scale (pass 1.0 when Q is pre-scaled
by the caller).
Caller contract: if a model family pre-scales Q by `1/sqrt(head_dim)`
before calling this function (ESM2, DPLM, DPLM2, E1, and ESMFold do), pass
`softmax_scale=1.0`. Otherwise the flash kernel applies its default scale
again, yielding an effective `1/head_dim` scale that drifts across layers.
"""
# query_states, key_states, value_states: (b, l, h, d)
# attention_mask_2d: (b, l) or None
_validate_kernels_flash_device(
query_states,
key_states,
value_states,
implementation,
)
runtime_dtype = _validate_kernels_flash_dtype(
query_states,
key_states,
value_states,
implementation,
)
if query_states.dtype != runtime_dtype:
query_states = query_states.to(dtype=runtime_dtype) # (b, l, h, d)
key_states = key_states.to(dtype=runtime_dtype) # (b, l, h, d)
value_states = value_states.to(dtype=runtime_dtype) # (b, l, h, d)
if attention_mask_2d is not None:
attention_mask_2d = _validate_flash_padding_mask( # (b, l)
query_states,
key_states,
value_states,
attention_mask_2d,
)
_ensure_flash_kernels_loaded(implementation)
if attention_mask_2d is not None:
batch_size, q_len = query_states.shape[:2]
(
query_states,
key_states,
value_states,
indices_q,
(cu_seqlens_q, cu_seqlens_k),
(max_seqlen_q, max_seqlen_k),
) = _unpad_input( # (t, h, d), (t, h, d), (t, h, d), (t,), (b + 1,), scalars
query_states,
key_states,
value_states,
attention_mask_2d,
)
attn_output_unpad = _kernels_flash_varlen_forward( # (t, h, d)
query_states=query_states,
key_states=key_states,
value_states=value_states,
cu_seqlens_q=cu_seqlens_q,
cu_seqlens_k=cu_seqlens_k,
max_seqlen_in_batch_q=max_seqlen_q,
max_seqlen_in_batch_k=max_seqlen_k,
causal=causal,
softmax_scale=softmax_scale,
implementation=implementation,
)
output = pad_input(attn_output_unpad, indices_q, batch_size, q_len) # (b, l, h, d)
return output.masked_fill(~attention_mask_2d[:, :, None, None], 0) # (b, l, h, d)
else:
return _kernels_flash_forward( # (b, l, h, d)
query_states=query_states,
key_states=key_states,
value_states=value_states,
causal=causal,
softmax_scale=softmax_scale,
implementation=implementation,
)
# User-facing backend strings follow the Transformers attention interface.
# Keep ``str`` plus ``Enum`` so stringification stays compatible with existing
# configuration serialization rather than adopting ``StrEnum.__str__``.
class AttentionBackend(str, Enum): # noqa: UP042
EAGER = "eager"
SDPA = "sdpa"
FLEX_ATTENTION = "flex_attention"
FLASH_ATTENTION_2 = "flash_attention_2"
FLASH_ATTENTION_3 = "flash_attention_3"
# Internal spelling retained to keep attention modules concise. It is an
# enum alias, not an accepted public backend string.
FLEX = FLEX_ATTENTION
@property
def is_flash(self) -> bool:
return self in {
AttentionBackend.FLASH_ATTENTION_2,
AttentionBackend.FLASH_ATTENTION_3,
}
VALID_ATTENTION_BACKENDS = tuple(b.value for b in AttentionBackend)
def warn_attention_backend_fallback(
requested_backend: str | AttentionBackend,
*,
effective_backend: str | AttentionBackend,
reason: str,
) -> None:
"""Warn when one forward call cannot honor the configured backend."""
requested = resolve_attention_backend(requested_backend).value
effective = resolve_attention_backend(effective_backend).value
if requested == effective:
return
warnings.warn(
f"{reason} The requested {requested!r} attention implementation cannot "
f"satisfy this call, so FastPLMs is using {effective!r} attention for this "
"call only. This can change performance and memory use; the configured "
"backend remains unchanged for subsequent calls.",
RuntimeWarning,
stacklevel=3,
)
def resolve_attention_backend_for_call(
requested_backend: str | AttentionBackend,
*,
output_attentions: bool,
) -> AttentionBackend:
"""Resolve the effective backend for one call and report substitutions once."""
requested = resolve_attention_backend(requested_backend)
if not output_attentions or requested == AttentionBackend.EAGER:
return requested
warn_attention_backend_fallback(
requested,
effective_backend=AttentionBackend.EAGER,
reason=(
"output_attentions=True requires the full materialized attention probability "
"matrix, which optimized PyTorch attention APIs do not return."
),
)
return AttentionBackend.EAGER
def resolve_attention_backend(
requested_backend: str | AttentionBackend | None,
) -> AttentionBackend:
"""Validate a backend without silently substituting another implementation."""
if requested_backend is None:
requested_backend = AttentionBackend.SDPA.value
if isinstance(requested_backend, AttentionBackend):
resolved = requested_backend
else:
try:
resolved = AttentionBackend(requested_backend)
except ValueError as error:
raise ValueError(
f"Unsupported attention implementation {requested_backend!r}; "
f"expected one of {VALID_ATTENTION_BACKENDS}."
) from error
if resolved == AttentionBackend.FLEX_ATTENTION and flex_attention is None:
raise RuntimeError(
"'flex_attention' was requested, but this PyTorch build does not provide it."
)
return resolved
def get_attn_implementation(config) -> str:
"""Read the Transformers attention setting, defaulting to SDPA."""
requested = getattr(config, "_attn_implementation", None)
if requested is None:
requested = getattr(config, "attn_backend", None)
return resolve_attention_backend(requested).value
def set_config_attn_implementation(config, implementation: str) -> str:
"""Set both the Transformers field and the internal dispatch field."""
resolved = resolve_attention_backend(implementation).value
if hasattr(config, "_attn_implementation_internal"):
config._attn_implementation_internal = resolved
else:
config._attn_implementation = resolved
# Existing checkpoint configs contain this field. Keeping it synchronized
# preserves their state schema while the public API uses attn_implementation.
config.attn_backend = resolved
return resolved
@torch.compiler.disable
def get_attention_mask(
effective_backend: AttentionBackend,
batch_size: int,
seq_len: int,
device: torch.device,
attention_mask: torch.Tensor | None = None,
dtype: torch.dtype | None = None,
mask_semantics: str = "padding",
) -> tuple[torch.Tensor | None, torch.Tensor | None, BlockMask | None]:
"""Build padding masks once for all encoder layers.
Returns (attention_mask_2d, attention_mask_4d, flex_block_mask).
"""
# attention_mask: (b, l) or None
if attention_mask is None:
return None, None, None
if attention_mask.ndim != 2:
raise ValueError(
"attention_mask must have shape (batch, sequence_length); "
f"received rank {attention_mask.ndim} with shape {tuple(attention_mask.shape)}."
)
expected_shape = (batch_size, seq_len)
if tuple(attention_mask.shape) != expected_shape:
raise ValueError(
"attention_mask shape must match the input batch and sequence dimensions; "
f"expected {expected_shape}, received {tuple(attention_mask.shape)}."
)
attention_mask_2d = attention_mask.to(device=device, dtype=torch.bool) # (b, l)
if not bool(attention_mask_2d.any(dim=1).all()):
raise ValueError("attention_mask must keep at least one valid key per batch row.")
effective_backend = resolve_attention_backend(effective_backend)
if effective_backend.is_flash:
return attention_mask_2d, None, None # (b, l), None, None
if effective_backend == AttentionBackend.FLEX_ATTENTION:
if create_block_mask is None:
raise RuntimeError(
"'flex_attention' was requested, but torch.create_block_mask is unavailable."
)
def mask_mod(batch_idx, head_idx, q_idx, kv_idx):
del head_idx, q_idx
# Match eager and SDPA: padding masks suppress invalid keys only.
# Invalid queries still attend to real keys and therefore remain
# finite; downstream residue masks exclude their outputs.
return attention_mask_2d[batch_idx, kv_idx]
flex_block_mask = _get_flex_block_mask(
mask_pattern=attention_mask_2d,
batch_size=batch_size,
query_length=seq_len,
key_value_length=seq_len,
device=device,
dtype=dtype,
mask_semantics=mask_semantics,
mask_mod=mask_mod,
)
return attention_mask_2d, None, flex_block_mask # (b, l), None, BlockMask
# SDPA/manual masks only keys. Padding queries still attend to real keys, so
# their outputs stay finite instead of softmaxing over all -inf scores.
attention_mask_4d = attention_mask_2d[:, None, None, :] # (b, 1, 1, l)
return attention_mask_2d, attention_mask_4d, None # (b, l), (b, 1, 1, l), None
def bool_to_additive_mask(
bool_mask: torch.Tensor,
dtype: torch.dtype,
) -> torch.Tensor:
"""Convert a bool mask (True = valid) to a float additive mask (0.0 valid, -inf invalid).
Why this exists: calling `bool_mask.masked_fill(bool_mask.logical_not(), float('-inf'))`
directly on a bool tensor returns a bool tensor because `-inf` casts to `True`.
That silently drops the mask. Always allocate a float tensor first, then fill it.
This helper is the sanctioned way to build an SDPA additive mask from a bool validity mask.
"""
# bool_mask: (...)
if bool_mask.dtype != torch.bool:
raise TypeError(
f"bool_to_additive_mask requires a bool tensor, got dtype={bool_mask.dtype}"
)
additive = torch.zeros_like(bool_mask, dtype=dtype) # (...)
additive.masked_fill_(bool_mask.logical_not(), float("-inf"))
return additive # (...)
|