Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95990611
scalability.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Dec 21, 12:07
Size
411 B
Mime Type
text/x-shellscript
Expires
Mon, Dec 23, 12:07 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23099249
Attached To
rAKA akantu
scalability.sh
View Options
#!/usr/bin/env bash
job_name=elastic_gcc
for n in 1 2 4 9 18 36 72 144 288 432 576 648 720; do
if [ $n -le 72 ]; then
QOS="--qos serial"
node=1
npn=$n
else
QOS="--qos parallel"
node=$(( $n / 72 ))
npn=72
fi
sbatch -J ${job_name} -e ${job_name}_%A.err -o ${job_name}_%A.out -N ${node} --ntasks-per-node ${npn} $QOS "$@" --exclusive ./run.sh
done
Event Timeline
Log In to Comment