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
The current way Etaler handles Tensor-scalar operations is by supply constructors that converts scalar values into Tensors of shape {1}. Then rely on broadcasting to process the entire Tensor. This works and is only a few lines of code. But is very slow (Have to read from memory every operations, can't put the scalar in a register). We'll need another solution to make this fast.
The text was updated successfully, but these errors were encountered:
The current way Etaler handles Tensor-scalar operations is by supply constructors that converts scalar values into Tensors of shape {1}. Then rely on broadcasting to process the entire Tensor. This works and is only a few lines of code. But is very slow (Have to read from memory every operations, can't put the scalar in a register). We'll need another solution to make this fast.
The text was updated successfully, but these errors were encountered: