Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101866627
ring.run
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
Fri, Feb 14, 13:34
Size
604 B
Mime Type
text/x-shellscript
Expires
Sun, Feb 16, 13:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24244696
Attached To
rSCEXAMPLES SCITAS examples on how to run on the clusters
ring.run
View Options
#!/bin/bash -l
#SBATCH --nodes 1
#SBATCH --ntasks-per-node 4
## --cpus-per-task > 1 needed for multithreaded applications
#SBATCH --cpus-per-task 1
## maximum memory needed
#SBATCH --mem 4096
## maximum walltime needed
#SBATCH --time 00:05:00
echo
echo STARTING AT `date`
echo
module purge
module load intel intelmpi
module list
echo
EXECUTABLE="./ring_c"
#EXECUTABLE="./ex5_cxx"
#EXECUTABLE="./ex5_f90"
echo "--> EXECUTABLE = ${EXECUTABLE}"
echo
echo "--> ${EXECUTABLE} depends on the following dynamic libraries:"
ldd ${EXECUTABLE}
echo
srun ${EXECUTABLE}
echo
echo FINISHED at `date`
echo
Event Timeline
Log In to Comment