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
e780ad0c
Commit
e780ad0c
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Fix too long lines.
parent
0954b97a
No related branches found
No related tags found
1 merge request
!359
Clarify g_nof_destinations_max design revision parameter and package constants...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
+12
-6
12 additions, 6 deletions
.../libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
with
12 additions
and
6 deletions
applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
+
12
−
6
View file @
e780ad0c
...
...
@@ -97,12 +97,18 @@ architecture str of sdp_bdo_multiple_destinations is
-- Look up table constants as function of nof_destinations in range(g_nof_destinations_max)
constant
c_m
:
natural
:
=
g_nof_destinations_max
;
constant
c_reorder_nof_blocks_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_reorder_nof_blocks_look_up_table
(
c_m
);
constant
c_reorder_nof_ch_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_reorder_nof_ch_look_up_table
(
c_m
);
constant
c_nof_beamlets_per_block_first_destinations_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_beamlets_per_block_first_destinations_look_up_table
(
c_m
);
constant
c_nof_beamlets_per_block_last_destination_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_beamlets_per_block_last_destination_look_up_table
(
c_m
);
constant
c_nof_ch_per_packet_first_destinations_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_ch_per_packet_first_destinations_look_up_table
(
c_m
);
constant
c_nof_ch_per_packet_last_destination_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_ch_per_packet_last_destination_look_up_table
(
c_m
);
constant
c_reorder_nof_blocks_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_reorder_nof_blocks_look_up_table
(
c_m
);
constant
c_reorder_nof_ch_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_reorder_nof_ch_look_up_table
(
c_m
);
constant
c_nof_beamlets_per_block_first_destinations_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_beamlets_per_block_first_destinations_look_up_table
(
c_m
);
constant
c_nof_beamlets_per_block_last_destination_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_beamlets_per_block_last_destination_look_up_table
(
c_m
);
constant
c_nof_ch_per_packet_first_destinations_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_ch_per_packet_first_destinations_look_up_table
(
c_m
);
constant
c_nof_ch_per_packet_last_destination_arr
:
t_natural_arr
(
1
to
c_m
)
:
=
func_sdp_bdo_nof_ch_per_packet_last_destination_look_up_table
(
c_m
);
constant
c_nof_ch_per_packet_max
:
natural
:
=
largest
(
c_nof_ch_per_packet_first_destinations_arr
);
constant
c_nof_ch_per_packet_w
:
natural
:
=
ceil_log2
(
c_nof_ch_per_packet_max
+
1
);
...
...
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