Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Commits
8d22803d
Commit
8d22803d
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Add more error checking in generators
parent
fe2b75a1
No related branches found
No related tags found
1 merge request
!208
Minor fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/sfg_generators.py
+13
-16
13 additions, 16 deletions
b_asic/sfg_generators.py
with
13 additions
and
16 deletions
b_asic/sfg_generators.py
+
13
−
16
View file @
8d22803d
...
@@ -60,6 +60,9 @@ def wdf_allpass(
...
@@ -60,6 +60,9 @@ def wdf_allpass(
Signal flow graph
Signal flow graph
"""
"""
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
order
=
len
(
np_coefficients
)
if
not
order
:
raise
ValueError
(
"
Coefficients cannot be empty
"
)
if
np_coefficients
.
ndim
!=
1
:
if
np_coefficients
.
ndim
!=
1
:
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
if
input_op
is
None
:
if
input_op
is
None
:
...
@@ -68,7 +71,6 @@ def wdf_allpass(
...
@@ -68,7 +71,6 @@ def wdf_allpass(
output
=
Output
()
output
=
Output
()
if
name
is
None
:
if
name
is
None
:
name
=
"
WDF allpass section
"
name
=
"
WDF allpass section
"
order
=
len
(
np_coefficients
)
odd_order
=
order
%
2
odd_order
=
order
%
2
if
odd_order
:
if
odd_order
:
# First-order section
# First-order section
...
@@ -120,12 +122,8 @@ def direct_form_fir(
...
@@ -120,12 +122,8 @@ def direct_form_fir(
input_op
:
Optional
[
Union
[
Input
,
Signal
,
InputPort
]]
=
None
,
input_op
:
Optional
[
Union
[
Input
,
Signal
,
InputPort
]]
=
None
,
output
:
Optional
[
Union
[
Output
,
Signal
,
OutputPort
]]
=
None
,
output
:
Optional
[
Union
[
Output
,
Signal
,
OutputPort
]]
=
None
,
name
:
Optional
[
str
]
=
None
,
name
:
Optional
[
str
]
=
None
,
mult_properties
:
Optional
[
mult_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]]
=
None
,
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]
add_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]]
=
None
,
]
=
None
,
add_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]
]
=
None
,
):
):
r
"""
r
"""
Generate a signal flow graph of a direct form FIR filter. The *coefficients* parameter is a
Generate a signal flow graph of a direct form FIR filter. The *coefficients* parameter is a
...
@@ -166,6 +164,9 @@ def direct_form_fir(
...
@@ -166,6 +164,9 @@ def direct_form_fir(
transposed_direct_form_fir
transposed_direct_form_fir
"""
"""
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
taps
=
len
(
np_coefficients
)
if
not
taps
:
raise
ValueError
(
"
Coefficients cannot be empty
"
)
if
np_coefficients
.
ndim
!=
1
:
if
np_coefficients
.
ndim
!=
1
:
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
if
input_op
is
None
:
if
input_op
is
None
:
...
@@ -179,7 +180,6 @@ def direct_form_fir(
...
@@ -179,7 +180,6 @@ def direct_form_fir(
if
add_properties
is
None
:
if
add_properties
is
None
:
add_properties
=
{}
add_properties
=
{}
taps
=
len
(
np_coefficients
)
prev_delay
=
input_op
prev_delay
=
input_op
prev_add
=
None
prev_add
=
None
for
i
,
coeff
in
enumerate
(
np_coefficients
):
for
i
,
coeff
in
enumerate
(
np_coefficients
):
...
@@ -202,12 +202,8 @@ def transposed_direct_form_fir(
...
@@ -202,12 +202,8 @@ def transposed_direct_form_fir(
input_op
:
Optional
[
Union
[
Input
,
Signal
,
InputPort
]]
=
None
,
input_op
:
Optional
[
Union
[
Input
,
Signal
,
InputPort
]]
=
None
,
output
:
Optional
[
Union
[
Output
,
Signal
,
OutputPort
]]
=
None
,
output
:
Optional
[
Union
[
Output
,
Signal
,
OutputPort
]]
=
None
,
name
:
Optional
[
str
]
=
None
,
name
:
Optional
[
str
]
=
None
,
mult_properties
:
Optional
[
mult_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]]
=
None
,
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]
add_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]]
=
None
,
]
=
None
,
add_properties
:
Optional
[
Union
[
Dict
[
str
,
int
],
Dict
[
str
,
Dict
[
str
,
int
]]]
]
=
None
,
):
):
r
"""
r
"""
Generate a signal flow graph of a transposed direct form FIR filter. The *coefficients* parameter is a
Generate a signal flow graph of a transposed direct form FIR filter. The *coefficients* parameter is a
...
@@ -248,6 +244,9 @@ def transposed_direct_form_fir(
...
@@ -248,6 +244,9 @@ def transposed_direct_form_fir(
direct_form_fir
direct_form_fir
"""
"""
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
np_coefficients
=
np
.
squeeze
(
np
.
asarray
(
coefficients
))
taps
=
len
(
np_coefficients
)
if
not
taps
:
raise
ValueError
(
"
Coefficients cannot be empty
"
)
if
np_coefficients
.
ndim
!=
1
:
if
np_coefficients
.
ndim
!=
1
:
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
raise
TypeError
(
"
coefficients must be a 1D-array
"
)
if
input_op
is
None
:
if
input_op
is
None
:
...
@@ -261,9 +260,7 @@ def transposed_direct_form_fir(
...
@@ -261,9 +260,7 @@ def transposed_direct_form_fir(
if
add_properties
is
None
:
if
add_properties
is
None
:
add_properties
=
{}
add_properties
=
{}
taps
=
len
(
np_coefficients
)
prev_delay
=
None
prev_delay
=
None
prev_add
=
None
for
i
,
coeff
in
enumerate
(
reversed
(
np_coefficients
)):
for
i
,
coeff
in
enumerate
(
reversed
(
np_coefficients
)):
tmp_mul
=
ConstantMultiplication
(
coeff
,
input_op
,
**
mult_properties
)
tmp_mul
=
ConstantMultiplication
(
coeff
,
input_op
,
**
mult_properties
)
tmp_add
=
(
tmp_add
=
(
...
...
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