Skip to content

Commit cb824d3

Browse files
committed
version freak show IV
1 parent fe5653a commit cb824d3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
strategy:
6262
matrix:
63-
python: ['3.8', '3.9', '3.10']
63+
python: ['3.8', '3.9', '3.10', '3.11']
6464
env: ['base', 'fenics', 'mpi4py', 'petsc']
6565

6666
defaults:

pySDC/projects/parallelSDC/preconditioner_playground_MPI.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,10 @@ def plot_iterations():
189189
color_list = ['r', 'g', 'b', 'c', 'm']
190190

191191
plt_helper.setup_mpl()
192-
192+
print('post setup')
193193
# loop over setups and Q-delta types: one figure per setup, all Qds in one plot
194194
for setup in setup_list:
195+
print('setup')
195196
plt_helper.newfig(textwidth=238.96, scale=0.89)
196197

197198
for qd_type, marker, color in zip(qd_type_list, marker_list, color_list):
@@ -244,5 +245,5 @@ def plot_iterations():
244245
if __name__ == "__main__":
245246
comm = MPI.COMM_WORLD
246247
main(comm=comm)
247-
# if comm.Get_rank() == 0:
248-
# plot_iterations()
248+
if comm.Get_rank() == 0:
249+
plot_iterations()

0 commit comments

Comments
 (0)