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

Fix PETSc segfault issues #469

Merged
merged 4 commits into from
Jul 11, 2024
Merged

Fix PETSc segfault issues #469

merged 4 commits into from
Jul 11, 2024

Commits on Jul 11, 2024

  1. Fix an issue with PETSc > 3.18 in the interpolation matrix

    There, calling transfer_matrix.createVecs() was causing segfaults.
    However, the matrix could still be used for multiplication, which works just fine
    
    The call to createVecs was unnecessary, and thus removed.
    sblauth committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    f414851 View commit details
    Browse the repository at this point in the history
  2. Make the global deformation work with new PETSc

    Replace calls to `getVec...` with `createVec` for better petsc4py / PETSc match
    Refactor the way the transfer matrix is used for the global deformation (createVec does not have to be called here)
    sblauth committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    94eaf8f View commit details
    Browse the repository at this point in the history
  3. version bump

    sblauth committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    97dd799 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f906275 View commit details
    Browse the repository at this point in the history