FastDeploy  latest
Fast & Easy to Deploy!
lite_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 "paddle_api.h" // NOLINT
23 
24 #include "fastdeploy/runtime/backends/backend.h"
26 #include "fastdeploy/runtime/backends/lite/option.h"
27 
28 namespace fastdeploy {
29 
30 class LiteBackend : public BaseBackend {
31  public:
32  LiteBackend() {}
33  virtual ~LiteBackend() = default;
34 
35  bool Init(const RuntimeOption& option) override;
36 
37  bool Infer(std::vector<FDTensor>& inputs,
38  std::vector<FDTensor>* outputs,
39  bool copy_to_fd = true) override; // NOLINT
40 
41  int NumInputs() const override { return inputs_desc_.size(); }
42 
43  int NumOutputs() const override { return outputs_desc_.size(); }
44 
45  TensorInfo GetInputInfo(int index) override;
46  TensorInfo GetOutputInfo(int index) override;
47  std::vector<TensorInfo> GetInputInfos() override;
48  std::vector<TensorInfo> GetOutputInfos() override;
49 
50  private:
51  void BuildOption(const LiteBackendOption& option);
52 
53  void ConfigureCpu(const LiteBackendOption& option);
54  void ConfigureTimvx(const LiteBackendOption& option);
55  void ConfigureAscend(const LiteBackendOption& option);
56  void ConfigureKunlunXin(const LiteBackendOption& option);
57  void ConfigureNNAdapter(const LiteBackendOption& option);
58 
59  paddle::lite_api::CxxConfig config_;
60  std::shared_ptr<paddle::lite_api::PaddlePredictor> predictor_;
61  std::vector<TensorInfo> inputs_desc_;
62  std::vector<TensorInfo> outputs_desc_;
63  std::map<std::string, int> inputs_order_;
64  LiteBackendOption option_;
65 };
66 
67 // Convert data type from paddle lite to fastdeploy
68 FDDataType LiteDataTypeToFD(const paddle::lite_api::PrecisionType& dtype);
69 
70 // Helper function to read file
71 bool ReadFile(const std::string& filename,
72  std::vector<char>* contents,
73  bool binary = true);
74 
75 } // namespace fastdeploy
A brief file description. More details.
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16