Create a SuperLU_DIST matrix. Args: matrix: C++ SuperLUDistMatrix object. Note: This initialiser is intended for internal library use only. User code should call :func:`superlu_dist_matrix` to create a :class:`SuperLUDistMatrix` objec
(self, matrix)
| 40 | ) |
| 41 | |
| 42 | def __init__(self, matrix): |
| 43 | """Create a SuperLU_DIST matrix. |
| 44 | |
| 45 | Args: |
| 46 | matrix: C++ SuperLUDistMatrix object. |
| 47 | |
| 48 | Note: |
| 49 | This initialiser is intended for internal library use only. |
| 50 | User code should call :func:`superlu_dist_matrix` to create a |
| 51 | :class:`SuperLUDistMatrix` object. |
| 52 | """ |
| 53 | self._cpp_object = matrix |
| 54 | |
| 55 | @property |
| 56 | def dtype(self) -> npt.DTypeLike: |
nothing calls this directly
no outgoing calls
no test coverage detected