Skip to content

Commit

Permalink
Updated enqueue_compss call to MN5
Browse files Browse the repository at this point in the history
  • Loading branch information
marcmonfort committed Aug 23, 2024
1 parent 4ae74c5 commit 5576f6e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion addons/storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ enqueue_compss \
--storage_home=$DATACLAY_HOME/storage/ \
--storage_props=$DATACLAY_HOME/storage/storage_props_example \
--classpath=$DATACLAY_HOME/storage/StorageItf-1.0.jar \
--pythonpath=$DATACLAY_PYTHONPATH \
--pythonpath=$DATACLAY_PYTHONPATH:$PWD \
--project_name="bsc19" \
--qos=gp_debug \
--num_nodes=4 \
--exec_time=30 \
--worker_working_dir=local_disk \
--scheduler=es.bsc.compss.scheduler.orderstrict.fifo.FifoTS \
client.py
```

Expand Down
11 changes: 8 additions & 3 deletions examples/compss-app/run_compss.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
module load COMPSs/3.2
module load DATACLAY/edge
module load COMPSs/3.3
module load hdf5 python/3.12 dataclay/edge

enqueue_compss \
--storage_home=$DATACLAY_HOME/storage/ \
--storage_props=$DATACLAY_HOME/storage/storage_props_example \
--classpath=$DATACLAY_HOME/storage/StorageItf-1.0.jar \
--pythonpath=$DATACLAY_PYTHONPATH \
--qos=debug \
--project_name="bsc19" \
--qos=gp_debug \
--num_nodes=4 \
--exec_time=30 \
--worker_working_dir=local_disk \
--scheduler=es.bsc.compss.scheduler.orderstrict.fifo.FifoTS \
client.py
2 changes: 1 addition & 1 deletion src/dataclay/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async def make_persistent(
##################

async def get_object_by_id(
self, object_id: UUID, object_md: ObjectMetadata = None
self, object_id: UUID, object_md: Optional[ObjectMetadata] = None
) -> DataClayObject:
"""Get dataclay object from inmemory_objects. If not present, get object metadata
and create new proxy object.
Expand Down

0 comments on commit 5576f6e

Please sign in to comment.