mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
15 lines
250 B
Bash
Executable File
15 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export ZE_AFFINITY_MASK=0.$MPI_LOCALRANKID
|
|
|
|
echo Ranke $MPI_LOCALRANKID ZE_AFFINITY_MASK is $ZE_AFFINITY_MASK
|
|
|
|
|
|
if [ $MPI_LOCALRANKID = "0" ]
|
|
then
|
|
# ~psteinbr/build_pti/ze_tracer -h $@
|
|
onetrace --chrome-device-timeline $@
|
|
else
|
|
$@
|
|
fi
|