mx.symbol.ceil

Description

Returns element-wise ceiling of the input.

The ceil of the scalar x is the smallest integer i, such that i >= x.

Example:

 ceil([-2.1, -1.9, 1.5, 1.9, 2.1]) = [-2., -1.,  2.,  2.,  3.]

 The storage type of ``ceil`` output depends upon the input storage type:

- ceil(default) = default
- ceil(row_sparse) = row_sparse
- ceil(csr) = csr

Usage

mx.symbol.ceil(...)

Arguments

Argument

Description

data

NDArray-or-Symbol.

The input array.

name

string, optional.

Name of the resulting symbol.