Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94950377
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
Wed, Dec 11, 15:48
Size
411 B
Mime Type
text/x-shellscript
Expires
Fri, Dec 13, 15:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22902283
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