/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #include #include #include namespace paddle { enum class DataType { BOOL, INT8, UINT8, INT16, INT32, INT64, FLOAT32, FLOAT64, // TODO(JiabinYang) support more data types if needed. }; inline std::string ToString(DataType dtype) { switch (dtype) { case DataType::BOOL: return "bool"; case DataType::INT8: return "int8_t"; case DataType::UINT8: return "uint8_t"; case DataType::INT16: return "int16_t"; case DataType::INT32: return "int32_t"; case DataType::INT64: return "int64_t"; case DataType::FLOAT32: return "float"; case DataType::FLOAT64: return "double"; default: throw std::runtime_error("Unsupported paddle enum data type."); } } #define PD_FOR_EACH_DATA_TYPE(_) \ _(bool, DataType::BOOL) \ _(int8_t, DataType::INT8) \ _(uint8_t, DataType::UINT8) \ _(int16_t, DataType::INT16) \ _(int, DataType::INT32) \ _(int64_t, DataType::INT64) \ _(float, DataType::FLOAT32) \ _(double, DataType::FLOAT64) template struct DataTypeToCPPType; #define PD_SPECIALIZE_DataTypeToCPPType(cpp_type, data_type) \ template <> \ struct DataTypeToCPPType { \ using type = cpp_type; \ }; PD_FOR_EACH_DATA_TYPE(PD_SPECIALIZE_DataTypeToCPPType) #undef PD_SPECIALIZE_DataTypeToCPPType } // namespace paddle