aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_morphing.cpp
diff options
context:
space:
mode:
authorGravatar Antonio Sánchez <cantonios@google.com>2020-05-28 17:40:15 +0000
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2020-05-28 17:40:15 +0000
commit8719b9c5bc1a97e62d675c02495ed72dda6fae73 (patch)
tree3c91fd5b4bc0d08eda6ccbba28dbea3da117de42 /unsupported/test/cxx11_tensor_morphing.cpp
parent8e1df5b08280f07a8814719fdbbeaf6fababd2dc (diff)
Disable test for 32-bit systems (e.g. ARM, i386)
Both i386 and 32-bit ARM do not define __uint128_t. On most systems, if __uint128_t is defined, then so is the macro __SIZEOF_INT128__. https://stackoverflow.com/questions/18531782/how-to-know-if-uint128-t-is-defined1
Diffstat (limited to 'unsupported/test/cxx11_tensor_morphing.cpp')
-rw-r--r--unsupported/test/cxx11_tensor_morphing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/test/cxx11_tensor_morphing.cpp b/unsupported/test/cxx11_tensor_morphing.cpp
index f01b95357..59f4c34b3 100644
--- a/unsupported/test/cxx11_tensor_morphing.cpp
+++ b/unsupported/test/cxx11_tensor_morphing.cpp
@@ -51,8 +51,8 @@ static void test_static_reshape() {
// New dimensions: [2, 3, 7]
Eigen::IndexList<type2index<2>, type2index<3>, type2index<7>> dim;
- Tensor<float, 3> reshaped = tensor.reshape(static_cast<Eigen::DSizes<long,3>>(dim));
-
+ Tensor<float, 3> reshaped = tensor.reshape(static_cast<Eigen::DSizes<ptrdiff_t,3>>(dim));
+
for (int i = 0; i < 2; ++i) {
for (int j = 0; j < 3; ++j) {