Skip to content

Commit

Permalink
version freak show IV
Browse files Browse the repository at this point in the history
  • Loading branch information
pancetta committed Feb 19, 2024
1 parent fe5653a commit cb824d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

strategy:
matrix:
python: ['3.8', '3.9', '3.10']
python: ['3.8', '3.9', '3.10', '3.11']
env: ['base', 'fenics', 'mpi4py', 'petsc']

defaults:
Expand Down
7 changes: 4 additions & 3 deletions pySDC/projects/parallelSDC/preconditioner_playground_MPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,10 @@ def plot_iterations():
color_list = ['r', 'g', 'b', 'c', 'm']

plt_helper.setup_mpl()

print('post setup')
# loop over setups and Q-delta types: one figure per setup, all Qds in one plot
for setup in setup_list:
print('setup')
plt_helper.newfig(textwidth=238.96, scale=0.89)

for qd_type, marker, color in zip(qd_type_list, marker_list, color_list):
Expand Down Expand Up @@ -244,5 +245,5 @@ def plot_iterations():
if __name__ == "__main__":
comm = MPI.COMM_WORLD
main(comm=comm)
# if comm.Get_rank() == 0:
# plot_iterations()
if comm.Get_rank() == 0:
plot_iterations()

0 comments on commit cb824d3

Please sign in to comment.