-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ASPIRE 1 example config to user guide #910
Comments
My notes on things to configure
Edit Parsl's torque template b/c it will always run with 1 ppn #669 . Then install your modified Parsl Running parsl in job:
So you have to run parsl in a job. It can be helpful to make a bash file for running a parsl script - wall time will determine your queue fro what I can tell, and this will put you in medium which is pretty fast if I'm remembering correctly. runParsl.sh #!/bin/bash
#PBS -q normal
#PBS -P Personal
#PBS -l select=1:ncpus=1:mem=2G
#PBS -l walltime=24:00:00
#PBS -N parsl_head
#PBS -o /home/users/industry/uchicago/tsummer2/outputfiles/parsl_head.o
#PBS -e /home/users/industry/uchicago/tsummer2/errorfiles/parsl_head.e
module load anaconda/3
source activate parsl_py36
python3 myParslScript.py Another thought, that someone else will have to confirm, is that they limit you to only 2 active jobs (ie parsl and the job it's running). |
Thanks for summarizing all this for us, @macintoshpie!!! This is super helpful!
Only minor comment is that this shouldn't be necessary after we implement #908. |
@ravihansa3000 provided PR #1582 which I think resolves this |
No description provided.
The text was updated successfully, but these errors were encountered: