Hello everybody,
Pavan,
I'm observing an error with test/mpi/spawn/namepub.c running through Hydra process manager (mpich2-1.3.1).
Looks like the error is into hydra/pm/pmiserv/pmiserv_pmi_v1.c (fn_lookup_name() function). The issue is in content of response from mpiexec side to proxy.
The response every time is starting from "cmd=lookup_result info=ok rc=0 msg=success ..." and it doesn't matter if variable 'value' is valid or not because it is out of 'if' statement. BTW, 'value' is not NULL because of missed initialization of it.
Thank you for your support!
--
Best regards,
Yury Kiryanov
phone: 8-83130-70700 (ext. 2531)
i-net : 8313-2531
e-mail: yury.kiryanov(a)intel.com<mailto:[email protected]>
--------------------------------------------------------------------
Closed Joint Stock Company Intel A/O
Registered legal address: Krylatsky Hills Business Park,
17 Krylatskaya Str., Bldg 4, Moscow 121614,
Russian Federation
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
Hello Pavan,
One issue we observed in Hydra with -bootstrap slurm if slurm.conf is configured somehow specifically.
My SLURM_NODE_LIST=node[01-02]
Hydra is trying to incorporate this host list as 'node1' and 'node2'.
The changes are expected (marked red) into group_to_individual_nodes() (slurm_query_node_list.c):
start = atoi(start_str);
end = end_str ? atoi(end_str) : start;
for (j = start; j <= end; j++) {
node_str[0] = HYDU_strdup(pre);
node_str[1] = HYDU_int_to_str(j);
node_str[2] = NULL;
--
Best regards,
Yury Kiryanov
phone: 8-83130-70700 (ext. 2531)
i-net : 8313-2531
e-mail: yury.kiryanov(a)intel.com<mailto:[email protected]>
--------------------------------------------------------------------
Closed Joint Stock Company Intel A/O
Registered legal address: Krylatsky Hills Business Park,
17 Krylatskaya Str., Bldg 4, Moscow 121614,
Russian Federation
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.