I have somewhat maybe little bit strange question running my jobs in my ubuntu laptop instead of running them hpc clusters.
The reason I want to to that is now I have 6 core 12 threads. I used to run my jobs on hpc cluster of my previous university.
What I was doing,
1) connecting to hpc cluster and go to where the execution file is which is wave_func.out
submitting the jobs to lsf
3) bsub -q linux22 -i ./w1.in -o ./w1.out ./wave_func.out
Then the if there is available thread in 'redhat7_211' my simulation starts.
My question is, How can I perform these simulation on my personal ubuntu OS pc ?
2>&1
do? – Alexander Oct 01 '18 at 18:232>&1
redirects the standard error stream to the same file used for the standard output stream. See here for more details. – Michael Closson Oct 02 '18 at 02:39w1.in
files in parallel. Let's say I want to execute multiple files such asw1.in, w2.in and w3.in
, what would be the best way to achieve this ? On top of that, are these jobs will be running parallel such that my 6 core 12 thread machine dedicate 3 core for this ? – Alexander Oct 05 '18 at 03:10