Adds two SparseTensor objects to produce another SparseTensor.
tf.raw_ops.SparseAdd(
    a_indices, a_values, a_shape, b_indices, b_values, b_shape, thresh, name=None
)
The input SparseTensor objects' indices are assumed ordered in standard
lexicographic order.  If this is not the case, before this step run
SparseReorder to restore index ordering.
By default, if two values sum to zero at some index, the output SparseTensor
would still include that particular location in its index, storing a zero in the
corresponding value slot.  To override this, callers can specify thresh,
indicating that if the sum has a magnitude strictly smaller than thresh, its
corresponding value and index would then not be included.  In particular,
thresh == 0 (default) means everything is kept and actual thresholding happens
only for a positive value.
In the following shapes, nnz is the count after taking thresh into account.
| Args | |
|---|---|
| a_indices | A Tensorof typeint64.
2-D.  Theindicesof the firstSparseTensor, size[nnz, ndims]Matrix. | 
| a_values | A Tensor. Must be one of the following types:float32,float64,int32,uint8,int16,int8,complex64,int64,qint8,quint8,qint32,bfloat16,uint16,complex128,half,uint32,uint64.
1-D.  Thevaluesof the firstSparseTensor, size[nnz]Vector. | 
| a_shape | A Tensorof typeint64.
1-D.  Theshapeof the firstSparseTensor, size[ndims]Vector. | 
| b_indices | A Tensorof typeint64.
2-D.  Theindicesof the secondSparseTensor, size[nnz, ndims]Matrix. | 
| b_values | A Tensor. Must have the same type asa_values.
1-D.  Thevaluesof the secondSparseTensor, size[nnz]Vector. | 
| b_shape | A Tensorof typeint64.
1-D.  Theshapeof the secondSparseTensor, size[ndims]Vector. | 
| thresh | A Tensor. Must be one of the following types:float32,float64,int32,uint8,int16,int8,int64,bfloat16,uint16,half,uint32,uint64.
0-D.  The magnitude threshold that determines if an output value/index
pair takes space. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A tuple of Tensorobjects (sum_indices, sum_values, sum_shape). | |
| sum_indices | A Tensorof typeint64. | 
| sum_values | A Tensor. Has the same type asa_values. | 
| sum_shape | A Tensorof typeint64. |