Skip to content
GitLab
Explore
Sign in
Register
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
6595c7c0
Commit
6595c7c0
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Use c_bsn_latency_first_node = 1 to reduce circular buffer size.
parent
29b030e2
No related branches found
Branches containing commit
No related tags found
1 merge request
!389
Resolve L2SDP-1013
Pipeline
#75550
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/libraries/sdp/src/vhdl/sdp_beamformer_remote.vhd
+8
-2
8 additions, 2 deletions
...s/lofar2/libraries/sdp/src/vhdl/sdp_beamformer_remote.vhd
with
8 additions
and
2 deletions
applications/lofar2/libraries/sdp/src/vhdl/sdp_beamformer_remote.vhd
+
8
−
2
View file @
6595c7c0
...
...
@@ -71,8 +71,14 @@ architecture str of sdp_beamformer_remote is
constant
c_fifo_size
:
natural
:
=
2
**
ceil_log2
((
c_block_size
*
9
)
/
16
);
-- 9/16 = 36/64, 1 block of
-- 64 bit words rounded to the next power of 2 = 1024.
constant
c_bsn_latency_max
:
natural
:
=
2
;
-- max 2 blocks latency per node in chain
constant
c_bsn_latency_first_node
:
natural
:
=
2
;
-- Max 2 blocks latency per node in chain. Use c_bsn_latency_first_node = 1
-- for first node is possible, because it does not have to align with remote
-- input. By using c_bsn_latency_first_node = 1 the circular buffer size
-- becomes true_log_pow2(1 + g_nof_aligners_max * c_bsn_latency_max +
-- c_bsn_latency_first_node) = true_log_pow2(1 + (16 - 1) * 2 + 1) = 32
-- blocks, instead of true_log_pow2(1 + 16 * 2) = 64 blocks.
constant
c_bsn_latency_max
:
natural
:
=
2
;
constant
c_bsn_latency_first_node
:
natural
:
=
1
;
signal
chain_node_index
:
natural
range
0
to
c_sdp_N_pn_max
-
1
:
=
0
;
...
...
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