FastDeploy  latest
Fast & Easy to Deploy!
adaptive_pool2d.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 "fastdeploy/core/fd_tensor.h"
18 #include "fastdeploy/utils/utils.h"
19 #include <algorithm>
20 #include <cmath>
21 #include <map>
22 #include <string>
23 
24 #ifndef NON_64_PLATFORM
25 #include "onnxruntime_cxx_api.h" // NOLINT
26 
27 #ifdef WITH_GPU
28 #include "fastdeploy/runtime/backends/common/cuda/adaptive_pool2d_kernel.h"
29 #endif
30 
31 namespace fastdeploy {
32 struct AdaptivePool2dKernel {
33  protected:
34  std::string pooling_type_ = "avg";
35  std::vector<int64_t> output_size_ = {};
36  Ort::CustomOpApi ort_;
37  void* compute_stream_;
38  const char* provider_;
39 
40  public:
41  AdaptivePool2dKernel(Ort::CustomOpApi ort, const OrtKernelInfo* info,
42  const char* provider)
43  : ort_(ort) {
44  GetAttribute(info);
45  provider_ = provider;
46  }
47 
48  void GetAttribute(const OrtKernelInfo* info);
49 
50  void Compute(OrtKernelContext* context);
51 
52  void CpuAdaptivePool(const std::vector<int64_t>& input_size,
53  const std::vector<int64_t>& output_size,
54  const float* input_data, float* output_data);
55 };
56 
57 struct AdaptivePool2dOp
58  : Ort::CustomOpBase<AdaptivePool2dOp, AdaptivePool2dKernel> {
59  explicit AdaptivePool2dOp(const char* provider) : provider_(provider) {}
60  void* CreateKernel(Ort::CustomOpApi api, const OrtKernelInfo* info) const {
61  return new AdaptivePool2dKernel(api, info, provider_);
62  }
63 
64  const char* GetName() const { return "AdaptivePool2d"; }
65 
66  size_t GetInputTypeCount() const { return 1; }
67 
68  ONNXTensorElementDataType GetInputType(size_t index) const {
69  return ONNX_TENSOR_ELEMENT_DATA_TYPE_FLOAT;
70  }
71 
72  size_t GetOutputTypeCount() const { return 1; }
73 
74  ONNXTensorElementDataType GetOutputType(size_t index) const {
75  return ONNX_TENSOR_ELEMENT_DATA_TYPE_FLOAT;
76  }
77 
78  const char* GetExecutionProviderType() const { return provider_; }
79 
80  private:
81  const char* provider_;
82 };
83 
84 } // namespace fastdeploy
85 
86 #endif
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16