| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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. |
| */ |
| |
| /*! |
| * \file src/support/scalars.h |
| * \brief Helpers for converting between scalars in native, text, TIR immediate and Tensor forms. |
| */ |
| |
| #ifndef TVM_SUPPORT_SCALARS_H_ |
| #define TVM_SUPPORT_SCALARS_H_ |
| |
| #include <string> |
| |
| #include "tvm/ir/expr.h" |
| #include "tvm/runtime/tensor.h" |
| |
| namespace tvm { |
| namespace support { |
| |
| /*! \brief Returns Tensor 'scalar' for given TIR immediate. */ |
| runtime::Tensor IntImmToTensor(const IntImm& int_imm); |
| runtime::Tensor FloatImmToTensor(const FloatImm& float_imm); |
| runtime::Tensor BoolToTensor(bool value); |
| |
| /*! \brief Returns literal text for Tensor 'scalar'. */ |
| std::string TensorScalarToString(const runtime::Tensor& data); |
| |
| /*! \brief Returns literal text for given TIR immediate. */ |
| std::string IntImmToString(const IntImm& int_imm); |
| std::string FloatImmToString(const FloatImm& float_imm); |
| |
| /*! |
| * \brief Returns TIR immediate for given value and width. Result will be null if value is |
| * out of range in width. Note however for floating point we don't check if the value is |
| * representable without loss of precision. |
| */ |
| IntImm ValueToIntImm(int64_t value, int width); |
| FloatImm ValueToFloatImm(double value, int width); |
| |
| // 2^15 * (1 + 1023/1024) |
| // See https://en.wikipedia.org/wiki/Half-precision_floating-point_format |
| constexpr double kMaxFloat16 = 65504.0; |
| |
| // 2^127 * (1 + 127/128) |
| // See https://en.wikipedia.org/wiki/Bfloat16_floating-point_format |
| constexpr double kMaxBFloat16 = 3.895313892515354759047080037148786688e38; |
| |
| // 2^15 * (1 + 3/4) |
| // See https://arxiv.org/pdf/2209.05433.pdf |
| constexpr double kMaxE5M2 = 57344; |
| |
| // 2^15 * (1 + 3/4) |
| constexpr double kMaxE5M2FNUZ = 57344; |
| |
| // 2^8 * (1 + 6/8) |
| // See https://arxiv.org/pdf/2209.05433.pdf |
| constexpr double kMaxE4M3FN = 448; |
| |
| // 2^8 * (1 + 6/8) |
| constexpr double kMaxE4M3 = 448; |
| |
| // 2^8 * (1 + 6/8) |
| constexpr double kMaxE4M3FNUZ = 448; |
| |
| // 2^4 * 1.875 |
| constexpr double kMaxE4M3B11FNUZ = 30; |
| |
| // 2^4 * 1.9375 |
| constexpr double kMaxE3M4 = 31; |
| |
| // 2^(255 - 127) |
| constexpr double kMaxE8M0FNU = 3.4028236692093846e38; |
| |
| // 2^2 * (1 + 7/8) |
| constexpr double kMaxE2M3FN = 7.5; |
| |
| // 2^4 * (1 + 3/4) |
| constexpr double kMaxE3M2FN = 28.0; |
| |
| // 2^2 * (1 + 1/2) |
| constexpr double kMaxE2M1FN = 6.0; |
| |
| } // namespace support |
| } // namespace tvm |
| |
| #endif // TVM_SUPPORT_SCALARS_H_ |