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
Hi AIE team,
I am writing to remind that
Vitis-Tutorials/AI_Engine_Development/AIE/Design_Tutorials/10-GeMM_AIEvsDSP/AIE/design/aie_src/graph.h
Line 112 in 7fd526a
this line adf::connect<>(mmult[i].out, matC_out[i].in[0]);
need to be changed as adf::connect<>(mmult[i].out[0], matC_out[i].in[0]);
to make the program runnable
The text was updated successfully, but these errors were encountered:
Hi @ChengyueWang , thanks for pointing out this issue. I've forwarded this message to the author.
Sorry, something went wrong.
No branches or pull requests
Hi AIE team,
I am writing to remind that
Vitis-Tutorials/AI_Engine_Development/AIE/Design_Tutorials/10-GeMM_AIEvsDSP/AIE/design/aie_src/graph.h
Line 112 in 7fd526a
this line
adf::connect<>(mmult[i].out, matC_out[i].in[0]);
need to be changed as
adf::connect<>(mmult[i].out[0], matC_out[i].in[0]);
to make the program runnable
The text was updated successfully, but these errors were encountered: