Skip to content
Snippets Groups Projects
Commit 7c60cdb8 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed arguments order

parent bb480b57
No related branches found
No related tags found
1 merge request!69Draft: Add support for lower than 8-bits precision
Pipeline #80987 passed
......@@ -3,5 +3,5 @@ static const NoScaling {{ name|upper }}_RESCALING = {};
{%- elif rescaling == "SingleShiftScaling" %}
static const SingleShiftScaling<{{ shift_value }}> {{ name|upper }}_RESCALING = {};
{%- elif rescaling == "FixedPointScaling" %}
static const FixedPointScaling<{{ shift_value }}, {{ coef_value }}> {{ name|upper }}_RESCALING = {};
static const FixedPointScaling<{{ coef_value }}, {{ shift_value }}> {{ name|upper }}_RESCALING = {};
{%- endif %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment