Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vivado synthesis Error #16

Open
kmichikura opened this issue May 28, 2020 · 0 comments
Open

Vivado synthesis Error #16

kmichikura opened this issue May 28, 2020 · 0 comments

Comments

@kmichikura
Copy link
Contributor

If par_ich is greater than 32 and there are layers with less than 32 input channels, an error occurs during synthesis using Vivado.

The description causing the error is as follows:(par_ich = 64)

  wire  [63:0] cparam_conv2d_273_stream_omit_mask;
  assign cparam_conv2d_273_stream_omit_mask = (conv2d_273_control_param_index == 0)? 18446744069414584320 : 
                                              (conv2d_273_control_param_index == 1)? 0 : 
                                              (conv2d_273_control_param_index == 2)? 0 : 
                                              (conv2d_273_control_param_index == 3)? 18446744069414584320 : 
                                              (conv2d_273_control_param_index == 4)? 0 : 
                                              (conv2d_273_control_param_index == 5)? 0 : 
                                              (conv2d_273_control_param_index == 6)? 0 : 
                                              (conv2d_273_control_param_index == 7)? 0 : 0;

A decimal constant value without a bit width specified is interpreted as 32 bits, so it must specify a bit width or use a hexadecimal constant value.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant