-
Notifications
You must be signed in to change notification settings - Fork 104
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
A Board Configuration Example for The Freedom E310 Arty FPGA Dev Kit #148
base: master
Are you sure you want to change the base?
Conversation
@hirooih Nice work. I've again asked @PaoloS02 to review, but this is a good addition. Do you have any results you can add to the embench-iot-results repository? |
Thanks.
I can create a result in minutes. |
"program": "${workspaceFolder}/bd/src/nbody/nbody", | ||
// "args": [], | ||
"cwd": "${workspaceRoot}", | ||
// "environment": [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these supposed to be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean "args" and "environment"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right. The two lines are useless for execution environments on FPGAs.
Instead, it's better to add the following line.
See Configuring C/C++ debugging for more configuration options.
Remove useless comments. Add link to a link to VS code documentation.
@PaoloS02, BTW I have some updates to this PR. |
This configuration demonstrates how to run the Embench on an FPGA board.
The current Embench distribution does not include any examples of a FPGA board configuration.
This is a result of my trial and error.
I hope this helps Embench users.