Reads out the CSR components at batch index.
tf.raw_ops.CSRSparseMatrixComponents(
    csr_sparse_matrix, index, type, name=None
)
This op is meant only for debugging / testing, and its interface is not expected to be stable.
| Args | |
|---|---|
| csr_sparse_matrix | A Tensorof typevariant.
A batched CSRSparseMatrix. | 
| index | A Tensorof typeint32.
The index incsr_sparse_matrix's batch. | 
| type | A tf.DTypefrom:tf.float32, tf.float64, tf.complex64, tf.complex128. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A tuple of Tensorobjects (row_ptrs, col_inds, values). | |
| row_ptrs | A Tensorof typeint32. | 
| col_inds | A Tensorof typeint32. | 
| values | A Tensorof typetype. |