FastDeploy  latest
Fast & Easy to Deploy!
fd_scalar.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 <cstdint>
17 #include <limits>
18 
19 #include "fastdeploy/core/fd_type.h"
20 #include "fastdeploy/core/float16.h"
21 
22 namespace fastdeploy {
23 
24 class Scalar {
25  public:
26  // Constructor support implicit
27  Scalar() : Scalar(0) {}
28  Scalar(double val) : dtype_(FDDataType::FP64) { // NOLINT
29  data_.f64 = val;
30  }
31 
32  Scalar(float val) : dtype_(FDDataType::FP32) { // NOLINT
33  data_.f32 = val;
34  }
35 
36  Scalar(float16 val) : dtype_(FDDataType::FP16) { // NOLINT
37  data_.f16 = val;
38  }
39 
40  Scalar(int64_t val) : dtype_(FDDataType::INT64) { // NOLINT
41  data_.i64 = val;
42  }
43 
44  Scalar(int32_t val) : dtype_(FDDataType::INT32) { // NOLINT
45  data_.i32 = val;
46  }
47 
48  Scalar(int16_t val) : dtype_(FDDataType::INT16) { // NOLINT
49  data_.i16 = val;
50  }
51 
52  Scalar(int8_t val) : dtype_(FDDataType::INT8) { // NOLINT
53  data_.i8 = val;
54  }
55 
56  Scalar(uint8_t val) : dtype_(FDDataType::UINT8) { // NOLINT
57  data_.ui8 = val;
58  }
59 
60  Scalar(bool val) : dtype_(FDDataType::BOOL) { // NOLINT
61  data_.b = val;
62  }
63 
64  // The compatible method for fliud operators,
65  // and it will be removed in the future.
66  explicit Scalar(const std::string& str_value) : dtype_(FDDataType::FP64) {
67  if (str_value == "inf") {
68  data_.f64 = std::numeric_limits<double>::infinity();
69  } else if (str_value == "-inf") {
70  data_.f64 = -std::numeric_limits<double>::infinity();
71  } else if (str_value == "nan") {
72  data_.f64 = std::numeric_limits<double>::quiet_NaN();
73  } else {
74  data_.f64 = std::stod(str_value);
75  }
76  }
77 
78  template <typename RT> inline RT to() const {
79  switch (dtype_) {
80  case FDDataType::FP32:
81  return static_cast<RT>(data_.f32);
82  case FDDataType::FP64:
83  return static_cast<RT>(data_.f64);
84  case FDDataType::FP16:
85  return static_cast<RT>(data_.f16);
86  case FDDataType::INT32:
87  return static_cast<RT>(data_.i32);
88  case FDDataType::INT64:
89  return static_cast<RT>(data_.i64);
90  case FDDataType::INT16:
91  return static_cast<RT>(data_.i16);
92  case FDDataType::INT8:
93  return static_cast<RT>(data_.i8);
94  case FDDataType::UINT8:
95  return static_cast<RT>(data_.ui8);
96  case FDDataType::BOOL:
97  return static_cast<RT>(data_.b);
98  default:
99  FDASSERT(false, "Invalid enum scalar data type `%s`.",
100  Str(dtype_).c_str());
101  }
102  }
103 
104  FDDataType dtype() const { return dtype_; }
105 
106  private:
107  FDDataType dtype_;
108  union data {
109  bool b;
110  int8_t i8;
111  int16_t i16;
112  int32_t i32;
113  int64_t i64;
114  uint8_t ui8;
115  float16 f16;
116  float f32;
117  double f64;
118  } data_;
119 };
120 
121 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16