Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose more optional feature booleans, remove Timer from top level dolfinx #3335

Merged
merged 19 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion python/dolfinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@
from dolfinx.common import (
TimingType,
git_commit_hash,
has_adios2,
has_complex_ufcx_kernels,
has_debug,
has_kahip,
has_petsc,
has_parmetis,
has_petsc,
has_ptscotch,
has_slepc,
ufcx_signature,
list_timings,
timing,
)
Expand Down
1 change: 1 addition & 0 deletions python/test/unit/fem/test_petsc_nonlinear_assembler.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def F_mono(self, snes, x, F):

from dolfinx.fem.petsc import apply_lifting, assemble_vector, set_bc

print("ghost_update")
jhale marked this conversation as resolved.
Show resolved Hide resolved
x.ghostUpdate(addv=PETSc.InsertMode.INSERT, mode=PETSc.ScatterMode.FORWARD)
with x.localForm() as _x:
self.soln_vars.x.array[:] = _x.array_r
Expand Down
Loading