FastDeploy  latest
Fast & Easy to Deploy!
ov_backend.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <iostream>
18 #include <memory>
19 #include <string>
20 #include <vector>
21 
22 #include "fastdeploy/runtime/backends/backend.h"
23 #include "fastdeploy/utils/unique_ptr.h"
24 #include "fastdeploy/runtime/backends/openvino/option.h"
25 #include "openvino/openvino.hpp"
26 
27 namespace fastdeploy {
28 
29 class OpenVINOBackend : public BaseBackend {
30  public:
31  static ov::Core core_;
32  OpenVINOBackend() {}
33  virtual ~OpenVINOBackend() = default;
34 
35  bool Init(const RuntimeOption& option);
36 
37  bool Infer(std::vector<FDTensor>& inputs, std::vector<FDTensor>* outputs,
38  bool copy_to_fd = true) override;
39 
40  int NumInputs() const override;
41 
42  int NumOutputs() const override;
43 
44  TensorInfo GetInputInfo(int index) override;
45  TensorInfo GetOutputInfo(int index) override;
46  std::vector<TensorInfo> GetInputInfos() override;
47  std::vector<TensorInfo> GetOutputInfos() override;
48 
49  std::unique_ptr<BaseBackend> Clone(RuntimeOption &runtime_option,
50  void* stream = nullptr,
51  int device_id = -1) override;
52 
53  private:
54  bool
55  InitFromPaddle(const std::string& model_file, const std::string& params_file,
56  const OpenVINOBackendOption& option = OpenVINOBackendOption());
57 
58  bool
59  InitFromOnnx(const std::string& model_file,
60  const OpenVINOBackendOption& option = OpenVINOBackendOption());
61 
62 
63  void InitTensorInfo(const std::vector<ov::Output<ov::Node>>& ov_outputs,
64  std::map<std::string, TensorInfo>* tensor_infos);
65 
66  ov::CompiledModel compiled_model_;
67  ov::InferRequest request_;
68  OpenVINOBackendOption option_;
69  std::vector<TensorInfo> input_infos_;
70  std::vector<TensorInfo> output_infos_;
71 };
72 
73 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16