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
81b381ca
Commit
81b381ca
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Add some notes for sdp_requantization talk.
parent
33612e37
No related branches found
No related tags found
No related merge requests found
Pipeline
#54487
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/erko_teaser_talks.txt
+34
-1
34 additions, 1 deletion
doc/erko_teaser_talks.txt
with
34 additions
and
1 deletion
doc/erko_teaser_talks.txt
+
34
−
1
View file @
81b381ca
...
@@ -107,6 +107,14 @@ at university.
...
@@ -107,6 +107,14 @@ at university.
. similar for a % b to get remainder after division by b
. similar for a % b to get remainder after division by b
side note: beware of a % b == 1, result is language dependent when a or b is negative
side note: beware of a % b == 1, result is language dependent when a or b is negative
* internal processing uses more LSbits --> rounding needed
output has reduced RFI --> clipping needed
* Integers represent fixed point values:
Fixed point values represent floating-point values, with exponent (position of the point) fixed at compile time
Position of the point is implicit or defined by constants at compile time
Number of bits of integer corresponds to number of bits of the mantissa in floating point
* Removing LSbits (unused resolution, insignificant bits)
* Removing LSbits (unused resolution, insignificant bits)
- truncation by discarding LSbit is free in logic:
- truncation by discarding LSbit is free in logic:
...
@@ -130,6 +138,17 @@ at university.
...
@@ -130,6 +138,17 @@ at university.
+1 0001 0 00
+1 0001 0 00
0 0000 0 00
0 0000 0 00
. E.g. 3 bit value discard 1 LSbit
-1 111 -1 11
-2 110 -1 11
-3 101 -2 10
-4 100 -2 10
+3 011 1 01
+2 010 1 01
+1 001 0 00
0 000 0 00
Corresponds to:
Corresponds to:
. shift right by n bits >> : -5 >> 2 = -2, 5 >> 2 = 1
. shift right by n bits >> : -5 >> 2 = -2, 5 >> 2 = 1
. divide // 2**n : -5 // 4 = -2, 5 // 4 = 1
. divide // 2**n : -5 // 4 = -2, 5 // 4 = 1
...
@@ -174,6 +193,20 @@ at university.
...
@@ -174,6 +193,20 @@ at university.
- supports removing MSbits and LSbits
- supports removing MSbits and LSbits
- to ensure same Q scheme is used consistently throughout the SDP firmware
- to ensure same Q scheme is used consistently throughout the SDP firmware
entity dp_requantize is
generic (
g_representation : string := "SIGNED";
g_lsb_w : integer := 4;
g_lsb_round : boolean := true;
g_lsb_round_clip : boolean := false;
g_lsb_round_even : boolean := true; -- else away
g_msb_clip : boolean := true; -- else wrap
g_msb_clip_symmetric : boolean := false;
g_in_dat_w : natural := 36; -- input data width
g_out_dat_w : natural := 18 -- output data width
);
* SDP signal path
* SDP signal path
- Task: Preserve sensitivity of the ADC input and maintain sufficient dynamic range
- Task: Preserve sensitivity of the ADC input and maintain sufficient dynamic range
...
@@ -203,7 +236,7 @@ at university.
...
@@ -203,7 +236,7 @@ at university.
The RFI sets the maximum input level for the ADC --> -50 dBFS margin to avoid overflow (clipping)
The RFI sets the maximum input level for the ADC --> -50 dBFS margin to avoid overflow (clipping)
Used FPGA build in multipliers of 18b * 18b or 27b *
18
b
Used FPGA build in multipliers of 18b * 18b or 27b *
27
b
FIR filter
FIR filter
- Consists of multiply (real coefficients) accumulates (taps)
- Consists of multiply (real coefficients) accumulates (taps)
...
...
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