-
Notifications
You must be signed in to change notification settings - Fork 66
Create Memory Prefetch data verification tests for system allocator #257
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
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
Signed-off-by: John Falkowski <[email protected]>
@@ -0,0 +1,15 @@ | |||
# Copyright (C) 2019 Intel Corporation |
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 put the correct year 2025
@@ -0,0 +1,429 @@ | |||
/* | |||
* | |||
* Copyright (C) 2019-2025 Intel Corporation |
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.
It can't be from 2019 as this file is created and being introduced in 2025.
::testing::InitGoogleMock(&argc, argv); | ||
std::vector<std::string> command_line(argv + 1, argv + argc); | ||
level_zero_tests::init_logging(command_line); | ||
static char enable_metrics[] = "PrintXeLogs=1"; |
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 think this PR can't be merged in the CTS repository. The test code has Intel KMD centric expectations. The CTS is supposed to be vendor neutral. Perhaps the L0 benchmarks repository might be a better venue if it has a notion of vendor centric benchmarks.
const char *src_memory_type = is_src_shared_system ? "SVM" : "USM"; | ||
const char *dst_memory_type = is_dst_shared_system ? "SVM" : "USM"; | ||
|
||
// NOTE: cannot use LOG_DEBUG or LOG_INFO because redirecting stderr to |
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.
Put this log way before redirecting to file.
No description provided.