Skip to content

Commit

Permalink
merge from devel
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Nov 18, 2024
2 parents bcdc843 + a3b7bad commit 90c2fbc
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 6 deletions.
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@
keywords = ['radical', 'cybertools', 'pilot job']

share = 'share/%s' % name
data = [('%s/examples' % share, glob('examples/*.{py,cfg,json,sh}')),
('%s/examples' % share, glob('examples/hello*' )),
('%s/examples/docs' % share, glob('examples/docs/*.py' )),
('%s/examples/misc' % share, glob('examples/misc/*.py' )),
('%s/examples/misc' % share, glob('examples/misc/*.cfg' )),
('%s/examples/misc' % share, glob('examples/data_staging/*.py' ))]
data = [('%s/examples' % share, glob('examples/*.py' )),
('%s/examples' % share, glob('examples/*.json' )),
('%s/examples' % share, glob('examples/*.sh' )),
('%s/examples' % share, glob('examples/hello*' )),
('%s/examples/docs' % share, glob('examples/docs/*.py' )),
('%s/examples/misc' % share, glob('examples/misc/*.py' )),
('%s/examples/misc' % share, glob('examples/misc/*.cfg' )),
('%s/examples/misc' % share, glob('examples/data_staging/*.py'))]


# ------------------------------------------------------------------------------
Expand Down
31 changes: 31 additions & 0 deletions src/radical/pilot/configs/resource_tianjin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"sugon":
{
"description" : "Heterogeneous HPC cluster located in Tianjun Sugon, China",
"notes" : "Access from: https://www.scnet.cn/ui/mall/",
"default_schema" : "local",
"schemas" : {
"local" : {
"job_manager_endpoint": "slurm://localhost/",
"filesystem_endpoint" : "file://localhost/"
}
},
"default_queue" : "standard",
"resource_manager" : "SLURM",
"agent_scheduler" : "CONTINUOUS",
"agent_spawner" : "POPEN",
"launch_methods" : {
"order": ["SRUN"],
"SRUN" : {}
},
"pre_bootstrap_0" : [
"module load compiler/dtk/22.04.2",
"module load compiler/devtoolset/7.3.1",
"module load mpi/hpcx/gcc-7.3.1",
"module load anaconda3"
],
"default_remote_workdir" : "$HOME",
"virtenv_mode" : "local",
"system_architecture" : {"exclusive": true}
}
}

0 comments on commit 90c2fbc

Please sign in to comment.