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
Currently to do a matrix sum you have to do something like this:
(reduce + (kernel ((row matrix)) (reduce + row)))
Having to do two reduces and a kernel is sort of verbose. We should consider a better syntax, like maybe just (reduce2 + matrix). It'd be nice to have a more generic version that also generalizes to three dimensional data.
The text was updated successfully, but these errors were encountered:
Currently to do a matrix sum you have to do something like this:
Having to do two reduces and a kernel is sort of verbose. We should consider a better syntax, like maybe just
(reduce2 + matrix)
. It'd be nice to have a more generic version that also generalizes to three dimensional data.The text was updated successfully, but these errors were encountered: