/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/tensors/Tensor_outer.h Copyright (C) 2015 Author: Peter Boyle This program is free software; 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. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ #ifndef GRID_MATH_OUTER_H #define GRID_MATH_OUTER_H NAMESPACE_BEGIN(Grid); /////////////////////////////////////////////////////////////////////////////////////// // outerProduct Scalar x Scalar -> Scalar // Vector x Vector -> Matrix /////////////////////////////////////////////////////////////////////////////////////// template accelerator_inline auto outerProduct (const iVector& lhs,const iVector& rhs) -> iMatrix { typedef decltype(outerProduct(lhs._internal[0],rhs._internal[0])) ret_t; iMatrix ret; for(int c1=0;c1 accelerator_inline auto outerProduct (const iScalar& lhs,const iScalar& rhs) -> iScalar { typedef decltype(outerProduct(lhs._internal,rhs._internal)) ret_t; iScalar ret; ret._internal = outerProduct(lhs._internal,rhs._internal); return ret; } accelerator_inline ComplexF outerProduct(const ComplexF &l, const ComplexF& r) { return l*conj(r); } accelerator_inline ComplexD outerProduct(const ComplexD &l, const ComplexD& r) { return l*conj(r); } accelerator_inline RealF outerProduct(const RealF &l, const RealF& r) { return l*r; } accelerator_inline RealD outerProduct(const RealD &l, const RealD& r) { return l*r; } NAMESPACE_END(Grid); #endif