// SPDX-License-Identifier: Apache-2.0 // // Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au) // Copyright 2008-2016 National ICT Australia (NICTA) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // ------------------------------------------------------------------------ //! \addtogroup operator_schur //! @{ // operator %, which we define it to do a schur product (element-wise multiplication) //! element-wise multiplication of user-accessible Armadillo objects with same element type template arma_inline typename enable_if2 < is_arma_type::value && is_arma_type::value && is_same_type::value, const eGlue >::result operator% ( const T1& X, const T2& Y ) { arma_extra_debug_sigprint(); return eGlue(X, Y); } //! element-wise multiplication of user-accessible Armadillo objects with different element types template inline typename enable_if2 < (is_arma_type::value && is_arma_type::value && (is_same_type::no)), const mtGlue::result, T1, T2, glue_mixed_schur> >::result operator% ( const T1& X, const T2& Y ) { arma_extra_debug_sigprint(); typedef typename T1::elem_type eT1; typedef typename T2::elem_type eT2; typedef typename promote_type::result out_eT; promote_type::check(); return mtGlue( X, Y ); } //! element-wise multiplication of two sparse matrices template inline typename enable_if2 < (is_arma_sparse_type::value && is_arma_sparse_type::value && is_same_type::value), SpGlue >::result operator% ( const T1& x, const T2& y ) { arma_extra_debug_sigprint(); return SpGlue(x, y); } //! element-wise multiplication of one dense and one sparse object template inline typename enable_if2 < (is_arma_type::value && is_arma_sparse_type::value && is_same_type::value), SpMat >::result operator% ( const T1& x, const T2& y ) { arma_extra_debug_sigprint(); SpMat out; spglue_schur_misc::dense_schur_sparse(out, x, y); return out; } //! element-wise multiplication of one sparse and one dense object template inline typename enable_if2 < (is_arma_sparse_type::value && is_arma_type::value && is_same_type::value), SpMat >::result operator% ( const T1& x, const T2& y ) { arma_extra_debug_sigprint(); SpMat out; // Just call the other order (these operations are commutative) // TODO: if there is a matrix size mismatch, the debug assert will print the matrix sizes in wrong order spglue_schur_misc::dense_schur_sparse(out, y, x); return out; } //! optimization: sparse % (sparse +/- scalar) can be done without forming the dense result of the (sparse +/- scalar) term template inline typename enable_if2 < ( is_arma_sparse_type::value && is_arma_sparse_type::value && is_same_type::yes && (is_same_type::value || is_same_type::value || is_same_type::value) ), SpMat >::result operator% ( const T1& x, const SpToDOp& y ) { arma_extra_debug_sigprint(); SpMat out; op_type::apply_inside_schur(out, x, y); return out; } //! optimization: (sparse +/- scalar) % sparse can be done without forming the dense result of the (sparse +/- scalar) term template inline typename enable_if2 < ( is_arma_sparse_type::value && is_arma_sparse_type::value && is_same_type::yes && (is_same_type::value || is_same_type::value || is_same_type::value) ), SpMat >::result operator% ( const SpToDOp& x, const T2& y ) { arma_extra_debug_sigprint(); SpMat out; // Just call the other order (these operations are commutative) // TODO: if there is a matrix size mismatch, the debug assert will print the matrix sizes in wrong order op_type::apply_inside_schur(out, y, x); return out; } //! element-wise multiplication of two sparse objects with different element types template inline typename enable_if2 < (is_arma_sparse_type::value && is_arma_sparse_type::value && is_same_type::no), const mtSpGlue< typename promote_type::result, T1, T2, spglue_schur_mixed > >::result operator% ( const T1& X, const T2& Y ) { arma_extra_debug_sigprint(); typedef typename T1::elem_type eT1; typedef typename T2::elem_type eT2; typedef typename promote_type::result out_eT; promote_type::check(); return mtSpGlue( X, Y ); } //! element-wise multiplication of one dense and one sparse object with different element types template inline typename enable_if2 < (is_arma_type::value && is_arma_sparse_type::value && is_same_type::no), SpMat< typename promote_type::result > >::result operator% ( const T1& x, const T2& y ) { arma_extra_debug_sigprint(); SpMat< typename promote_type::result > out; spglue_schur_mixed::dense_schur_sparse(out, x, y); return out; } //! element-wise multiplication of one sparse and one dense object with different element types template inline typename enable_if2 < (is_arma_sparse_type::value && is_arma_type::value && is_same_type::no), SpMat< typename promote_type::result > >::result operator% ( const T1& x, const T2& y ) { arma_extra_debug_sigprint(); SpMat< typename promote_type::result > out; // Just call the other order (these operations are commutative) // TODO: if there is a matrix size mismatch, the debug assert will print the matrix sizes in wrong order spglue_schur_mixed::dense_schur_sparse(out, y, x); return out; } template inline Mat operator% ( const subview_each1& X, const Base& Y ) { arma_extra_debug_sigprint(); return subview_each1_aux::operator_schur(X, Y.get_ref()); } template arma_inline Mat operator% ( const Base& X, const subview_each1& Y ) { arma_extra_debug_sigprint(); return subview_each1_aux::operator_schur(Y, X.get_ref()); // NOTE: swapped order } template inline Mat operator% ( const subview_each2& X, const Base& Y ) { arma_extra_debug_sigprint(); return subview_each2_aux::operator_schur(X, Y.get_ref()); } template arma_inline Mat operator% ( const Base& X, const subview_each2& Y ) { arma_extra_debug_sigprint(); return subview_each2_aux::operator_schur(Y, X.get_ref()); // NOTE: swapped order } //! @}