Skip to content

Commit

Permalink
Update handle class for python example
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-davis committed Aug 4, 2023
1 parent 555f646 commit 16ef84a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/ex5_minmax_python/minmaxavg_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

local_size = int(array_size / size)
# Initialize DataSpaces library - defaults to using COMM_WORLD
client = ds.DSpaces()
client = ds.DSClient()

num_ts = 3

Expand Down
4 changes: 2 additions & 2 deletions examples/ex5_minmax_python/minmaxavg_writer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from mpi4py import MPI
import dspaces as ds
import numpy as np
from mpi4py import MPI
import sys

comm = MPI.COMM_WORLD
Expand All @@ -21,7 +21,7 @@

local_size = int(array_size / size)
# Initialize DataSpaces library - defaults to using COMM_WORLD
client = ds.DSpaces()
client = ds.DSClient()

num_ts = 3

Expand Down

0 comments on commit 16ef84a

Please sign in to comment.