To add to the automatic differentiation implementa...
# mathematics
s
To add to the automatic differentiation implementations, https://github.com/facebookresearch/optimizer-plugins is also now open source
🎉 1
a
Does it support control flow branching like
if
or
when
?
Also does using optimization in complile-time is better then optimizing computation graph on the first run?
s
It does support control flow branch (while and if are supported). The benefit of the plugin is that it doesn't require wrappers. This is a proof of concept project though; it's not production ready (forward not done and it supports a subset of Kotlin as can be seen from the unit tests)
a
OK, thanks. Everything but conditional operations could be done on a library level. But the branching is tricky.