mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Partially fixes https://github.com/pytorch/executorch/pull/11537. We want to extend `mul_overflows` to support `size_t` in ExecuTorch. The current workflow in ET checks that the `c10` mirrors exactly as in PT, so the tests are failing. See comment: https://github.com/pytorch/executorch/pull/11537#issuecomment-2963821312 Pull Request resolved: https://github.com/pytorch/pytorch/pull/155736 Approved by: https://github.com/swolchok
100 lines
2.5 KiB
C++
100 lines
2.5 KiB
C++
#pragma once
|
|
#include <c10/macros/Macros.h>
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// GCC has __builtin_mul_overflow from before it supported __has_builtin
|
|
#ifdef _MSC_VER
|
|
#define C10_HAS_BUILTIN_OVERFLOW() (0)
|
|
#include <c10/util/llvmMathExtras.h>
|
|
#include <intrin.h>
|
|
#else
|
|
#define C10_HAS_BUILTIN_OVERFLOW() (1)
|
|
#endif
|
|
|
|
namespace c10 {
|
|
|
|
C10_ALWAYS_INLINE bool add_overflows(uint64_t a, uint64_t b, uint64_t* out) {
|
|
#if C10_HAS_BUILTIN_OVERFLOW()
|
|
return __builtin_add_overflow(a, b, out);
|
|
#else
|
|
unsigned long long tmp;
|
|
#if defined(_M_IX86) || defined(_M_X64)
|
|
auto carry = _addcarry_u64(0, a, b, &tmp);
|
|
#else
|
|
tmp = a + b;
|
|
unsigned long long vector = (a & b) ^ ((a ^ b) & ~tmp);
|
|
auto carry = vector >> 63;
|
|
#endif
|
|
*out = tmp;
|
|
return carry;
|
|
#endif
|
|
}
|
|
|
|
template <typename T>
|
|
C10_ALWAYS_INLINE bool mul_overflows(T a, T b, T* out) {
|
|
#if C10_HAS_BUILTIN_OVERFLOW()
|
|
return __builtin_mul_overflow(a, b, out);
|
|
#else
|
|
static_assert(
|
|
std::is_integral_v<T>, "mul_overflows only supports integral types");
|
|
|
|
if constexpr (std::is_signed_v<T>) {
|
|
// For signed types, use the division-based check
|
|
volatile T tmp = a * b;
|
|
*out = tmp;
|
|
if (a == 0 || b == 0) {
|
|
return false;
|
|
}
|
|
return !(a == tmp / b);
|
|
} else {
|
|
// For unsigned types, use leading zeros approach
|
|
// This test isn't exact, but avoids doing integer division
|
|
*out = a * b;
|
|
constexpr int bits = sizeof(T) * 8;
|
|
return (
|
|
(c10::llvm::countLeadingZeros(a) + c10::llvm::countLeadingZeros(b)) <
|
|
bits);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
C10_ALWAYS_INLINE bool mul_overflows(uint64_t a, uint64_t b, uint64_t* out) {
|
|
return mul_overflows<uint64_t>(a, b, out);
|
|
}
|
|
|
|
template <typename It>
|
|
bool safe_multiplies_u64(It first, It last, uint64_t* out) {
|
|
#if C10_HAS_BUILTIN_OVERFLOW()
|
|
uint64_t prod = 1;
|
|
bool overflow = false;
|
|
for (; first != last; ++first) {
|
|
overflow |= c10::mul_overflows(prod, *first, &prod);
|
|
}
|
|
*out = prod;
|
|
return overflow;
|
|
#else
|
|
uint64_t prod = 1;
|
|
uint64_t prod_log2 = 0;
|
|
bool is_zero = false;
|
|
for (; first != last; ++first) {
|
|
auto x = static_cast<uint64_t>(*first);
|
|
prod *= x;
|
|
// log2(0) isn't valid, so need to track it specially
|
|
is_zero |= (x == 0);
|
|
prod_log2 += c10::llvm::Log2_64_Ceil(x);
|
|
}
|
|
*out = prod;
|
|
// This test isn't exact, but avoids doing integer division
|
|
return !is_zero && (prod_log2 >= 64);
|
|
#endif
|
|
}
|
|
|
|
template <typename Container>
|
|
bool safe_multiplies_u64(const Container& c, uint64_t* out) {
|
|
return safe_multiplies_u64(c.begin(), c.end(), out);
|
|
}
|
|
|
|
} // namespace c10
|