-
Notifications
You must be signed in to change notification settings - Fork 734
Add vtune and advisor sample #102
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
Conversation
Signed-off-by: kevin.p.oleary <[email protected]>
Signed-off-by: kevin.p.oleary <[email protected]>
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.
Trigger CI
Tools/Advisor/matrix_multiply_advisor/Advisor_matrix_multiply_advisor_README.md
Outdated
Show resolved
Hide resolved
// ============================================================= | ||
|
||
#include <malloc.h> | ||
#include <chrono> |
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.
chrono should not be used, please use /common/dpc_common.hpp for timing
When you do this, please include the following in the readme
// dpc_common.hpp can be found in the dev-utilities include folder.
// e.g., $ONEAPI_ROOT/dev-utilities//include/dpc_common.hpp
#include "dpc_common.hpp"
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.
Fixed
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.
Trigger CI
I believed I have resolved all of the issues from this pull requet |
#include <malloc.h> | ||
#include <iostream> | ||
|
||
#include "dpc_common.hpp" |
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.
Please add the comments below for for the include of dpc_common.hp. it should look like this:
// dpc_common.hpp can be found in the dev-utilities include folder.
// e.g., $ONEAPI_ROOT/dev-utilities//include/dpc_common.hpp
#include "dpc_common.hpp"
## License | ||
This code sample is licensed under MIT license | ||
|
||
## How to Build |
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.
Please add a comment to Readme in regards to the location of dpc_common.hpp, should look similar to this:
Building the Program for CPU and GPU
Include Files
The include folder is located at %ONEAPI_ROOT%\dev-utilities\latest\include on your development system.
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.
fixed
|
||
## Running the Sample | ||
|
||
### Example of Output |
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.
When you view this file, the out put for the "example of output" is incorrectly formatted"
Joe... I believe I resolved all of your comments |
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.
Triggering CI.
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.
triggering ci
Description
I followed the instructions to copy from gitlab