tf.raw_ops.QuantizedAdd

Returns x + y element-wise, working on quantized buffers.

xA Tensor. Must be one of the following types: qint8, quint8, qint32, qint16, quint16.
yA Tensor. Must be one of the following types: qint8, quint8, qint32, qint16, quint16.
min_xA Tensor of type float32. The float value that the lowest quantized x value represents.
max_xA Tensor of type float32. The float value that the highest quantized x value represents.
min_yA Tensor of type float32. The float value that the lowest quantized y value represents.
max_yA Tensor of type float32. The float value that the highest quantized y value represents.
ToutputAn optional tf.DType from: tf.qint8, tf.quint8, tf.qint32, tf.qint16, tf.quint16. Defaults to tf.qint32.
nameA name for the operation (optional).

A tuple of Tensor objects (z, min_z, max_z).
zA Tensor of type Toutput.
min_zA Tensor of type float32.
max_zA Tensor of type float32.