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
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
Request a broadcast_like operator, which can output a broadcasted NDArray for the given target.
For example y=nd.broadcast_like(x, z), which should return the same result with existing operator y=nd.broadcast_to(x, z.shape) but avoid reading the shape explicitly, so that it can be used in HybridBlock.
The text was updated successfully, but these errors were encountered:
Description
Request a
broadcast_like
operator, which can output a broadcasted NDArray for the given target.For example
y=nd.broadcast_like(x, z)
, which should return the same result with existing operatory=nd.broadcast_to(x, z.shape)
but avoid reading the shape explicitly, so that it can be used inHybridBlock
.The text was updated successfully, but these errors were encountered: