From c11bfb83416adbcda8d5f034c28edb3a7e40db62 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 23 Nov 2022 10:51:43 +0800 Subject: [PATCH] Update model.h --- fastdeploy/vision/detection/ppdet/model.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastdeploy/vision/detection/ppdet/model.h b/fastdeploy/vision/detection/ppdet/model.h index b28ed678a..0bb6861bc 100644 --- a/fastdeploy/vision/detection/ppdet/model.h +++ b/fastdeploy/vision/detection/ppdet/model.h @@ -86,7 +86,7 @@ class FASTDEPLOY_DECL PPYOLO : public PPDetBase { const ModelFormat& model_format = ModelFormat::PADDLE) : PPDetBase(model_file, params_file, config_file, custom_option, model_format) { - valid_cpu_backends = {Backend::OPENVINO, Backend::PDINFER, Backend::LITE}; + valid_cpu_backends = {Backend::PDINFER, Backend::LITE}; valid_gpu_backends = {Backend::PDINFER}; initialized = Initialize(); }