File size: 18,265 Bytes
35cdf53 | 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 |
"""Haiku modules for the Diffuser model."""
from collections.abc import Sequence
from typing import Literal
from flax_model.alphafold3.common import base_config
from flax_model.alphafold3.jax.attention import attention
from flax_model.alphafold3.jax.gated_linear_unit import gated_linear_unit
from flax_model.alphafold3.model import model_config
from flax_model.alphafold3.model.components import haiku_modules as hm
from flax_model.alphafold3.model.components import mapping
from flax_model.alphafold3.model.network import diffusion_transformer
import haiku as hk
import jax
import jax.numpy as jnp
def get_shard_size(
num_residues: int, shard_spec: Sequence[tuple[int | None, int | None]]
) -> int | None:
shard_size = shard_spec[0][-1]
for num_residues_upper_bound, num_residues_shard_size in shard_spec:
shard_size = num_residues_shard_size
if (
num_residues_upper_bound is None
or num_residues <= num_residues_upper_bound
):
break
return shard_size
class TransitionBlock(hk.Module):
"""Transition block for transformer."""
class Config(base_config.BaseConfig):
num_intermediate_factor: int = 4
use_glu_kernel: bool = True
def __init__(
self, config: Config, global_config: model_config.GlobalConfig, *, name
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
def __call__(self, act, broadcast_dim=0):
num_channels = act.shape[-1]
num_intermediate = int(num_channels * self.config.num_intermediate_factor)
act = hm.LayerNorm(name='input_layer_norm')(act)
if self.config.use_glu_kernel:
weights, _ = hm.haiku_linear_get_params(
act,
num_output=num_intermediate * 2,
initializer='relu',
name='transition1',
)
weights = jnp.reshape(weights, (len(weights), 2, num_intermediate))
c = gated_linear_unit.gated_linear_unit(
x=act, weight=weights, implementation=None, activation=jax.nn.swish
)
else:
act = hm.Linear(
num_intermediate * 2, initializer='relu', name='transition1'
)(act)
a, b = jnp.split(act, 2, axis=-1)
c = jax.nn.swish(a) * b
return hm.Linear(
num_channels,
initializer=self.global_config.final_init,
name='transition2',
)(c)
class MSAAttention(hk.Module):
"""MSA Attention."""
class Config(base_config.BaseConfig):
num_head: int = 8
def __init__(
self, config: Config, global_config: model_config.GlobalConfig, *, name
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
def __call__(self, act, mask, pair_act):
act = hm.LayerNorm(name='act_norm')(act)
pair_act = hm.LayerNorm(name='pair_norm')(pair_act)
logits = hm.Linear(
self.config.num_head, use_bias=False, name='pair_logits'
)(pair_act)
logits = jnp.transpose(logits, [2, 0, 1])
logits += 1e9 * (jnp.max(mask, axis=0) - 1.0)
weights = jax.nn.softmax(logits, axis=-1)
num_channels = act.shape[-1]
value_dim = num_channels // self.config.num_head
v = hm.Linear(
[self.config.num_head, value_dim], use_bias=False, name='v_projection'
)(act)
v_avg = jnp.einsum('hqk, bkhc -> bqhc', weights, v)
v_avg = jnp.reshape(v_avg, v_avg.shape[:-2] + (-1,))
gate_values = hm.Linear(
self.config.num_head * value_dim,
bias_init=1.0,
initializer='zeros',
name='gating_query',
)(act)
v_avg *= jax.nn.sigmoid(gate_values)
return hm.Linear(
num_channels,
initializer=self.global_config.final_init,
name='output_projection',
)(v_avg)
class GridSelfAttention(hk.Module):
"""Self attention that is either per-sequence or per-residue."""
class Config(base_config.BaseConfig):
num_head: int = 4
def __init__(
self,
config: Config,
global_config: model_config.GlobalConfig,
transpose: bool,
*,
name: str,
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
self.transpose = transpose
@hk.transparent
def _attention(
self,
act,
mask,
bias,
):
num_channels = act.shape[-1]
assert num_channels % self.config.num_head == 0
# Triton requires a minimum dimension of 16 for doing matmul.
qkv_dim = max(num_channels // self.config.num_head, 16)
qkv_shape = (self.config.num_head, qkv_dim)
q = hm.Linear(
qkv_shape, use_bias=False, name='q_projection', transpose_weights=True
)(act)
k = hm.Linear(
qkv_shape, use_bias=False, name='k_projection', transpose_weights=True
)(act)
v = hm.Linear(qkv_shape, use_bias=False, name='v_projection')(act)
# Dot product attention requires the bias term to have a batch dimension.
bias = jnp.expand_dims(bias, 0)
weighted_avg = attention.dot_product_attention(
q,
k,
v,
mask=mask,
bias=bias,
implementation=self.global_config.flash_attention_implementation,
)
weighted_avg = jnp.reshape(weighted_avg, weighted_avg.shape[:-2] + (-1,))
gate_values = hm.Linear(
self.config.num_head * qkv_dim,
bias_init=1.0,
initializer='zeros',
transpose_weights=True,
name='gating_query',
)(act)
weighted_avg *= jax.nn.sigmoid(gate_values)
return hm.Linear(
num_channels,
initializer=self.global_config.final_init,
name='output_projection',
)(weighted_avg)
def __call__(self, act, pair_mask):
"""Builds a module.
Arguments:
act: [num_seq, num_res, channels] activations tensor
pair_mask: [num_seq, num_res] mask of non-padded regions in the tensor.
Only used in inducing points attention currently.
Returns:
Result of the self-attention operation.
"""
assert len(act.shape) == 3
assert len(pair_mask.shape) == 2
pair_mask = jnp.swapaxes(pair_mask, -1, -2)
act = hm.LayerNorm(name='act_norm')(act)
nonbatched_bias = hm.Linear(
self.config.num_head, use_bias=False, name='pair_bias_projection'
)(act)
nonbatched_bias = jnp.transpose(nonbatched_bias, [2, 0, 1])
num_residues = act.shape[0]
chunk_size = get_shard_size(
num_residues, self.global_config.pair_attention_chunk_size
)
if self.transpose:
act = jnp.swapaxes(act, -2, -3)
pair_mask = pair_mask[:, None, None, :].astype(jnp.bool_)
act = mapping.inference_subbatch(
self._attention,
chunk_size,
batched_args=[act, pair_mask],
nonbatched_args=[nonbatched_bias],
)
if self.transpose:
act = jnp.swapaxes(act, -2, -3)
return act
class TriangleMultiplication(hk.Module):
"""Triangle Multiplication."""
class Config(base_config.BaseConfig):
equation: Literal['ikc,jkc->ijc', 'kjc,kic->ijc']
use_glu_kernel: bool = True
def __init__(
self, config: Config, global_config: model_config.GlobalConfig, *, name
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
def __call__(self, act, mask):
"""Applies Module.
Args:
act: The activation.
mask: The mask.
Returns:
Outputs, should have same shape/type as output_act
"""
mask = mask[None, ...]
num_channels = act.shape[-1]
equation = {
'ikc,jkc->ijc': 'cik,cjk->cij',
'kjc,kic->ijc': 'ckj,cki->cij',
}[self.config.equation]
act = hm.LayerNorm(name='left_norm_input')(act)
input_act = act
if self.config.use_glu_kernel:
weights_projection, _ = hm.haiku_linear_get_params(
act, num_output=num_channels * 2, name='projection'
)
weights_gate, _ = hm.haiku_linear_get_params(
act,
num_output=num_channels * 2,
initializer=self.global_config.final_init,
name='gate',
)
weights_glu = jnp.stack([weights_gate, weights_projection], axis=1)
projection = gated_linear_unit.gated_linear_unit(
x=act,
weight=weights_glu,
activation=jax.nn.sigmoid,
implementation=None,
)
projection = jnp.transpose(projection, (2, 0, 1))
projection *= mask
else:
projection = hm.Linear(num_channels * 2, name='projection')(act)
projection = jnp.transpose(projection, (2, 0, 1))
projection *= mask
gate = hm.Linear(
num_channels * 2,
name='gate',
bias_init=1.0,
initializer=self.global_config.final_init,
)(act)
gate = jnp.transpose(gate, (2, 0, 1))
projection *= jax.nn.sigmoid(gate)
projection = projection.reshape(num_channels, 2, *projection.shape[1:])
a, b = jnp.split(projection, 2, axis=1)
a, b = jnp.squeeze(a, axis=1), jnp.squeeze(b, axis=1)
act = jnp.einsum(equation, a, b)
act = hm.LayerNorm(name='center_norm', axis=0, param_axis=0)(act)
act = jnp.transpose(act, (1, 2, 0))
act = hm.Linear(
num_channels,
initializer=self.global_config.final_init,
name='output_projection',
)(act)
gate_out = hm.Linear(
num_channels,
name='gating_linear',
bias_init=1.0,
initializer=self.global_config.final_init,
)(input_act)
act *= jax.nn.sigmoid(gate_out)
return act
class OuterProductMean(hk.Module):
"""Computed mean outer product."""
class Config(base_config.BaseConfig):
chunk_size: int = 128
num_outer_channel: int = 32
def __init__(
self,
config: Config,
global_config: model_config.GlobalConfig,
num_output_channel,
*,
name,
):
super().__init__(name=name)
self.global_config = global_config
self.config = config
self.num_output_channel = num_output_channel
def __call__(self, act, mask):
mask = mask[..., None]
act = hm.LayerNorm(name='layer_norm_input')(act)
left_act = mask * hm.Linear(
self.config.num_outer_channel,
initializer='linear',
name='left_projection',
)(act)
right_act = mask * hm.Linear(
self.config.num_outer_channel,
initializer='linear',
name='right_projection',
)(act)
if self.global_config.final_init == 'zeros':
w_init = hk.initializers.Constant(0.0)
else:
w_init = hk.initializers.VarianceScaling(scale=2.0, mode='fan_in')
output_w = hk.get_parameter(
'output_w',
shape=(
self.config.num_outer_channel,
self.config.num_outer_channel,
self.num_output_channel,
),
dtype=act.dtype,
init=w_init,
)
output_b = hk.get_parameter(
'output_b',
shape=(self.num_output_channel,),
dtype=act.dtype,
init=hk.initializers.Constant(0.0),
)
def compute_chunk(left_act):
# Make sure that the 'b' dimension is the most minor batch like dimension
# so it will be treated as the real batch by XLA (both during the forward
# and the backward pass)
left_act = jnp.transpose(left_act, [0, 2, 1])
act = jnp.einsum('acb,ade->dceb', left_act, right_act)
act = jnp.einsum('dceb,cef->dbf', act, output_w) + output_b
return jnp.transpose(act, [1, 0, 2])
act = mapping.inference_subbatch(
compute_chunk,
self.config.chunk_size,
batched_args=[left_act],
nonbatched_args=[],
input_subbatch_dim=1,
output_subbatch_dim=0,
)
epsilon = 1e-3
norm = jnp.einsum('abc,adc->bdc', mask, mask)
return act / (epsilon + norm)
class PairFormerIteration(hk.Module):
"""Single Iteration of Pair Former."""
class Config(base_config.BaseConfig):
"""Config for PairFormerIteration."""
num_layer: int
pair_attention: GridSelfAttention.Config = base_config.autocreate()
pair_transition: TransitionBlock.Config = base_config.autocreate()
single_attention: diffusion_transformer.SelfAttentionConfig | None = None
single_transition: TransitionBlock.Config | None = None
triangle_multiplication_incoming: TriangleMultiplication.Config = (
base_config.autocreate(equation='kjc,kic->ijc')
)
triangle_multiplication_outgoing: TriangleMultiplication.Config = (
base_config.autocreate(equation='ikc,jkc->ijc')
)
shard_transition_blocks: bool = True
def __init__(
self,
config: Config,
global_config: model_config.GlobalConfig,
with_single=False,
*,
name,
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
self.with_single = with_single
def __call__(
self,
act,
pair_mask,
single_act=None,
seq_mask=None,
):
"""Build a single iteration of the pair former.
Args:
act: [num_res, num_res, num_channel] Input pairwise activations.
pair_mask: [num_res, num_res] padding mask.
single_act: [num_res, single_channel] Single Input activations, optional
seq_mask: [num_res] Sequence Mask, optional.
Returns:
[num_res, num_res, num_channel] tensor of activations.
"""
num_residues = act.shape[0]
act += TriangleMultiplication(
self.config.triangle_multiplication_outgoing,
self.global_config,
name='triangle_multiplication_outgoing',
)(act, pair_mask)
act += TriangleMultiplication(
self.config.triangle_multiplication_incoming,
self.global_config,
name='triangle_multiplication_incoming',
)(act, pair_mask)
act += GridSelfAttention(
self.config.pair_attention,
self.global_config,
name='pair_attention1',
transpose=False,
)(act, pair_mask)
act += GridSelfAttention(
self.config.pair_attention,
self.global_config,
name='pair_attention2',
transpose=True,
)(act, pair_mask)
transition_block = TransitionBlock(
self.config.pair_transition, self.global_config, name='pair_transition'
)
if self.config.shard_transition_blocks:
transition_block = mapping.sharded_apply(
transition_block,
get_shard_size(
num_residues, self.global_config.pair_transition_shard_spec
),
)
act += transition_block(act)
if self.with_single:
assert self.config.single_attention is not None
pair_logits = hm.Linear(
self.config.single_attention.num_head,
name='single_pair_logits_projection',
)(hm.LayerNorm(name='single_pair_logits_norm')(act))
pair_logits = jnp.transpose(pair_logits, [2, 0, 1])
single_act += diffusion_transformer.self_attention(
single_act,
seq_mask,
pair_logits=pair_logits,
config=self.config.single_attention,
global_config=self.global_config,
name='single_attention_',
)
single_act += TransitionBlock(
self.config.single_transition,
self.global_config,
name='single_transition',
)(single_act, broadcast_dim=None)
return act, single_act
else:
return act
class EvoformerIteration(hk.Module):
"""Single Iteration of Evoformer Main Stack."""
class Config(base_config.BaseConfig):
"""Configuration for EvoformerIteration."""
num_layer: int = 4
msa_attention: MSAAttention.Config = base_config.autocreate()
outer_product_mean: OuterProductMean.Config = base_config.autocreate()
msa_transition: TransitionBlock.Config = base_config.autocreate()
pair_attention: GridSelfAttention.Config = base_config.autocreate()
pair_transition: TransitionBlock.Config = base_config.autocreate()
triangle_multiplication_incoming: TriangleMultiplication.Config = (
base_config.autocreate(equation='kjc,kic->ijc')
)
triangle_multiplication_outgoing: TriangleMultiplication.Config = (
base_config.autocreate(equation='ikc,jkc->ijc')
)
shard_transition_blocks: bool = True
def __init__(
self,
config: Config,
global_config: model_config.GlobalConfig,
name='evoformer_iteration',
):
super().__init__(name=name)
self.config = config
self.global_config = global_config
def __call__(self, activations, masks):
msa_act, pair_act = activations['msa'], activations['pair']
num_residues = pair_act.shape[0]
msa_mask, pair_mask = masks['msa'], masks['pair']
pair_act += OuterProductMean(
config=self.config.outer_product_mean,
global_config=self.global_config,
num_output_channel=int(pair_act.shape[-1]),
name='outer_product_mean',
)(msa_act, msa_mask)
msa_act += MSAAttention(
self.config.msa_attention, self.global_config, name='msa_attention1'
)(msa_act, msa_mask, pair_act=pair_act)
msa_act += TransitionBlock(
self.config.msa_transition, self.global_config, name='msa_transition'
)(msa_act)
pair_act += TriangleMultiplication(
self.config.triangle_multiplication_outgoing,
self.global_config,
name='triangle_multiplication_outgoing',
)(pair_act, pair_mask)
pair_act += TriangleMultiplication(
self.config.triangle_multiplication_incoming,
self.global_config,
name='triangle_multiplication_incoming',
)(pair_act, pair_mask)
pair_act += GridSelfAttention(
self.config.pair_attention,
self.global_config,
name='pair_attention1',
transpose=False,
)(pair_act, pair_mask)
pair_act += GridSelfAttention(
self.config.pair_attention,
self.global_config,
name='pair_attention2',
transpose=True,
)(pair_act, pair_mask)
transition_block = TransitionBlock(
self.config.pair_transition, self.global_config, name='pair_transition'
)
if self.config.shard_transition_blocks:
transition_block = mapping.sharded_apply(
transition_block,
get_shard_size(
num_residues, self.global_config.pair_transition_shard_spec
),
)
pair_act += transition_block(pair_act)
return {'msa': msa_act, 'pair': pair_act}
|