aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_chipping.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-01-16 09:09:23 -0800
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-01-16 09:09:23 -0800
commit14f537c296710173c76379d8efec59bfb1d78eb7 (patch)
tree896ee4bf9c776ae7aa6dda0e5de643d58f7f203c /unsupported/test/cxx11_tensor_chipping.cpp
parent641e824c56db8fffb2f6091d18f913e040c1ea95 (diff)
gcc doesn't consider that
template<typename OtherDerived> TensorStridingOp& operator = (const OtherDerived& other) provides a valid assignment operator for the striding operation, and therefore refuses to compile code like: result.stride(foo) = source.stride(bar); Added the explicit TensorStridingOp& operator = (const TensorStridingOp& other) as a workaround to get the code to compile, and did the same in all the operations that can be used as lvalues.
Diffstat (limited to 'unsupported/test/cxx11_tensor_chipping.cpp')
-rw-r--r--unsupported/test/cxx11_tensor_chipping.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/unsupported/test/cxx11_tensor_chipping.cpp b/unsupported/test/cxx11_tensor_chipping.cpp
index 0de7bbac6..d83417872 100644
--- a/unsupported/test/cxx11_tensor_chipping.cpp
+++ b/unsupported/test/cxx11_tensor_chipping.cpp
@@ -318,8 +318,29 @@ static void test_chip_as_lvalue()
}
}
}
+
+ Tensor<float, 5, DataLayout> input7(2,3,5,7,11);
+ input7.setRandom();
+ tensor = input1;
+ tensor.chip(0, 0) = input7.chip(0, 0);
+ for (int i = 0; i < 2; ++i) {
+ for (int j = 0; j < 3; ++j) {
+ for (int k = 0; k < 5; ++k) {
+ for (int l = 0; l < 7; ++l) {
+ for (int m = 0; m < 11; ++m) {
+ if (i != 0) {
+ VERIFY_IS_EQUAL(tensor(i,j,k,l,m), input1(i,j,k,l,m));
+ } else {
+ VERIFY_IS_EQUAL(tensor(i,j,k,l,m), input7(i,j,k,l,m));
+ }
+ }
+ }
+ }
+ }
+ }
}
+
template<int DataLayout>
static void test_chip_raw_data()
{