Skip to content
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

[chore] fix some simple typos #26097

Merged
merged 9 commits into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/plugins/auto/src/compiled_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ov::AnyMap ov::auto_plugin::CompiledModel::get_device_supported_properties(AutoC
OPENVINO_ASSERT(context.m_compiled_model);
auto device_supported_properties = context.m_compiled_model->get_property(ov::supported_properties.name());
for (auto&& property_name : device_supported_properties.as<std::vector<ov::PropertyName>>()) {
// for lto issue, explictly do the conversion here
// for lto issue, explicitly do the conversion here
c8ef marked this conversation as resolved.
Show resolved Hide resolved
std::string query_name = property_name;
device_properties[property_name] = context.m_compiled_model->get_property(query_name);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ TEST_P(PluginCompileModelTest, PluginCompileModelBatchedModelWithRemoteContextTe
}

const std::vector<plugin_compile_model_param> plugin_compile_model_param_test = {
// Case 1: explict apply batch size by config of AUTO_BATCH_DEVICE_CONFIG
// Case 1: explicit apply batch size by config of AUTO_BATCH_DEVICE_CONFIG
c8ef marked this conversation as resolved.
Show resolved Hide resolved
plugin_compile_model_param{{{ov::hint::performance_mode.name(), ov::hint::PerformanceMode::THROUGHPUT},
{ov::optimal_batch_size.name(), static_cast<unsigned int>(16)},
{ov::hint::num_requests(12)},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1620,7 +1620,7 @@ INSTANTIATE_TEST_SUITE_P(smoke,
concat_gpu::PrintToStringParamName);

template <typename Type>
struct concat_gpu_4d_explict : public concat_gpu {
struct concat_gpu_4d_explicit : public concat_gpu {
public:
cldnn::memory::ptr run_concat_network(std::vector<std::vector<std::vector<std::vector<std::vector<Type>>>>> input, format::type fmt, ExecutionConfig config) {
auto data_type = ov::element::from<Type>();
Expand Down Expand Up @@ -1757,7 +1757,7 @@ struct concat_gpu_4d_explict : public concat_gpu {
};


using concat_no_implicit_gpu_onednn_4d_f16 = concat_gpu_4d_explict<ov::float16>;
using concat_no_implicit_gpu_onednn_4d_f16 = concat_gpu_4d_explicit<ov::float16>;

TEST_P(concat_no_implicit_gpu_onednn_4d_f16, input_order_opt_b_fs_yx_fsv16) {
ASSERT_NO_FATAL_FAILURE(test(format::b_fs_yx_fsv16));
Expand Down
Loading