Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5a06ba5
Support Python 3.13 (#475)
yguclu Apr 2, 2025
4203343
Fix PSYDAC_BACKEND_GPYCCEL flags on latest Apple silicon (#480)
max-models Apr 7, 2025
1b34019
Resolve warnings in sequential unit tests (#481)
yguclu Apr 8, 2025
adb453a
Pass `out` parameter to `petsc_to_psydac` (#483)
e-moral-sanchez Apr 11, 2025
24646ef
Rename `dot` as `inner` in `Vector`, `VectorSpace`, and subclasses (#…
yguclu May 5, 2025
f96e888
Update docstring for inner product in polar/dense.py (#488)
campospinto May 9, 2025
54ea3ce
Add a `dot_inner` concrete method to the base class `LinearOperator` …
yguclu May 26, 2025
5e3d769
Install PETSc-3.23.2 (latest version) (#499)
yguclu May 30, 2025
2f242b1
Update authors (#500)
yguclu May 30, 2025
b5230b4
Fix the code generation of unnecessary derivatives (#490)
FrederikSchnack Jun 13, 2025
f387410
Fix bug in `allocate_matrices` in `DiscreteBilinearForm` (#507)
FrederikSchnack Jun 18, 2025
bccddfc
Enable Pyccel 2.0 (#503)
max-models Jun 28, 2025
42b214e
New installation procedure and README (#510)
yguclu Jul 14, 2025
776ac29
Fast Matrix Assembly (#448)
jowezarek Sep 10, 2025
fe56bcd
Improve multipatch FEM API (#509)
FrederikSchnack Sep 22, 2025
ccbd6e3
Allow `mpi_dims_mask` with geometry file (#526)
yguclu Oct 1, 2025
c531d98
Fix the parallel low-level 2D Poisson example (#528)
yguclu Oct 13, 2025
c97f265
Fix method `plot_2d_decomposition` of `TensorFemSpace` (#529)
yguclu Oct 21, 2025
b6d4d5d
Describe library name in README.md (#535)
yguclu Oct 30, 2025
c7ca428
Fix parallelization bug in polar splines (#539)
yguclu Nov 6, 2025
e7944b4
Merge remote-tracking branch 'upstream/devel' into update-from-upstream
spossann Nov 7, 2025
153055f
change version to 2.6.0.dev0
spossann Nov 7, 2025
a4ca280
remove test_tensor.py
spossann Nov 7, 2025
01528ce
Merge branch 'devel-tiny' into prepare-v-2-6-0
spossann Nov 7, 2025
750721a
install struohy from 108-psydac-change-renaming-of-globalpojector
spossann Nov 7, 2025
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
1 change: 1 addition & 0 deletions .github/workflows/test-struphy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
echo "Psydac location for this branch"
pip show psydac
pip uninstall psydac -y
git checkout 108-psydac-change-renaming-of-globalpojector
python -m pip install ".[phys]" --no-cache-dir
echo "Psydac location after installing struphy"
pip show psydac
Expand Down
5 changes: 0 additions & 5 deletions docs/source/modules/feec.multipatch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ feec.multipatch
:toctree: STUBDIR
:template: autosummary/module.rst

multipatch.api
multipatch.fem_linear_operators
multipatch.multipatch_domain_utilities
multipatch.non_matching_operators
multipatch.operators
multipatch.plotting_utilities
multipatch.utilities
multipatch.utils_conga_2d
4 changes: 3 additions & 1 deletion docs/source/modules/feec.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ feec
:toctree: STUBDIR
:template: autosummary/module.rst

feec.conforming_projectors
feec.derivatives
feec.global_projectors
feec.global_geometric_projectors
feec.hodge
feec.pull_push
feec.pushforward

Expand Down
1 change: 1 addition & 0 deletions docs/source/modules/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ linalg
linalg.kernels
linalg.kron
linalg.solvers
linalg.sparse
linalg.stencil
linalg.topetsc
linalg.utilities
Expand Down
Loading