-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update prime_fac.slurm to remove special characters
- Loading branch information
1 parent
b3dc836
commit 7c7e2c5
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |