Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bilby_pipe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby_pipe
Commits
b9938667
Commit
b9938667
authored
5 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Plain Diff
Merge branch '98-switch-plotting-jobs-to-run-locally' into 'master'
Resolve "Switch plotting jobs to run locally" Closes
#98
See merge request
!117
parents
c61f39a4
376c5305
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!117
Resolve "Switch plotting jobs to run locally"
Pipeline
#66458
passed
5 years ago
Stage: test
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bilby_pipe/gracedb.py
+1
-0
1 addition, 0 deletions
bilby_pipe/gracedb.py
bilby_pipe/main.py
+8
-2
8 additions, 2 deletions
bilby_pipe/main.py
bilby_pipe/parser.py
+4
-0
4 additions, 0 deletions
bilby_pipe/parser.py
tests/dag_test.py
+1
-0
1 addition, 0 deletions
tests/dag_test.py
with
14 additions
and
2 deletions
bilby_pipe/gracedb.py
+
1
−
0
View file @
b9938667
...
...
@@ -172,6 +172,7 @@ def create_config_file(candidate, gracedb, outdir, roq=True):
sampler_kwargs
=
"
{nlive: 1000, walks: 100, check_point_plot=True, n_check_point: 5000}
"
,
create_plots
=
True
,
local_generation
=
True
,
local_plot
=
True
,
transfer_files
=
False
,
time_marginalization
=
True
,
distance_marginalization
=
True
,
...
...
This diff is collapsed.
Click to expand it.
bilby_pipe/main.py
+
8
−
2
View file @
b9938667
...
...
@@ -92,6 +92,7 @@ class MainInput(Input):
self
.
run_local
=
args
.
local
self
.
local_generation
=
args
.
local_generation
self
.
local_plot
=
args
.
local_plot
self
.
gps_file
=
args
.
gps_file
self
.
trigger_time
=
args
.
trigger_time
...
...
@@ -768,6 +769,11 @@ class Dag(object):
def
create_plot_jobs
(
self
):
if
self
.
inputs
.
local_plot
:
universe
=
"
local
"
else
:
universe
=
self
.
universe
if
self
.
merged_runs
:
files
=
[
self
.
merged_runs_result_file
]
parent_jobs
=
[
self
.
merged_runs_job
]
...
...
@@ -796,9 +802,9 @@ class Dag(object):
name
=
job_name
,
executable
=
shutil
.
which
(
"
bilby_pipe_plot
"
),
submit
=
self
.
inputs
.
submit_directory
,
request_memory
=
"
32
GB
"
,
request_memory
=
"
16
GB
"
,
getenv
=
self
.
getenv
,
universe
=
self
.
universe
,
universe
=
universe
,
initialdir
=
self
.
initialdir
,
notification
=
self
.
notification
,
requirements
=
self
.
requirements
,
...
...
This diff is collapsed.
Click to expand it.
bilby_pipe/parser.py
+
4
−
0
View file @
b9938667
...
...
@@ -266,6 +266,10 @@ def create_parser(top_level=True):
"
data generation job locally.
"
),
)
submission_parser
.
add
(
"
--local-plot
"
,
action
=
"
store_true
"
,
help
=
"
Run the plot job locally
"
)
submission_parser
.
add
(
"
--outdir
"
,
type
=
str
,
default
=
"
.
"
,
help
=
"
Output directory
"
)
parser
.
add
(
"
--periodic-restart-time
"
,
...
...
This diff is collapsed.
Click to expand it.
tests/dag_test.py
+
1
−
0
View file @
b9938667
...
...
@@ -32,6 +32,7 @@ class TestDag(unittest.TestCase):
email
=
"
test@test.com
"
,
existing_dir
=
None
,
local_generation
=
False
,
local_plot
=
False
,
trigger_time
=
0
,
deltaT
=
0.2
,
waveform_approximant
=
"
IMRPhenomPV2
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment