FastDeploy  latest
Fast & Easy to Deploy!
fd_type.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 <ostream>
17 #include <sstream>
18 #include <string>
19 
20 #include "fastdeploy/core/config.h"
21 #include "fastdeploy/utils/utils.h"
22 
23 namespace fastdeploy {
24 
25 enum FASTDEPLOY_DECL FDDataType {
26  BOOL,
27  INT16,
28  INT32,
29  INT64,
30  FP16,
31  FP32,
32  FP64,
33  UNKNOWN1,
34  UNKNOWN2,
35  UNKNOWN3,
36  UNKNOWN4,
37  UNKNOWN5,
38  UNKNOWN6,
39  UNKNOWN7,
40  UNKNOWN8,
41  UNKNOWN9,
42  UNKNOWN10,
43  UNKNOWN11,
44  UNKNOWN12,
45  UNKNOWN13,
46  UINT8,
47  INT8
48 };
49 
50 
51 FASTDEPLOY_DECL std::ostream& operator<<(std::ostream& out,
52  const FDDataType& fdt);
53 
54 FASTDEPLOY_DECL std::string Str(const FDDataType& fdt);
55 
56 FASTDEPLOY_DECL int32_t FDDataTypeSize(const FDDataType& data_dtype);
57 
58 template <typename PlainType>
59 struct FASTDEPLOY_DECL TypeToDataType {
60  static const FDDataType dtype;
61 };
62 
63 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16