[GPU] Remove batched key from config (#9451)
This commit is contained in:
parent
8b6a065948
commit
9f69daf0f3
@ -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
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user