$search
00001 // Copyright (C) 2008-2011 NICTA (www.nicta.com.au) 00002 // Copyright (C) 2008-2011 Conrad Sanderson 00003 // 00004 // This file is part of the Armadillo C++ library. 00005 // It is provided without any warranty of fitness 00006 // for any purpose. You can redistribute this file 00007 // and/or modify it under the terms of the GNU 00008 // Lesser General Public License (LGPL) as published 00009 // by the Free Software Foundation, either version 3 00010 // of the License or (at your option) any later version. 00011 // (see http://www.opensource.org/licenses for more info) 00012 00013 00016 00019 00020 class op_dot 00021 { 00022 public: 00023 00024 template<typename eT> 00025 arma_hot arma_pure inline static eT direct_dot_arma(const uword n_elem, const eT* const A, const eT* const B); 00026 00027 template<typename eT> 00028 arma_hot arma_pure inline static typename arma_float_only<eT>::result 00029 direct_dot(const uword n_elem, const eT* const A, const eT* const B); 00030 00031 template<typename eT> 00032 arma_hot arma_pure inline static typename arma_cx_only<eT>::result 00033 direct_dot(const uword n_elem, const eT* const A, const eT* const B); 00034 00035 template<typename eT> 00036 arma_hot arma_pure inline static typename arma_integral_only<eT>::result 00037 direct_dot(const uword n_elem, const eT* const A, const eT* const B); 00038 00039 00040 template<typename eT> 00041 arma_hot arma_pure inline static eT direct_dot(const uword n_elem, const eT* const A, const eT* const B, const eT* C); 00042 00043 template<typename T1, typename T2> 00044 arma_hot arma_inline static typename T1::elem_type apply(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00045 00046 template<typename T1, typename T2> 00047 arma_hot inline static typename T1::elem_type apply_unwrap(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00048 00049 template<typename T1, typename T2> 00050 arma_hot inline static typename T1::elem_type apply_proxy (const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00051 }; 00052 00053 00054 00057 00058 class op_norm_dot 00059 { 00060 public: 00061 00062 template<typename T1, typename T2> 00063 arma_hot inline static typename T1::elem_type apply (const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00064 00065 template<typename T1, typename T2> 00066 arma_hot inline static typename T1::elem_type apply_unwrap(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00067 }; 00068 00069 00070 00071 class op_cdot 00072 { 00073 public: 00074 00075 template<typename T1, typename T2> 00076 arma_hot arma_inline static typename T1::elem_type apply(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y); 00077 }; 00078 00079 00080