-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path_grad_of_attention.py
More file actions
90 lines (65 loc) · 2.11 KB
/
Copy path_grad_of_attention.py
File metadata and controls
90 lines (65 loc) · 2.11 KB
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
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import jax.numpy as jnp
import jax
from jax.experimental.pallas.ops.tpu import flash_attention
import torchax
from jax.experimental import mesh_utils
from torchax.ops.jtorch import _tpu_flash_attention
env = torchax.default_env()
jax.config.update("jax_enable_x64", False)
env._mesh = jax.sharding.Mesh(
mesh_utils.create_device_mesh((4,)),
axis_names=("fsdp",),
)
env.use_flash_attention = True
from torch.nn import functional as F
def attn(q, k, v):
q, k, v = env.j2t_iso((q, k, v))
with env:
x = F.scaled_dot_product_attention(q, k, v, is_causal=True)
x = env.t2j_iso(x)
return jnp.sum(x)
import torch
class M(torch.nn.Module):
def __init__(self):
super().__init__()
self.a = torch.nn.Linear(10, 10)
def forward(self, x):
return self.a(x)
m = M()
from torchax.interop import JittableModule
mjit = JittableModule(m)
from torch.nn.utils import stateless
def f(weights, x):
res = mjit.functional_call("forward", weights, {}, (x,))
return torch.sum(res)
def crossent(x, y):
x, y = env.j2t_iso((x, y))
res = torch.func.functional_call(m, x, (y,))
return env.t2j_iso(res)
graded = jax.value_and_grad(attn)
shape = (4, 32, 128, 32)
q = jnp.ones(shape, dtype="bfloat16")
v = jnp.ones(shape, dtype="bfloat16")
k = jnp.ones(shape, dtype="bfloat16")
env = torchax.default_env()
weights = env.t2j_iso(env.to_xla(mjit.params))
from torchax.interop import jax_view
# print(jax.jit(graded).lower(q, v, k).as_text())
print(
jax.jit(jax.grad(jax_view(f)))
.lower(weights, jax.ShapeDtypeStruct((10,), "float32"))
.as_text()
)