Skip to content

Commit

Permalink
Add prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnov-alexey committed Jan 13, 2025
1 parent cc44a0d commit fa76cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/src/llm_pipeline_static.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ std::optional<NPUDesc> extract_npu_descriptor(ov::Core& core) {
bool compiler_dq = false;
const auto supported_properties = core.get_property("NPU", ov::supported_properties);
if (std::find(supported_properties.begin(), supported_properties.end(),
"COMPILER_DYNAMIC_QUANTIZATION") != supported_properties.end()) {
"NPU_COMPILER_DYNAMIC_QUANTIZATION") != supported_properties.end()) {
compiler_dq = true;
}
return std::make_optional(NPUDesc{arch, max_tiles, compiler_dq});
Expand Down

0 comments on commit fa76cf7

Please sign in to comment.