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
7bc981af
Commit
7bc981af
authored
6 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added comment on expected DB output size in terms of M9k and M144k block RAM.
parent
364be543
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/apertif/designs/apertif_unb1_correlator/src/vhdl/node_apertif_unb1_correlator_output.vhd
+6
-0
6 additions, 0 deletions
...rrelator/src/vhdl/node_apertif_unb1_correlator_output.vhd
with
6 additions
and
0 deletions
applications/apertif/designs/apertif_unb1_correlator/src/vhdl/node_apertif_unb1_correlator_output.vhd
+
6
−
0
View file @
7bc981af
...
...
@@ -89,6 +89,12 @@ ARCHITECTURE str OF node_apertif_unb1_correlator_output IS
SIGNAL
src_out_arr
:
t_dp_sosi_arr
(
0
DOWNTO
0
);
-- Output DB
-- . In simulation store: all visibility packets for entire sync interval to avoid need to use DB arm mode.
-- . On hardware store
-- - assume use 8b instead of 9b for M9k and M144k RAM, so effectively M8k and M128k RAM
-- - at least 1 visibility packet to have minimal DB RAM resources of 621 * 32 b which fits in 4 M9K = 4 * 1024 * 8b
-- - all 64 visibility packets per beamlets to have faster M&C access and DB RAM resources 39 * 1024 * 32 b = 1277952b,
-- which fits in 10 M144k, because 10 * 16 * 1024 * 8b = 40 * 1024 * 32 b
CONSTANT
c_vis_header_size
:
NATURAL
:
=
21
;
-- (pad(2) + eth(14) + ip(20) + udp(8) + app_id(16) + app_flags(24)) / 4 = 84 bytes / 4 = 21 words
CONSTANT
c_vis_payload_size
:
NATURAL
:
=
c_nof_complex
*
g_nof_visibilities
;
CONSTANT
c_vis_packet_size
:
NATURAL
:
=
c_vis_header_size
+
c_vis_payload_size
;
-- = 21 + 600 = 621
...
...
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