We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the path : hw/hdl/network/rdma/ the file : rdma_meta_tx_arbiter.sv
the rtl code at line 163 of rdma_meta_tx_arbiter.sv file,
assign user_seq_in.data = {vfid, request_snk[vfid].req_1.len};
the request_snk[vfid] signal does not exist in rdma_meta_tx_arbiter.sv file, what is in the file is just req_snk[vfid],
so line 163 should be :
assign user_seq_in.data = {vfid, req_snk[vfid].req_1.len};
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the path : hw/hdl/network/rdma/
the file : rdma_meta_tx_arbiter.sv
the rtl code at line 163 of rdma_meta_tx_arbiter.sv file,
the request_snk[vfid] signal does not exist in rdma_meta_tx_arbiter.sv file, what is in the file is just req_snk[vfid],
so line 163 should be :
The text was updated successfully, but these errors were encountered: