package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
728 B
15 lines
728 B
diff --git a/aten/src/ATen/cpu/vec/vec_base.h b/aten/src/ATen/cpu/vec/vec_base.h |
|
index 3bf1010efd..640c0ed109 100644 |
|
--- a/aten/src/ATen/cpu/vec/vec_base.h |
|
+++ b/aten/src/ATen/cpu/vec/vec_base.h |
|
@@ -131,8 +131,9 @@ public: |
|
// versions GCC/Clang have buggy determinations on whether or not an |
|
// identifier is odr-used or not, and in any case it's hard to tell if |
|
// a variable is odr-used or not. So best to just cut the problem at the root. |
|
+ static constexpr size_type size_T = sizeof(T); // Workaround to compile with VS2022. |
|
static constexpr size_type size() { |
|
- return VECTOR_WIDTH / sizeof(T); |
|
+ return VECTOR_WIDTH / size_T; |
|
} |
|
Vectorized() : values{static_cast<T>(0)} {} |
|
Vectorized(T val) {
|
|
|