Closed
Description
Currently if we need to do elementwise operation on array, we can create a result array, and wrap it together with parameters arrays in Zip
and use apply
to assign the result. However, since Zip
have the shape information, can we add a helper function to allocate a result array with correct shape, so that we don't need to create the result array manually?