Skip to content

Commit

Permalink
Update prime_fac.slurm to remove special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
UTSACollab authored Aug 19, 2021
1 parent b3dc836 commit 7c7e2c5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions GNUparallel/PrimeFactorEx/prime_fac.slurm
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/sh 
#SBATCH -J prime_fac 
#SBATCH -o prime_fac.txt 
#SBATCH -p compute1 
#SBATCH -t 00:05:00 
#SBATCH -N 1 
#SBATCH -n 20 
 
ml gcc/11.2.0 
ml parallel/20210722 
 
parallel --joblog logfilename.txt ./prime_fac {1} :::: paramfile.txt #the executable name is obtained after compiling the program
#!/bin/sh
#SBATCH -J prime_fac
#SBATCH -o prime_fac.txt
#SBATCH -p compute1
#SBATCH -t 00:05:00
#SBATCH -N 1
#SBATCH -n 20

ml gcc/11.2.0
ml parallel/20210722

parallel --joblog logfilename.txt ./prime_fac {1} :::: paramfile.txt #executable named prime_fac is obtained by compiling the program

0 comments on commit 7c7e2c5

Please sign in to comment.