@@ -960,33 +960,6 @@ TEST_F(NDAArrayAndView, StrideOrderOfArrays) {
960960 */
961961TEST_F (NDAArrayAndView, ArrayAligned) {
962962 nda::array_aligned<int ,2 ,nda::C_layout> M = {{1 , 2 }, {3 , 4 }, {5 , 6 }};
963- // EXPECT_EQ(M.shape(), (shape_t<2>{3, 2}));
964- // for (int i = 1; auto x : M) EXPECT_EQ(x, i++);
965- // for (int i = 0 ; i < 2; ++i) {
966- // for (int j = 0 ;j < 2; ++j) {
967- // std::cout << M(i, j) << " ";
968- // }
969- // std::cout << std::endl;
970- // }
971- // nda::native_simd<int> x(&M(0,0), xsimd::aligned_mode());
972- // nda::native_simd<int> y(&M(1,0), xsimd::aligned_mode());
973- // nda::native_simd<int> z(&M(2,0), xsimd::aligned_mode());
974- // alignas(x.alignment()) std::array<int,x.size()> test;
975- // x.store(test.data());
976- //
977- // for (int i = 0 ; i < 8 ; ++i) {
978- // std::cout << "x: " << test[i] << std::endl;
979- // }
980- // y.store(test.data());
981- //
982- // for (int i = 0 ; i < 8 ; ++i) {
983- // std::cout << "y: " << test[i] << std::endl;
984- // }
985- // z.store(test.data());
986- // for (int i = 0 ; i < 8 ; ++i) {
987- // std::cout << "z: " << test[i] << std::endl;
988- // }
989-
990963}
991964
992965#if defined(__has_feature)
0 commit comments