// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008 Gael Guennebaud // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see . #define EIGEN_DEBUG_ASSIGN #include "main.h" #include template bool test_assign(const Dst&, const Src&, int traversal, int unrolling) { ei_assign_traits::debug(); return ei_assign_traits::Traversal==traversal && ei_assign_traits::Unrolling==unrolling; } template bool test_assign(int traversal, int unrolling) { ei_assign_traits::debug(); return ei_assign_traits::Traversal==traversal && ei_assign_traits::Unrolling==unrolling; } template bool test_redux(const Xpr&, int traversal, int unrolling) { typedef ei_redux_traits,Xpr> traits; return traits::Traversal==traversal && traits::Unrolling==unrolling; } void test_vectorization_logic() { #ifdef EIGEN_VECTORIZE VERIFY(test_assign(Vector4f(),Vector4f(), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Vector4f(),Vector4f()+Vector4f(), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Vector4f(),Vector4f().cwiseProduct(Vector4f()), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Vector4f(),Vector4f().cast(), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix4f(),Matrix4f(), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix4f(),Matrix4f()+Matrix4f(), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix4f(),Matrix4f().cwiseProduct(Matrix4f()), InnerVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix(),Matrix()+Matrix(), InnerVectorizedTraversal,InnerUnrolling)); VERIFY(test_assign(Matrix(),Matrix()+Matrix(), LinearTraversal,NoUnrolling)); VERIFY(test_assign(Matrix(),Matrix()+Matrix(), LinearTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix(),Matrix().cwiseQuotient(Matrix()), LinearVectorizedTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix(),Matrix()+Matrix(), LinearTraversal,NoUnrolling)); VERIFY(test_assign(Matrix(),Matrix()+Matrix(), LinearTraversal,CompleteUnrolling)); VERIFY(test_assign(Matrix(),Matrix().block<4,4>(2,3)+Matrix().block<4,4>(10,4), DefaultTraversal,CompleteUnrolling)); VERIFY(test_assign(MatrixXf(10,10),MatrixXf(20,20).block(10,10,2,3), SliceVectorizedTraversal,NoUnrolling)); VERIFY((test_assign< Map, Aligned, OuterStride<12> >, Matrix >(InnerVectorizedTraversal,CompleteUnrolling))); VERIFY((test_assign< Map, Aligned, InnerStride<12> >, Matrix >(DefaultTraversal,CompleteUnrolling))); VERIFY(test_redux(VectorXf(10), LinearVectorizedTraversal,NoUnrolling)); VERIFY(test_redux(Matrix(), DefaultTraversal,CompleteUnrolling)); VERIFY(test_redux(Matrix(), LinearVectorizedTraversal,CompleteUnrolling)); VERIFY(test_redux(Matrix(), LinearVectorizedTraversal,NoUnrolling)); VERIFY(test_redux(Matrix().block<4,4>(1,2), DefaultTraversal,CompleteUnrolling)); VERIFY(test_redux(Matrix().block<8,1>(1,2), LinearVectorizedTraversal,CompleteUnrolling)); VERIFY(test_redux(Matrix(), DefaultTraversal,CompleteUnrolling)); #endif // EIGEN_VECTORIZE }