17 #include <pybind11/numpy.h> 18 #include <pybind11/pybind11.h> 19 #include <pybind11/stl.h> 20 #include <pybind11/eval.h> 22 #include <type_traits> 24 #include "fastdeploy/runtime/runtime.h" 27 #include "fastdeploy/vision.h" 28 #include "fastdeploy/pipeline.h" 32 #include "fastdeploy/text.h" 35 #ifdef ENABLE_ENCRYPTION 36 #include "fastdeploy/encryption.h" 39 #include "fastdeploy/core/float16.h" 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&);
49 pybind11::dtype FDDataTypeToNumpyDataType(
const FDDataType& fd_dtype);
51 FDDataType NumpyDataTypeToFDDataType(
const pybind11::dtype& np_dtype);
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);
61 cv::Mat PyArrayToCvMat(pybind11::array& pyarray);
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;
77 FDASSERT(
false,
"CTypeToFDDataType only support " 78 "int8/int32/int64/float32/float64 now.");
79 return FDDataType::FP32;
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) {
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];
98 std::vector<FDTensor> outputs(
self.NumOutputs());
99 self.Infer(inputs, &outputs);
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));
120 constexpr
int NPY_FLOAT16_ = 23;
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);
131 static std::string format() {
137 static constexpr
auto name = _(
"float16");
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16