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
1ede92ef
Commit
1ede92ef
authored
3 years ago
by
Rebecca Ewing
Browse files
Options
Downloads
Patches
Plain Diff
gstlal-inspiral/bin/gstlal_inspiral_flopulator: output ratio of svd templates to input templates
write all data out to h5
parent
4db92a62
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!209
O4 Online
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/bin/gstlal_inspiral_flopulator
+36
-13
36 additions, 13 deletions
gstlal-inspiral/bin/gstlal_inspiral_flopulator
with
36 additions
and
13 deletions
gstlal-inspiral/bin/gstlal_inspiral_flopulator
+
36
−
13
View file @
1ede92ef
...
...
@@ -20,8 +20,10 @@
import
numpy
import
os
import
sys
from
gstlal
import
svd_bank
import
h5py
#FIXME hack to deal with pre ER5 / post ER5 bank file formats, remove when not an issue
try
:
...
...
@@ -29,13 +31,24 @@ try:
except
AttributeError
:
banks
=
[
svd_bank
.
read_bank
(
sys
.
argv
[
1
])]
svdbin
=
sys
.
argv
[
1
].
split
(
'
_
'
)[
0
].
split
(
'
-
'
)[
1
]
print
(
"
SVD BIN:
"
,
svdbin
)
outpath
=
sys
.
argv
[
2
]
hf
=
h5py
.
File
(
outpath
,
'
a
'
)
g1
=
hf
.
create_group
(
f
'
{
svdbin
}
'
)
totalMFLOPS
=
0
averageMFLOPS
=
0
totalMT
=
0
totalUT
=
0
for
i
,
bank
in
enumerate
(
banks
):
print
""
g
=
hf
.
create_group
(
f
'
{
svdbin
}
/subbank-
{
i
}
'
)
print
(
""
)
rT
=
[
f
.
rate
for
f
in
bank
.
bank_fragments
]
r
=
numpy
.
array
(
sorted
(
list
(
set
(
rT
))))
rT
=
numpy
.
array
(
rT
)
...
...
@@ -44,12 +57,16 @@ for i, bank in enumerate(banks):
MT
=
[
f
.
mix_matrix
.
shape
[
1
]
for
f
in
bank
.
bank_fragments
][
0
]
NT
=
numpy
.
array
([(
f
.
end
-
f
.
start
)
*
f
.
rate
for
f
in
bank
.
bank_fragments
])
print
"
\n
SUB BANK %d
"
%
i
print
"
--->
\t
Unique sampling rates:
"
,
r
print
"
--->
\t
Sampling rate for a given time slice:
"
,
rT
print
"
--->
\t
Total SVD filters for a given time slice:
"
,
UT
print
"
--->
\t
Number of SVD filter samples:
"
,
NT
print
"
--->
\t
Total real templates (e.g. twice number of complex templates):
"
,
MT
print
(
"
\n
SUB BANK %d
"
%
i
)
print
(
"
--->
\t
Unique sampling rates:
"
,
r
)
print
(
"
--->
\t
Sampling rate for a given time slice:
"
,
rT
)
print
(
"
--->
\t
Total SVD filters for a given time slice:
"
,
UT
)
print
(
"
--->
\t
Number of SVD filter samples:
"
,
NT
)
print
(
"
--->
\t
Total real templates (e.g. twice number of complex templates):
"
,
MT
)
g
.
create_dataset
(
'
sample-rates
'
,
data
=
rT
)
g
.
create_dataset
(
'
num-svd-filters
'
,
data
=
UT
)
g
.
create_dataset
(
'
num-real-templates
'
,
data
=
MT
)
# Convolution of a 16 sample filter requires a multiply-add per sample point of data for each sample of the filter for each physical template
resample
=
(
r
*
16
*
2
*
MT
).
sum
()
...
...
@@ -63,17 +80,23 @@ for i, bank in enumerate(banks):
# get FLOPs per *complex* template (note the divide by 2)
totalMT
+=
MT
/
2
print
"
--->
\t
MFLOPS from resampling:
"
,
resample
/
1000.
**
2
print
"
--->
\t
MFLOPS from filtering:
"
,
filter
/
1000.
**
2
print
"
--->
\t
MFLOPS from reconstruction:
"
,
reconstruct
/
1000.
**
2
print
"
--->
\t
MFLOPS from addition:
"
,
add
/
1000.
**
2
totalUT
+=
UT
.
sum
()
print
(
"
--->
\t
MFLOPS from resampling:
"
,
resample
/
1000.
**
2
)
print
(
"
--->
\t
MFLOPS from filtering:
"
,
filter
/
1000.
**
2
)
print
(
"
--->
\t
MFLOPS from reconstruction:
"
,
reconstruct
/
1000.
**
2
)
print
(
"
--->
\t
MFLOPS from addition:
"
,
add
/
1000.
**
2
)
MFLOPs
=
resample
/
1000.
**
2
+
filter
/
1000.
**
2
+
reconstruct
/
1000.
**
2
+
add
/
1000.
**
2
totalMFLOPS
+=
MFLOPs
print
"
--->
\t
Total MFLOPS:
"
,
MFLOPs
print
"
--->
\t
MFLOPS per complex template:
"
,
MFLOPs
/
(
MT
/
2.
)
print
(
"
--->
\t
Total MFLOPS:
"
,
MFLOPs
)
print
(
"
--->
\t
MFLOPS per complex template:
"
,
MFLOPs
/
(
MT
/
2.
))
print
(
"
--->
\t
Ratio number SVD filters to number real input templates:
"
,
UT
.
sum
()
/
MT
)
g
.
create_dataset
(
'
total-mflops
'
,
data
=
MFLOPs
)
averageMFLOPS
=
totalMFLOPS
/
totalMT
print
(
"
--
\n
Average MFLOPS per template:
"
,
averageMFLOPS
)
print
(
"
--
\n
Average Ratio number SVD filters to number real input templates:
"
,
totalUT
/
totalMT
/
2
)
hf
.
close
()
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