Skip to content

Commit fa9cbdc

Browse files
anthonyalayopytorchmergebot
authored andcommitted
Updating sleef submodule to eb3d97785 to fix export errors (pytorch#119953)
Fixes pytorch#119952 with submodule updates Pull Request resolved: pytorch#119953 Approved by: https://github.com/ezyang
1 parent f2cf076 commit fa9cbdc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

aten/src/ATen/cpu/vec/vec256/vec256_bfloat16.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ static_assert(
265265
}
266266
return b;
267267
}
268-
Vectorized<T> map(const __m256 (*const vop)(__m256)) const {
268+
Vectorized<T> map(__m256 (*const vop)(__m256)) const {
269269
__m256 lo, hi;
270270
cvt_to_fp32<T>(values, lo, hi);
271271
const auto o1 = vop(lo);

aten/src/ATen/cpu/vec/vec512/vec512_bfloat16.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ static_assert(
343343
}
344344
#pragma clang diagnostic push
345345
#pragma clang diagnostic ignored "-Wignored-qualifiers"
346-
Vectorized<T> map(const __m512 (*const vop)(__m512)) const {
346+
Vectorized<T> map(__m512 (*const vop)(__m512)) const {
347347
__m512 lo, hi;
348348
cvt_to_fp32<T>(values, lo, hi);
349349
const auto o1 = vop(lo);

third_party/sleef

Submodule sleef updated 136 files

0 commit comments

Comments
 (0)