View source on GitHub |
Return the ceiling of the input, element-wise.
tf.keras.ops.ceil(
x
)
The ceil of the scalar x
is the smallest integer i
, such that
i >= x
.
Args | |
---|---|
x
|
Input tensor. |
Returns | |
---|---|
The ceiling of each element in x , with float dtype.
|