2022-12-07
import e3nn_jax as e3nn
irreps = e3nn.Irreps("0e + 1o")
print(3 * irreps) # prints 3x0e+3x1o
Changed
- [BREAKING]
3 * e3nn.Irreps("0e + 1o")
now returns3x0e + 3x1o
instead of1x0e + 1x1o + 1x0e + 1x1o + 1x0e + 1x1o
- [BREAKING] in Linear, renamed
num_weights
tonum_indexed_weights
because it was confusing.
Added
e3nn.Irreps("3x0e + 6x1o") // 3
returns1x0e + 2x1o
Fixed
s2grid
is now jitable