dolfinx.cpp.common
Common module
Functions
|
|
|
|
|
Classes
|
Overloaded function. |
|
Members: |
|
Timer class |
|
Members: |
- class dolfinx.cpp.common.IndexMap(*args, **kwargs)
Bases:
pybind11_object
Overloaded function.
__init__(self: dolfinx.cpp.common.IndexMap, comm: MPICommWrapper, local_size: int) -> None
__init__(self: dolfinx.cpp.common.IndexMap, comm: MPICommWrapper, local_size: int, ghosts: numpy.ndarray[numpy.int64], ghost_owners: numpy.ndarray[numpy.int32]) -> None
__init__(self: dolfinx.cpp.common.IndexMap, comm: MPICommWrapper, local_size: int, dest_src: List[numpy.ndarray[numpy.int32][2]], ghosts: numpy.ndarray[numpy.int64], ghost_owners: numpy.ndarray[numpy.int32]) -> None
- create_submap(self: dolfinx.cpp.common.IndexMap, entities: numpy.ndarray[numpy.int32]) Tuple[dolfinx.cpp.common.IndexMap, numpy.ndarray[numpy.int32]]
- property ghosts
Return list of ghost indices
- property local_range
Range of indices owned by this map
- local_to_global(self: dolfinx.cpp.common.IndexMap, local: numpy.ndarray[numpy.int32]) numpy.ndarray[numpy.int64]
- property num_ghosts
- property owners
- property size_global
- property size_local
- class dolfinx.cpp.common.Reduction(self: dolfinx.cpp.common.Reduction, value: int)
Bases:
pybind11_object
Members:
max
min
average
- average = <Reduction.average: 0>
- max = <Reduction.max: 1>
- min = <Reduction.min: 2>
- property name
- property value
- class dolfinx.cpp.common.Timer(*args, **kwargs)
Bases:
pybind11_object
Timer class
Overloaded function.
__init__(self: dolfinx.cpp.common.Timer) -> None
__init__(self: dolfinx.cpp.common.Timer, task: str) -> None
- elapsed(self: dolfinx.cpp.common.Timer) List[float[3]]
- resume(self: dolfinx.cpp.common.Timer) None
- start(self: dolfinx.cpp.common.Timer) None
Start timer
- stop(self: dolfinx.cpp.common.Timer) float
Stop timer
- class dolfinx.cpp.common.TimingType(self: dolfinx.cpp.common.TimingType, value: int)
Bases:
pybind11_object
Members:
wall
system
user
- property name
- system = <TimingType.system: 2>
- user = <TimingType.user: 1>
- property value
- wall = <TimingType.wall: 0>
- dolfinx.cpp.common.init_logging(args: List[str]) None
- dolfinx.cpp.common.list_timings(comm: MPICommWrapper, type: List[dolfinx.cpp.common.TimingType], reduction: dolfinx.cpp.common.Reduction) None
- dolfinx.cpp.common.timing(arg0: str) Tuple[int, float, float, float]