diff --git a/src/inference/include/ie/gpu/gpu_config.hpp b/src/inference/include/ie/gpu/gpu_config.hpp index 0534f211941..190cd93c6e0 100644 --- a/src/inference/include/ie/gpu/gpu_config.hpp +++ b/src/inference/include/ie/gpu/gpu_config.hpp @@ -156,11 +156,10 @@ DECLARE_GPU_CONFIG_KEY(MAX_NUM_THREADS); DECLARE_GPU_CONFIG_KEY(ENABLE_LOOP_UNROLLING); /** - * @brief This keys instructs the GPU plugin to use surface/buffer and batched memory type. + * @brief These keys instruct the GPU plugin to use surface/buffer memory type. */ DECLARE_GPU_CONFIG_KEY(SURFACE); DECLARE_GPU_CONFIG_KEY(BUFFER); -DECLARE_GPU_CONFIG_KEY(BATCHED); } // namespace GPUConfigParams diff --git a/src/tests/functional/plugin/gpu/remote_blob_tests/gpu_remote_tensor_tests.cpp b/src/tests/functional/plugin/gpu/remote_blob_tests/gpu_remote_tensor_tests.cpp index bcb7ab46dda..cf3fc5772e8 100644 --- a/src/tests/functional/plugin/gpu/remote_blob_tests/gpu_remote_tensor_tests.cpp +++ b/src/tests/functional/plugin/gpu/remote_blob_tests/gpu_remote_tensor_tests.cpp @@ -782,7 +782,7 @@ TEST_P(OVRemoteTensorBatched_Test, NV12toBGR_image) { auto p = PrePostProcessor(fn_ptr_remote); p.input().tensor().set_element_type(ov::element::u8) .set_color_format(ov::preprocess::ColorFormat::NV12_TWO_PLANES, {"y", "uv"}) - .set_memory_type(std::string(GPU_CONFIG_KEY(SURFACE)) + GPU_CONFIG_KEY(BATCHED)); + .set_memory_type(GPU_CONFIG_KEY(SURFACE)); p.input().preprocess().convert_color(ov::preprocess::ColorFormat::BGR); p.input().model().set_layout("NCHW"); auto function = p.build();