mx.symbol.broadcast_div

Description

Returns element-wise division of the input arrays with broadcasting.

Example:

x = [[ 6.,  6.,  6.],
[ 6.,  6.,  6.]]

y = [[ 2.],
[ 3.]]

broadcast_div(x, y) = [[ 3.,  3.,  3.],
[ 2.,  2.,  2.]]

Supported sparse operations:

broadcast_div(csr, dense(1D)) = csr

Usage

mx.symbol.broadcast_div(...)

Arguments

Argument

Description

lhs

NDArray-or-Symbol.

First input to the function

rhs

NDArray-or-Symbol.

Second input to the function

name

string, optional.

Name of the resulting symbol.