Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
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
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
GstLAL
Commits
e7c5df22
Commit
e7c5df22
authored
1 year ago
by
Prathamesh Joshi
Committed by
Prathamesh Joshi
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Parallelize calc_rank_pdfs
parent
15b9547b
No related branches found
Branches containing commit
No related tags found
2 merge requests
!500
First commit of gstlal_inspiral_generate_epochs
,
!488
Draft: Online rerank dev
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/python/dags/layers/inspiral.py
+23
-13
23 additions, 13 deletions
gstlal-inspiral/python/dags/layers/inspiral.py
with
23 additions
and
13 deletions
gstlal-inspiral/python/dags/layers/inspiral.py
+
23
−
13
View file @
e7c5df22
...
...
@@ -578,7 +578,8 @@ def marginalize_layer(config, dag, prior_cache, dist_stat_cache):
def
calc_pdf_layer
(
config
,
dag
,
dist_stat_cache
):
# FIXME: expose this in configuration
num_cores
=
4
num_cores
=
config
.
rank
.
calc_rank_cores
if
config
.
rank
.
calc_rank_cores
else
4
num_jobs
=
config
.
rank
.
calc_rank_jobs
if
config
.
rank
.
calc_rank_jobs
else
1
layer
=
Layer
(
"
gstlal_inspiral_calc_rank_pdfs
"
,
...
...
@@ -591,27 +592,36 @@ def calc_pdf_layer(config, dag, dist_stat_cache):
transfer_files
=
config
.
condor
.
transfer_files
,
)
if
num_jobs
==
1
:
svd_bins
=
config
.
svd
.
bins
else
:
svd_bins
=
[]
for
svd_bin
in
config
.
svd
.
bins
:
for
i
in
range
(
num_jobs
):
svd_bins
.
append
(
svd_bin
+
"
_
"
+
str
(
i
))
pdf_cache
=
DataCache
.
generate
(
DataType
.
DIST_STAT_PDFS
,
config
.
all_ifos
,
config
.
span
,
svd_bins
=
config
.
svd
.
bins
,
svd_bins
=
svd
_
bins
,
root
=
"
rank
"
,
)
dist_stats
=
dist_stat_cache
.
groupby
(
"
bin
"
)
for
svd_bin
,
pdfs
in
pdf_cache
.
groupby
(
"
bin
"
).
items
():
layer
+=
Node
(
arguments
=
[
Option
(
"
ranking-stat-samples
"
,
config
.
rank
.
ranking_stat_samples
),
Option
(
"
num-cores
"
,
num_cores
),
],
inputs
=
[
Argument
(
"
mass-model
"
,
config
.
prior
.
mass_model
,
track
=
False
,
suppress
=
True
),
Argument
(
"
dist-stats
"
,
dist_stats
[
svd_bin
].
files
),
],
outputs
=
Option
(
"
output
"
,
pdfs
.
files
)
)
for
pdf
in
pdfs
.
files
:
layer
+=
Node
(
arguments
=
[
Option
(
"
ranking-stat-samples
"
,
config
.
rank
.
ranking_stat_samples
),
Option
(
"
num-cores
"
,
num_cores
),
],
inputs
=
[
Argument
(
"
mass-model
"
,
config
.
prior
.
mass_model
,
track
=
False
,
suppress
=
True
),
Argument
(
"
dist-stats
"
,
dist_stats
[
svd_bin
].
files
),
],
outputs
=
Option
(
"
output
"
,
pdf
)
)
dag
.
attach
(
layer
)
return
pdf_cache
...
...
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