Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
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
RTSD
HDL
Commits
e4089a0b
Commit
e4089a0b
authored
6 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Made corrections and added nonZeroDishes and nonZeroPolarizations.
parent
0de6f381
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/apertif/commissioning/tests/verify_correlator_db_output.py
+11
-7
11 additions, 7 deletions
...pertif/commissioning/tests/verify_correlator_db_output.py
with
11 additions
and
7 deletions
applications/apertif/commissioning/tests/verify_correlator_db_output.py
+
11
−
7
View file @
e4089a0b
...
@@ -294,17 +294,21 @@ for bui in beamlets:
...
@@ -294,17 +294,21 @@ for bui in beamlets:
even
=
True
even
=
True
for
data
in
rdPayload
:
for
data
in
rdPayload
:
if
even
:
if
even
:
visReal
=
cm
.
to_signed
(
data
)
visReal
=
cm
.
to_signed
(
data
,
32
)
else
:
else
:
visImag
=
cm
.
to_signed
(
data
)
visImag
=
cm
.
to_signed
(
data
,
32
)
rdVisibilities
.
append
(
complex
(
visReal
,
visImag
))
rdVisibilities
.
append
(
complex
(
visReal
,
visImag
))
even
=
not
even
# Find the TP for all read visibilities that are non-zero
# Find the TP for all read visibilities that are non-zero
nonZeroVisibilities
=
cm
.
find_indices_where_value_ne
(
rdVisibilities
,
0
)
nonZeroVisibilities
=
cm
.
find_indices_where_ne
(
rdVisibilities
,
0
)
nonZeroTpPairs
=
visibilities_to_tp_pairs
(
nonZeroVisibilities
)
nonZeroTpPairs
=
apr
.
visibilities_to_tp_pairs
(
nonZeroVisibilities
)
nonZeroTp
=
tp_pairs_to_active_tp
(
tpPairs
)
nonZeroTp
=
apr
.
tp_pairs_to_active_tp
(
nonZeroTpPairs
)
tc
.
append_log
(
tc
.
V_INFO_DETAILS
,
reportStr
+
'
Non zero TP = %s
'
%
nonZeroTp
)
nonZeroDishes
=
apr
.
tp_to_dish_indices
(
nonZeroTp
)
nonZeroPolarizations
=
apr
.
tp_to_pol_indices
(
nonZeroTp
)
tc
.
append_log
(
tc
.
V_INFO
,
reportStr
+
'
Non zero TP = %s : polarizations = %s and dishes = %s
'
%
(
nonZeroTp
,
nonZeroPolarizations
,
nonZeroDishes
))
###############################################################################
###############################################################################
# End
# End
tc
.
set_section_id
(
''
)
tc
.
set_section_id
(
''
)
...
...
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