-
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.
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
#### General options | ||
### -- specify queue -- | ||
#BSUB -q hpc | ||
### -- set the job Name -- | ||
#BSUB -J Neuroevolution_testing | ||
### -- ask for number of cores (default: 1) -- | ||
#BSUB -n 10 | ||
### -- specify that the cores must be on the same host -- | ||
#BSUB -R "span[hosts=1]" | ||
### -- specify that we need 4GB of memory per core/slot -- | ||
#BSUB -R "rusage[mem=4GB]" | ||
### -- specify that we want the job to get killed if it exceeds 5 GB per core/slot -- | ||
#BSUB -M 5GB | ||
### -- set walltime limit: hh:mm -- | ||
#BSUB -W 24:00 | ||
### -- set the email address -- | ||
# please uncomment the following line and put in your e-mail address, | ||
# if you want to receive e-mail notifications on a non-default address | ||
#BSUB -u [email protected] | ||
### -- send notification at start -- | ||
#BSUB -B | ||
### -- send notification at completion -- | ||
#BSUB -N | ||
### -- Specify the output and error file. %J is the job-id -- | ||
### -- -o and -e mean append, -oo and -eo mean overwrite -- | ||
#BSUB -o ~/Output_%J.out | ||
#BSUB -e ~/Output_%J.err | ||
|
||
cd ~/code-master | ||
cargo run -- oneplusonena half -i 500 -t 1000 -o oneplusonena_half_500_1 |