FastDeploy  latest
Fast & Easy to Deploy!
allocate.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 <memory>
17 #include <new>
18 #include <numeric>
19 #include <string>
20 #include <vector>
21 
22 #include "fastdeploy/utils/utils.h"
23 
24 namespace fastdeploy {
25 
26 class FASTDEPLOY_DECL FDHostAllocator {
27  public:
28  bool operator()(void** ptr, size_t size) const;
29 };
30 
31 class FASTDEPLOY_DECL FDHostFree {
32  public:
33  void operator()(void* ptr) const;
34 };
35 
36 #ifdef WITH_GPU
37 
38 class FASTDEPLOY_DECL FDDeviceAllocator {
39  public:
40  bool operator()(void** ptr, size_t size) const;
41 };
42 
43 class FASTDEPLOY_DECL FDDeviceFree {
44  public:
45  void operator()(void* ptr) const;
46 };
47 
48 class FASTDEPLOY_DECL FDDeviceHostAllocator {
49  public:
50  bool operator()(void** ptr, size_t size) const;
51 };
52 
53 class FASTDEPLOY_DECL FDDeviceHostFree {
54  public:
55  void operator()(void* ptr) const;
56 };
57 
58 #endif
59 
60 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16