-
Notifications
You must be signed in to change notification settings - Fork 34
Description
Hi,
I'm trying to benchmark Legion on a 2 nodes cluster. I would like to confirm if the output I'm getting is the expected behaviour.
To setup the the benchmarks I did the following:
USE_GASNET=1 USE_LEGION=1 ./get_deps.sh
USE_GASNET=1 CONDUIT=udp ./build_all.sh
I designated the two nodes (export SSH_SERVERS = node1,node2) and set up password-less authentication for the two nodes.
using ./task_bench -width 40 -steps 100 -type stencil_1d -kernel compute_bound -iter 1024
gives a GASNet related error where I have to mention the number of nodes.
So I'm using: ./task_bench 2 -width 40 -steps 100 -type stencil_1d -kernel compute_bound -iter 1024 instead.
The results I'm getting from doing this is: 8000 tasks launched, 4000 in node 1 and 4000 in node 2.
Once both nodes are done with their 4000 tasks, I get the results of the benchmark: with running time, FLOP/s etc...
I'm wondering if this is the result I should expect, or is there a way to make the 2 nodes split the 4000 tasks between them?
Thank you.