-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to more compact message, drop calculator * Add Parsl configurations * Make sure ASE settings get propagated to workers * Use semaphore for initial energy
- Loading branch information
Showing
7 changed files
with
84 additions
and
5 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
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,3 @@ | ||
# Parsl Configuration | ||
|
||
Parsl configurations for different resources. |
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,37 @@ | ||
"""Use the debug queue on Theta""" | ||
from parsl import Config, HighThroughputExecutor | ||
from parsl.providers import CobaltProvider | ||
from parsl.launchers import AprunLauncher | ||
from parsl.addresses import address_by_interface | ||
|
||
|
||
def make_config(): | ||
return Config( | ||
retries=1, | ||
executors=[ | ||
HighThroughputExecutor( | ||
label='theta_local_htex_multinode', | ||
address=address_by_interface('vlan2360'), | ||
max_workers=1, | ||
provider=CobaltProvider( | ||
queue='debug-flat-quad', | ||
account='CSC249ADCD08', | ||
launcher=AprunLauncher(overrides="-d 64 --cc depth"), | ||
walltime='01:00:00', | ||
nodes_per_block=2, | ||
init_blocks=1, | ||
min_blocks=1, | ||
max_blocks=1, | ||
scheduler_options='#COBALT --attrs enable_ssh=1:filesystems=home,eagle', | ||
# Command to be run before starting a worker, such as: | ||
# 'module load Anaconda; source activate parsl_env'. | ||
worker_init=''' | ||
module load miniconda-3 | ||
source activate /lus/eagle/projects/ExaLearn/faster-molecular-hessians/env | ||
which python | ||
realpath . | ||
export PSIDATADIR=/lus/eagle/projects/ExaLearn/faster-molecular-hessians/env/share/psi4''', | ||
cmd_timeout=120, | ||
), | ||
) | ||
],), 8, {'num_threads': 64, 'memory': '64GB'} |
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,36 @@ | ||
"""Use the backfill queue on Theta""" | ||
from parsl import Config, HighThroughputExecutor | ||
from parsl.providers import CobaltProvider | ||
from parsl.launchers import AprunLauncher | ||
from parsl.addresses import address_by_interface | ||
|
||
|
||
def make_config(): | ||
return Config( | ||
retries=1, | ||
executors=[ | ||
HighThroughputExecutor( | ||
label='theta_local_htex_multinode', | ||
address=address_by_interface('vlan2360'), | ||
max_workers=1, | ||
provider=CobaltProvider( | ||
account='CSC249ADCD08', | ||
launcher=AprunLauncher(overrides="-d 64 --cc depth"), | ||
walltime='0:30:00', | ||
nodes_per_block=128, | ||
init_blocks=0, | ||
min_blocks=0, | ||
max_blocks=8, | ||
scheduler_options='#COBALT --attrs enable_ssh=1:filesystems=home,eagle', | ||
# Command to be run before starting a worker, such as: | ||
# 'module load Anaconda; source activate parsl_env'. | ||
worker_init=''' | ||
module load miniconda-3 | ||
source activate /lus/eagle/projects/ExaLearn/faster-molecular-hessians/env | ||
which python | ||
realpath . | ||
export PSIDATADIR=/lus/eagle/projects/ExaLearn/faster-molecular-hessians/env/share/psi4''', | ||
cmd_timeout=120, | ||
), | ||
) | ||
],), 128 * 8 + 100, {'num_threads': 64, 'memory': '64GB'} |
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