FastDeploy  latest
Fast & Easy to Deploy!
sophgo_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 #pragma once
15 
16 #include "fastdeploy/runtime/backends/backend.h"
17 #include "fastdeploy/core/fd_tensor.h"
18 #include "bmruntime_interface.h" // NOLINT
19 #include "bmlib_runtime.h" // NOLINT
20 #include "fastdeploy/runtime/backends/sophgo/option.h"
21 #include <cstring>
22 #include <iostream>
23 #include <memory>
24 #include <string>
25 #include <vector>
26 
27 namespace fastdeploy {
28 
29 class SophgoBackend : public BaseBackend {
30  public:
31  SophgoBackend() = default;
32  virtual ~SophgoBackend();
33  bool Init(const RuntimeOption& option);
34 
35  int NumInputs() const override {
36  return static_cast<int>(inputs_desc_.size());
37  }
38 
39  int NumOutputs() const override {
40  return static_cast<int>(outputs_desc_.size());
41  }
42 
43  TensorInfo GetInputInfo(int index) override;
44  TensorInfo GetOutputInfo(int index) override;
45  std::vector<TensorInfo> GetInputInfos() override;
46  std::vector<TensorInfo> GetOutputInfos() override;
47  bool Infer(std::vector<FDTensor>& inputs,
48  std::vector<FDTensor>* outputs,
49  bool copy_to_fd = true) override;
50 
51  private:
52  bool LoadModel(void* model);
53  bool GetSDKAndDeviceVersion();
54  bool GetModelInputOutputInfos();
55 
56  std::vector<TensorInfo> inputs_desc_;
57  std::vector<TensorInfo> outputs_desc_;
58  std::string net_name_;
59 
60  bm_handle_t handle_;
61  void * p_bmrt_ = nullptr;
62 
63  bool infer_init = false;
64 
65  const bm_net_info_t* net_info_ = nullptr;
66 
67  // SophgoTPU2BackendOption option_;
68 
69  static FDDataType SophgoTensorTypeToFDDataType(bm_data_type_t type);
70  static bm_data_type_t FDDataTypeToSophgoTensorType(FDDataType type);
71 };
72 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16