You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just a `subgraph` rewrite that replaces nodes that look like
```
fully_connected(input_id, weights_id, bias_id)
```
where the data along the `k`th dimension exceeds 16kB, with
```
fully_connected(static_slice(K0, input_id), static_slice(K0, weights_id), bias_id)
+
fully_connected(static_slice(K1, input_id), static_slice(K1, weights_id), 0)
+
...
+
fully_connected(static_slice(Kn, input_id), static_slice(Kn, weights_id), 0)
```
where `static_slice(ival, value_id)` slices `value_id` in the `k` dimension.
PiperOrigin-RevId: 806264392
0 commit comments