The batching rule for the random_bit_generator
primitive, over a batch of keys, emits a loop (via lax.map
):
https://github.com/google/jax/blob/42ae8432185bf03f61ddd2e7bc279d3abb5247fd/jax/_src/lax/control_flow/loops.py#L2012-L2024
This is a workaround to the corresponding RandomBitGenerator
HLO not being batchable. But looping violates the operational expectations of vmap
, namely that everything is vectorized. And downstream, the surprise performance hit when switching RNG implementations isn't great.
We could consider a few options:
vmap
semantics considering the random values generated, although the output is "statistically" the same in a sense.Let's try number 2.
The RBG operation is already non-portable across platforms and XLA flags. In some cases the random generation is affected by sharding. So arguably, callers opting into RBG RNGs already expect unusual semantics. By contrast, it's uncommon that anyone expects the performance hit.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4