FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
main.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 <pybind11/numpy.h>
18 #include <pybind11/pybind11.h>
19 #include <pybind11/stl.h>
20 #include <pybind11/eval.h>
21 
22 #include <type_traits>
23 
24 #include "fastdeploy/runtime/runtime.h"
25 
26 #ifdef ENABLE_VISION
27 #include "fastdeploy/vision.h"
28 #include "fastdeploy/pipeline.h"
29 #endif
30 
31 #ifdef ENABLE_TEXT
32 #include "fastdeploy/text.h"
33 #endif
34 
35 #ifdef ENABLE_ENCRYPTION
36 #include "fastdeploy/encryption.h"
37 #endif
38 
39 #include "fastdeploy/core/float16.h"
40 
41 namespace fastdeploy {
42 
43 void BindBackend(pybind11::module&);
44 void BindVision(pybind11::module&);
45 void BindText(pybind11::module& m);
46 void BindPipeline(pybind11::module& m);
47 void BindRKNPU2Config(pybind11::module&);
48 
49 pybind11::dtype FDDataTypeToNumpyDataType(const FDDataType& fd_dtype);
50 
51 FDDataType NumpyDataTypeToFDDataType(const pybind11::dtype& np_dtype);
52 
53 void PyArrayToTensor(pybind11::array& pyarray, FDTensor* tensor,
54  bool share_buffer = false);
55 void PyArrayToTensorList(std::vector<pybind11::array>& pyarray,
56  std::vector<FDTensor>* tensor,
57  bool share_buffer = false);
58 pybind11::array TensorToPyArray(const FDTensor& tensor);
59 
60 #ifdef ENABLE_VISION
61 cv::Mat PyArrayToCvMat(pybind11::array& pyarray);
62 #endif
63 
64 template <typename T>
65 FDDataType CTypeToFDDataType() {
66  if (std::is_same<T, int32_t>::value) {
67  return FDDataType::INT32;
68  } else if (std::is_same<T, int64_t>::value) {
69  return FDDataType::INT64;
70  } else if (std::is_same<T, float>::value) {
71  return FDDataType::FP32;
72  } else if (std::is_same<T, double>::value) {
73  return FDDataType::FP64;
74  } else if (std::is_same<T, int8_t>::value) {
75  return FDDataType::INT8;
76  }
77  FDASSERT(false, "CTypeToFDDataType only support "
78  "int8/int32/int64/float32/float64 now.");
79  return FDDataType::FP32;
80 }
81 
82 template <typename T>
83 std::vector<pybind11::array> PyBackendInfer(
84  T& self, const std::vector<std::string>& names,
85  std::vector<pybind11::array>& data) {
86  std::vector<FDTensor> inputs(data.size());
87  for (size_t i = 0; i < data.size(); ++i) {
88  // TODO(jiangjiajun) here is considered to use user memory directly
89  auto dtype = NumpyDataTypeToFDDataType(data[i].dtype());
90  std::vector<int64_t> data_shape;
91  data_shape.insert(data_shape.begin(), data[i].shape(),
92  data[i].shape() + data[i].ndim());
93  inputs[i].Resize(data_shape, dtype);
94  memcpy(inputs[i].MutableData(), data[i].mutable_data(), data[i].nbytes());
95  inputs[i].name = names[i];
96  }
97 
98  std::vector<FDTensor> outputs(self.NumOutputs());
99  self.Infer(inputs, &outputs);
100 
101  std::vector<pybind11::array> results;
102  results.reserve(outputs.size());
103  for (size_t i = 0; i < outputs.size(); ++i) {
104  auto numpy_dtype = FDDataTypeToNumpyDataType(outputs[i].dtype);
105  results.emplace_back(pybind11::array(numpy_dtype, outputs[i].shape));
106  memcpy(results[i].mutable_data(), outputs[i].Data(),
107  outputs[i].Numel() * FDDataTypeSize(outputs[i].dtype));
108  }
109  return results;
110 }
111 
112 } // namespace fastdeploy
113 
114 namespace pybind11 {
115 namespace detail {
116 
117 // Note: use same enum number of float16 in numpy.
118 // import numpy as np
119 // print np.dtype(np.float16).num # 23
120 constexpr int NPY_FLOAT16_ = 23;
121 
122 // Note: Since float16 is not a builtin type in C++, we register
123 // fastdeploy::float16 as numpy.float16.
124 // Ref: https://github.com/pybind/pybind11/issues/1776
125 template <>
126 struct npy_format_descriptor<fastdeploy::float16> {
127  static pybind11::dtype dtype() {
128  handle ptr = npy_api::get().PyArray_DescrFromType_(NPY_FLOAT16_);
129  return reinterpret_borrow<pybind11::dtype>(ptr);
130  }
131  static std::string format() {
132  // Note: "e" represents float16.
133  // Details at:
134  // https://docs.python.org/3/library/struct.html#format-characters.
135  return "e";
136  }
137  static constexpr auto name = _("float16");
138 };
139 
140 } // namespace detail
141 } // namespace pybind11
Definition: main.h:114
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16