You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The python callbacks of a graph partitioner currently require a cpp return value type, so either AdjacencyList_int32 or AdjacencyList_int64. With the introduction of a general python wrapper for the adjacency list types in #3509 we should switch the return type of the python callback, that the user needs to implement, to the type oblivious AdjacencyList type.
The python callbacks of a graph partitioner currently require a
cpp
return value type, so eitherAdjacencyList_int32
orAdjacencyList_int64
. With the introduction of a general python wrapper for the adjacency list types in #3509 we should switch the return type of the python callback, that the user needs to implement, to the type obliviousAdjacencyList
type.See
TODO
at https://github.com/FEniCS/dolfinx/blob/main/python/test/unit/fem/test_dofmap.py#L439One possible way to achieve this would be with a decorator, as suggested by @jhale.
The text was updated successfully, but these errors were encountered: