tf.div | TensorFlow v1.15.0 (original) (raw)
tf.div
Stay organized with collections Save and categorize content based on your preferences.
Divides x / y elementwise (using Python 2 division operator semantics). (deprecated)
View aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.div(
x, y, name=None
)
This function divides x
and y
, forcing Python 2 semantics. That is, if x
and y
are both integers then the result will be an integer. This is in contrast to Python 3, where division with /
is always a float while division with //
is always an integer.
Args | |
---|---|
x | Tensor numerator of real numeric type. |
y | Tensor denominator of real numeric type. |
name | A name for the operation (optional). |
Returns |
---|
x / y returns the quotient of x and y. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.