Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
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
gwinc
pygwinc
Commits
f1012ee6
Commit
f1012ee6
authored
4 years ago
by
Lee McCuller
Browse files
Options
Downloads
Patches
Plain Diff
added caching of non-mapped precomp
parent
864a4011
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!95
precomp decorator support
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/nb.py
+8
-4
8 additions, 4 deletions
gwinc/nb.py
with
8 additions
and
4 deletions
gwinc/nb.py
+
8
−
4
View file @
f1012ee6
...
@@ -72,10 +72,14 @@ def _precomp_recurse_mapping(func, freq, ifo, _precomp):
...
@@ -72,10 +72,14 @@ def _precomp_recurse_mapping(func, freq, ifo, _precomp):
is returned
is returned
"""
"""
#run the prerequisite precomps first. These typically modify the ifo Struct (yuck)
#run the prerequisite precomps first. These typically modify the ifo Struct (yuck)
plist_set
=
_precomp
.
setdefault
(
"
_precomp_list
"
,
set
())
for
pc_func
in
getattr
(
func
,
'
_precomp_list
'
,
[]):
for
pc_func
in
getattr
(
func
,
'
_precomp_list
'
,
[]):
pc_map
=
_precomp_recurse_mapping
(
pc_func
,
freq
,
ifo
,
_precomp
=
_precomp
)
if
pc_func
in
plist_set
:
continue
pc_map
=
_precomp_recurse_mapping
(
pc_func
,
freq
,
ifo
,
_precomp
=
_precomp
)
#now call the function with the built mapping
#now call the function with the built mapping
pc_func
(
freq
,
ifo
,
**
pc_map
)
pc_func
(
freq
,
ifo
,
**
pc_map
)
plist_set
.
add
(
pc_func
)
#now run the prerequisite mappings. These return values which get mapped
#now run the prerequisite mappings. These return values which get mapped
precomp_mapping
=
dict
()
precomp_mapping
=
dict
()
...
@@ -90,7 +94,7 @@ def _precomp_recurse_mapping(func, freq, ifo, _precomp):
...
@@ -90,7 +94,7 @@ def _precomp_recurse_mapping(func, freq, ifo, _precomp):
continue
continue
logger
.
debug
(
"
precomp {}
"
.
format
(
pc_func
))
logger
.
debug
(
"
precomp {}
"
.
format
(
pc_func
))
#build the mapping for the requisite call
#build the mapping for the requisite call
pc_map
=
_precomp_recurse_mapping
(
pc_func
,
freq
,
ifo
,
_precomp
=
_precomp
)
pc_map
=
_precomp_recurse_mapping
(
pc_func
,
freq
,
ifo
,
_precomp
=
_precomp
)
#now call the function with the built mapping
#now call the function with the built mapping
PC
=
pc_func
(
freq
,
ifo
,
**
pc_map
)
PC
=
pc_func
(
freq
,
ifo
,
**
pc_map
)
precomp_mapping
[
name
]
=
PC
precomp_mapping
[
name
]
=
PC
...
@@ -137,7 +141,7 @@ class BudgetItem:
...
@@ -137,7 +141,7 @@ class BudgetItem:
if
_precomp
is
None
:
if
_precomp
is
None
:
_precomp
=
dict
()
_precomp
=
dict
()
_PCmap
=
_precomp_recurse_mapping
(
self
.
calc
,
self
.
freq
,
self
.
ifo
,
_precomp
=
_precomp
)
_PCmap
=
_precomp_recurse_mapping
(
self
.
calc
,
self
.
freq
,
self
.
ifo
,
_precomp
=
_precomp
)
#PCmap is not used for this "dry run" update. _precomp could be cached?
#PCmap is not used for this "dry run" update. _precomp could be cached?
_PCmap
# I just refer to _PCmap here to appease the linter
_PCmap
# I just refer to _PCmap here to appease the linter
return
return
...
@@ -542,7 +546,7 @@ class Budget(Noise):
...
@@ -542,7 +546,7 @@ class Budget(Noise):
_precomp
=
_precomp
,
_precomp
=
_precomp
,
)
)
def
calc_trace
(
self
,
calibration
=
1
,
calc
=
True
,
_precomp
=
None
):
def
calc_trace
(
self
,
calibration
=
1
,
calc
=
True
,
_precomp
=
None
):
"""
Calculate all budget noises and return BudgetTrace object
"""
Calculate all budget noises and return BudgetTrace object
`calibration` should either be a scalar or a len(self.freq)
`calibration` should either be a scalar or a len(self.freq)
...
...
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