-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
combine test for stream_info_table #17930
combine test for stream_info_table #17930
Conversation
void generate_stream_info(const int streams, | ||
const std::shared_ptr<ngraph::Function>& ngraphFunc, | ||
Config& config, | ||
int model_perfer_init) { |
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.
suggest model_perfer_init change to model_prefer_init. I think this parameter can be set to default value "-1", it will not initialize the variable.
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.
Thanks, updated.
std::vector<int> stream_ids; | ||
std::string log = "[ streams info ]"; | ||
std::vector<std::string> core_type_str = {" Any core: ", " PCore: ", " ECore: ", " Logical core: "}; | ||
int model_perfer = -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.
can remove this variable initialization.
ov::hint::PerformanceMode input_pm_hint; | ||
ov::threading::IStreamsExecutor::ThreadBindingType input_binding_type; | ||
std::vector<std::vector<int>> input_proc_type_table; | ||
bool output_ht_value; |
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 output check for core type and performance hint
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.
updated.
* combine test for stream_info_table * fix failed test cases * add check for performance hint and core type * add comments for the parameters of test case
Details:
Tickets: