Method Broadcast
Broadcast(TensorShape)
Creates a TensorShape
by applying numpy-style broadcasting between this
and other
.
Sentis broadcasts shapes from innermost to outermost dimensions. Two dimensions are compatible when they're equal, or one of the dimensions is 1.
Declaration
public TensorShape Broadcast(TensorShape other)
Parameters
Type | Name | Description |
---|---|---|
TensorShape | other | The other tensor shape which which to broadcast. |
Returns
Type | Description |
---|---|
TensorShape | The broadcast tensor shape. |