diff --git a/src/bindings/python/src/pyopenvino/core/properties/properties.cpp b/src/bindings/python/src/pyopenvino/core/properties/properties.cpp index d434cd3f573d9c..90fb08d69c4ff4 100644 --- a/src/bindings/python/src/pyopenvino/core/properties/properties.cpp +++ b/src/bindings/python/src/pyopenvino/core/properties/properties.cpp @@ -335,4 +335,5 @@ void regmodule_properties(py::module m) { wrap_property_RW(m_intel_npu, ov::intel_npu::max_tiles, "max_tiles"); wrap_property_RW(m_intel_npu, ov::intel_npu::bypass_umd_caching, "bypass_umd_caching"); wrap_property_RW(m_intel_npu, ov::intel_npu::defer_weights_load, "defer_weights_load"); + wrap_property_RW(m_intel_npu, ov::intel_npu::compiler_dynamic_quantization, "compiler_dynamic_quantization"); } diff --git a/src/bindings/python/tests/test_runtime/test_properties.py b/src/bindings/python/tests/test_runtime/test_properties.py index 4cdd598e0eee4b..06ea57a916e320 100644 --- a/src/bindings/python/tests/test_runtime/test_properties.py +++ b/src/bindings/python/tests/test_runtime/test_properties.py @@ -451,6 +451,11 @@ def test_properties_ro(ov_property_ro, expected_value): "NPU_DEFER_WEIGHTS_LOAD", ((True, True),), ), + ( + intel_npu.compiler_dynamic_quantization, + "NPU_COMPILER_DYNAMIC_QUANTIZATION", + ((True, True),), + ), ], ) def test_properties_rw(ov_property_rw, expected_value, test_values):