MCPcopy Create free account
hub / github.com/FEniCS/dolfinx / __init__

Method __init__

python/dolfinx/la/superlu_dist.py:42–53  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected