tf.raw_ops.CSRSparseMatrixComponents
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 Tensor of type variant. A batched CSRSparseMatrix. |
index | A Tensor of type int32. The index in csr_sparse_matrix's batch. |
type | A tf.DType from: tf.float32, tf.float64, tf.complex64, tf.complex128. |
name | A name for the operation (optional). |
| Returns | |
|---|---|
A tuple of Tensor objects (row_ptrs, col_inds, values). | |
row_ptrs | A Tensor of type int32. |
col_inds | A Tensor of type int32. |
values | A Tensor of type type. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/raw_ops/CSRSparseMatrixComponents