int_operator.h 4.13 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * 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
9
 *
10
 *   http://www.apache.org/licenses/LICENSE-2.0
11
 *
12 13 14 15 16 17 18 19
 * 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.
 */

20
/*!
21 22
 * \file int_operator.h
 * \brief Additional useful operators for integer.
23
 */
24 25
#ifndef TVM_ARITH_INT_OPERATOR_H_
#define TVM_ARITH_INT_OPERATOR_H_
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

#include <limits>

namespace tvm {
namespace arith {

/*!
 * \brief Check if an integer op with operand x, y will overflow.
 * \param x The left operand.
 * \param y The left operand.
 * \param min_value The minimum value of the domain.
 * \param max_value The maximum value of the domain.
 * \return Whether overflow can happen.
 * \tparam Op The integer operator.
 */
template<typename Op>
inline bool WillOverflow(int64_t x,
                         int64_t y,
                         int64_t min_value,
                         int64_t max_value) {
  return false;
}

template<>
50
inline bool WillOverflow<tir::AddNode>(int64_t x,
51 52 53
                                      int64_t y,
                                      int64_t min_value,
                                      int64_t max_value) {
54 55 56 57 58 59
  if ((y > 0) && (x > max_value - y)) return true;
  if ((y < 0) && (x < min_value - y)) return true;
  return false;
}

template<>
60
inline bool WillOverflow<tir::SubNode>(int64_t x,
61 62 63
                                      int64_t y,
                                      int64_t min_value,
                                      int64_t max_value) {
64 65 66 67 68 69
  if ((y > 0) && (x < min_value + y)) return true;
  if ((y < 0) && (x > max_value + y)) return true;
  return false;
}

template<>
70
inline bool WillOverflow<tir::MulNode>(int64_t x,
71 72 73
                                      int64_t y,
                                      int64_t min_value,
                                      int64_t max_value) {
74 75 76 77 78 79 80 81 82 83 84 85 86
  if (y == 0) return false;
  if (y > 0) {
    if (x < min_value / y)  return true;
    if (x > max_value / y)  return true;
  } else {
    if (y == -1 && x == std::numeric_limits<int64_t>::min()) return true;
    if (x > min_value / y)  return true;
    if (x < max_value / y)  return true;
  }
  return false;
}

template<>
87
inline bool WillOverflow<tir::ModNode>(int64_t x,
88 89 90
                                      int64_t y,
                                      int64_t min_value,
                                      int64_t max_value) {
91 92 93
  return y == 0;
}

94
/*!
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
 * \brief Peform trunc division of two integers.
 * \param x The left operand.
 * \param y The right operand.
 * \return the result.
 */
inline int64_t truncdiv(int64_t x, int64_t y) {
  return x / y;
}

/*!
 * \brief Compute the truncdiv remainder of two integers.
 * \param x The left operand.
 * \param y The right operand.
 * \return the result.
 */
inline int64_t truncmod(int64_t x, int64_t y) {
  return x % y;
}

/*!
115 116 117 118 119 120
 * \brief Peform floor division of two integers.
 * \param x The left operand.
 * \param y The right operand.
 * \return the result.
 */
inline int64_t floordiv(int64_t x, int64_t y) {
121 122 123 124 125 126
  int64_t rdiv = x / y;
  int64_t rmod = x % y;
  bool is_floor_div =
      (y >= 0 && rmod >= 0) ||
      (y < 0 && rmod <= 0);
  return is_floor_div ? rdiv : (rdiv - 1);
127 128 129 130 131 132 133 134 135 136
}


/*!
 * \brief Compute the floordiv remainder of two integers.
 * \param x The left operand.
 * \param y The right operand.
 * \return the result.
 */
inline int64_t floormod(int64_t x, int64_t y) {
137 138 139 140 141
  int64_t rmod = x % y;
  bool is_floor_div =
      (y >= 0 && rmod >= 0) ||
      (y < 0 && rmod <= 0);
  return is_floor_div ? rmod : rmod + y;
142 143
}

144 145
}  // namespace arith
}  // namespace tvm
146
#endif  // TVM_ARITH_INT_OPERATOR_H_