Skip to content

Commit d0d6bb1

Browse files
committed
Status after testing
1 parent e7f8921 commit d0d6bb1

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

test_physics/cleanall

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
rm *.txt
4+
rm *.err
5+
rm *.out
6+
rm *.cmd

test_physics/run_bologna_000

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!/bin/bash
2+
3+
4+
NUMBER_OF_REQUESTED_CORES=3
5+
MAX_NUMBER_OF_CORE_PER_NODE=32
6+
7+
PATH_TO_EXECUTABLE="python /home/HPC/giadarol/test_PyECPyHT/PyParaSlice/test_physics/000_test_with_ecloud.py"
8+
SIMULATION_NAME='first'
9+
QUEUE=hpc_inf
10+
#QUEUE=hpc_short
11+
12+
stderr_file=epic.txt
13+
stdout_file=opic.txt
14+
15+
16+
17+
############################################
18+
## DO NOT TOUCH FROM HERE
19+
############################################
20+
21+
job=job_${NUMBER_OF_REQUESTED_CORES}.cmd
22+
23+
rm -f $job
24+
touch $job
25+
chmod 755 $job
26+
touch ${stderr_file}
27+
touch ${stdout_file}
28+
echo "#BSUB -J ${SIMULATION_NAME}" > $job # Job name
29+
echo "#BSUB -o %J.out" >> $job # Job standard output
30+
echo "#BSUB -e %J.err" >> $job # Job standard error
31+
echo "#BSUB -N" >> $job # Job report
32+
echo "#BSUB -B" >> $job # Send mail
33+
echo "#BSUB -q $QUEUE" >> $job
34+
echo "#BSUB -a openmpi" >> $job
35+
echo "#BSUB -n ${NUMBER_OF_REQUESTED_CORES}" >> $job
36+
echo "#BSUB -R span[ptile=${MAX_NUMBER_OF_CORE_PER_NODE}]" >> $job
37+
echo "/usr/share/lsf/9.1/linux2.6-glibc2.3-x86_64/bin/mpirun.lsf env PSM_SHAREDCONTEXTS_MAX=8 ${PATH_TO_EXECUTABLE} >> ${stdout_file} 2>> ${stderr_file}" >> $job
38+
39+
40+
echo "Submit your job to the queue system with this command: "
41+
echo "bsub < $job"
42+
43+

test_ring_with_objects/run_bologna_002

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33

4-
NUMBER_OF_REQUESTED_CORES=4
4+
NUMBER_OF_REQUESTED_CORES=5
55
MAX_NUMBER_OF_CORE_PER_NODE=32
66

77
PATH_TO_EXECUTABLE="python /home/HPC/giadarol/test_PyECPyHT/PyParaSlice/test_ring_with_objects/002_test_with_ecloud.py"

0 commit comments

Comments
 (0)