r"""Return the current sparse tensor operation mode.
()
| 104 | |
| 105 | |
| 106 | def sparse_tensor_operation_mode() -> SparseTensorOperationMode: |
| 107 | r"""Return the current sparse tensor operation mode.""" |
| 108 | global _sparse_tensor_operation_mode |
| 109 | return copy.deepcopy(_sparse_tensor_operation_mode) |
| 110 | |
| 111 | |
| 112 | def global_coordinate_manager(): |