35 #ifndef _BLAZE_MATH_EXPRESSIONS_TDMATSMATSUBEXPR_H_ 36 #define _BLAZE_MATH_EXPRESSIONS_TDMATSMATSUBEXPR_H_ 89 template<
typename MT1
91 class TDMatSMatSubExpr
92 :
public MatMatSubExpr< DenseMatrix< TDMatSMatSubExpr<MT1,MT2>, true > >
110 static constexpr
bool returnExpr = ( !IsTemporary_v<RN1> && !IsTemporary_v<RN2> );
123 template<
typename MT >
124 static constexpr
bool UseSMPAssign_v = ( !MT1::smpAssignable || !MT2::smpAssignable );
196 if( i >=
lhs_.rows() ) {
199 if( j >=
lhs_.columns() ) {
211 inline size_t rows() const noexcept {
222 return lhs_.columns();
252 template<
typename T >
253 inline bool canAlias(
const T* alias )
const noexcept {
254 return ( IsExpression_v<MT1> &&
lhs_.canAlias( alias ) ) ||
255 (
rhs_.canAlias( alias ) );
265 template<
typename T >
266 inline bool isAliased(
const T* alias )
const noexcept {
267 return (
lhs_.isAliased( alias ) ||
rhs_.isAliased( alias ) );
289 template<
typename MT
298 if( !IsOperation_v<MT1> &&
isSame( ~lhs, rhs.lhs_ ) ) {
299 subAssign( ~lhs, rhs.rhs_ );
302 assign ( ~lhs, rhs.lhs_ );
303 subAssign( ~lhs, rhs.rhs_ );
321 template<
typename MT
339 const TmpType tmp(
serial( rhs ) );
358 template<
typename MT
360 friend inline void addAssign( DenseMatrix<MT,SO2>& lhs,
const TDMatSMatSubExpr& rhs )
367 addAssign( ~lhs, rhs.lhs_ );
368 subAssign( ~lhs, rhs.rhs_ );
390 template<
typename MT
392 friend inline void subAssign( DenseMatrix<MT,SO2>& lhs,
const TDMatSMatSubExpr& rhs )
399 subAssign( ~lhs, rhs.lhs_ );
400 addAssign( ~lhs, rhs.rhs_ );
422 template<
typename MT
424 friend inline void schurAssign( DenseMatrix<MT,SO2>& lhs,
const TDMatSMatSubExpr& rhs )
436 schurAssign( ~lhs, tmp );
467 template<
typename MT
470 -> EnableIf_t< UseSMPAssign_v<MT> >
477 if( !IsOperation_v<MT1> &&
isSame( ~lhs, rhs.lhs_ ) ) {
502 template<
typename MT
505 -> EnableIf_t< UseSMPAssign_v<MT> >
509 using TmpType = If_t< SO2, ResultType, OppositeType >;
521 const TmpType tmp( rhs );
542 template<
typename MT
545 -> EnableIf_t< UseSMPAssign_v<MT> >
577 template<
typename MT
580 -> EnableIf_t< UseSMPAssign_v<MT> >
612 template<
typename MT
615 -> EnableIf_t< UseSMPAssign_v<MT> >
678 template<
typename MT1
680 , DisableIf_t< IsZero_v<MT2> &&
681 IsSame_v< ElementType_t<MT1>, ElementType_t<MT2> > >* =
nullptr >
682 inline const TDMatSMatSubExpr<MT1,MT2>
683 tdmatsmatsub(
const DenseMatrix<MT1,true>& lhs,
const SparseMatrix<MT2,false>& rhs )
690 return TDMatSMatSubExpr<MT1,MT2>( ~lhs, ~rhs );
710 template<
typename MT1
712 , EnableIf_t< IsZero_v<MT2> &&
713 IsSame_v< ElementType_t<MT1>, ElementType_t<MT2> > >* =
nullptr >
715 tdmatsmatsub(
const DenseMatrix<MT1,true>& lhs,
const SparseMatrix<MT2,false>& rhs )
761 template<
typename MT1
763 inline decltype(
auto)
772 return tdmatsmatsub( ~lhs, ~rhs );
798 template<
typename MT1
802 inline decltype(
auto)
803 operator+( const TDMatSMatSubExpr<MT1,MT2>& lhs, const DenseMatrix<MT3,SO>& rhs )
807 return ( lhs.leftOperand() + (~rhs) ) - lhs.rightOperand();
826 template<
typename MT1
830 inline decltype(
auto)
831 operator-( const TDMatSMatSubExpr<MT1,MT2>& lhs, const DenseMatrix<MT3,SO>& rhs )
835 return ( lhs.leftOperand() - (~rhs) ) - lhs.rightOperand();
Constraint on the data type.
#define BLAZE_THROW_INVALID_ARGUMENT(MESSAGE)
Macro for the emission of a std::invalid_argument exception.This macro encapsulates the default way o...
Definition: Exception.h:235
Header file for auxiliary alias declarations.
LeftOperand lhs_
Left-hand side dense matrix of the subtraction expression.
Definition: TDMatSMatSubExpr.h:273
ReturnType_t< MT2 > RN2
Return type of the right-hand side sparse matrix expression.
Definition: TDMatSMatSubExpr.h:100
typename SubTrait< T1, T2 >::Type SubTrait_t
Auxiliary alias declaration for the SubTrait class template.The SubTrait_t alias declaration provides...
Definition: SubTrait.h:238
static constexpr bool returnExpr
Compilation switch for the selection of the subscript operator return type.
Definition: TDMatSMatSubExpr.h:110
Header file for the subtraction trait.
bool isSame(const Matrix< MT1, SO1 > &a, const Matrix< MT2, SO2 > &b) noexcept
Returns whether the two given matrices represent the same observable state.
Definition: Matrix.h:992
Header file for basic type definitions.
typename If< Condition, T1, T2 >::Type If_t
Auxiliary alias template for the If class template.The If_t alias template provides a convenient shor...
Definition: If.h:109
typename T::ResultType ResultType_t
Alias declaration for nested ResultType type definitions.The ResultType_t alias declaration provides ...
Definition: Aliases.h:390
Header file for the serial shim.
#define BLAZE_CONSTRAINT_MUST_BE_DENSE_MATRIX_TYPE(T)
Constraint on the data type.In case the given data type T is not a dense, N-dimensional matrix type,...
Definition: DenseMatrix.h:61
If_t< IsExpression_v< MT2 >, const MT2, const MT2 & > RightOperand
Composite type of the right-hand side sparse matrix expression.
Definition: TDMatSMatSubExpr.h:147
Header file for the IsSame and IsStrictlySame type traits.
size_t rows() const noexcept
Returns the current number of rows of the matrix.
Definition: TDMatSMatSubExpr.h:211
ReturnType at(size_t i, size_t j) const
Checked access to the matrix elements.
Definition: TDMatSMatSubExpr.h:195
Header file for the MAYBE_UNUSED function template.
bool canAlias(const T *alias) const noexcept
Returns whether the expression can alias with the given address alias.
Definition: TDMatSMatSubExpr.h:253
Header file for the Computation base class.
Constraints on the storage order of matrix types.
typename T::ReturnType ReturnType_t
Alias declaration for nested ReturnType type definitions.The ReturnType_t alias declaration provides ...
Definition: Aliases.h:410
constexpr size_t columns(const Matrix< MT, SO > &matrix) noexcept
Returns the current number of columns of the matrix.
Definition: Matrix.h:514
Base class for dense matrices.The DenseMatrix class is a base class for all dense matrix classes....
Definition: DenseMatrix.h:81
Base class for sparse matrices.The SparseMatrix class is a base class for all sparse matrix classes....
Definition: Forward.h:145
typename T::ElementType ElementType_t
Alias declaration for nested ElementType type definitions.The ElementType_t alias declaration provide...
Definition: Aliases.h:170
RightOperand rightOperand() const noexcept
Returns the right-hand side sparse matrix operand.
Definition: TDMatSMatSubExpr.h:241
static constexpr bool smpAssignable
Compilation switch for the expression template assignment strategy.
Definition: TDMatSMatSubExpr.h:155
ElementType_t< ResultType > ElementType
Resulting element type.
Definition: TDMatSMatSubExpr.h:135
Constraint on the data type.
Constraint on the data type.
bool isAliased(const T *alias) const noexcept
Returns whether the expression is aliased with the given address alias.
Definition: TDMatSMatSubExpr.h:266
RightOperand rhs_
Right-hand side sparse matrix of the subtraction expression.
Definition: TDMatSMatSubExpr.h:274
Header file for the DisableIf class template.
Header file for the IsTemporary type trait class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the If class template.
#define BLAZE_CONSTRAINT_MUST_BE_COLUMN_MAJOR_MATRIX_TYPE(T)
Constraint on the data type.In case the given data type T is not a column-major dense or sparse matri...
Definition: ColumnMajorMatrix.h:61
LeftOperand leftOperand() const noexcept
Returns the left-hand side transpose dense matrix operand.
Definition: TDMatSMatSubExpr.h:231
#define BLAZE_THROW_OUT_OF_RANGE(MESSAGE)
Macro for the emission of a std::out_of_range exception.This macro encapsulates the default way of Bl...
Definition: Exception.h:331
Header file for the DenseMatrix base class.
Header file for the MatMatSubExpr base class.
Header file for the IsOperation type trait class.
constexpr void MAYBE_UNUSED(const Args &...)
Suppression of unused parameter warnings.
Definition: MaybeUnused.h:81
Constraints on the storage order of matrix types.
Header file for the exception macros of the math module.
ResultType_t< MT1 > RT1
Result type of the left-hand side dense matrix expression.
Definition: TDMatSMatSubExpr.h:97
Constraint on the data type.
ReturnType_t< MT1 > RN1
Return type of the left-hand side dense matrix expression.
Definition: TDMatSMatSubExpr.h:99
Header file for the EnableIf class template.
typename T::OppositeType OppositeType_t
Alias declaration for nested OppositeType type definitions.The OppositeType_t alias declaration provi...
Definition: Aliases.h:270
size_t columns() const noexcept
Returns the current number of columns of the matrix.
Definition: TDMatSMatSubExpr.h:221
#define BLAZE_CONSTRAINT_MUST_BE_ROW_MAJOR_MATRIX_TYPE(T)
Constraint on the data type.In case the given data type T is not a row-major dense or sparse matrix t...
Definition: RowMajorMatrix.h:61
typename T::TransposeType TransposeType_t
Alias declaration for nested TransposeType type definitions.The TransposeType_t alias declaration pro...
Definition: Aliases.h:470
Header file for run time assertion macros.
auto smpAddAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) -> EnableIf_t< IsDenseMatrix_v< MT1 > >
Default implementation of the SMP addition assignment of a matrix to a dense matrix.
Definition: DenseMatrix.h:131
ResultType_t< MT2 > RT2
Result type of the right-hand side sparse matrix expression.
Definition: TDMatSMatSubExpr.h:98
OppositeType_t< ResultType > OppositeType
Result type with opposite storage order for expression template evaluations.
Definition: TDMatSMatSubExpr.h:133
Header file for the IsZero type trait.
#define BLAZE_FUNCTION_TRACE
Function trace macro.This macro can be used to reliably trace function calls. In case function tracin...
Definition: FunctionTrace.h:94
Header file for all forward declarations for expression class templates.
auto smpAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) -> EnableIf_t< IsDenseMatrix_v< MT1 > >
Default implementation of the SMP assignment of a matrix to a dense matrix.
Definition: DenseMatrix.h:100
Constraints on the storage order of matrix types.
decltype(auto) serial(const DenseMatrix< MT, SO > &dm)
Forces the serial evaluation of the given dense matrix expression dm.
Definition: DMatSerialExpr.h:808
#define BLAZE_CONSTRAINT_MUST_NOT_REQUIRE_EVALUATION(T)
Constraint on the data type.In case the given data type T requires an intermediate evaluation within ...
Definition: RequiresEvaluation.h:81
auto smpSchurAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) -> EnableIf_t< IsDenseMatrix_v< MT1 > >
Default implementation of the SMP Schur product assignment of a matrix to dense matrix.
Definition: DenseMatrix.h:194
constexpr size_t rows(const Matrix< MT, SO > &matrix) noexcept
Returns the current number of rows of the matrix.
Definition: Matrix.h:498
#define BLAZE_CONSTRAINT_MATRICES_MUST_HAVE_SAME_STORAGE_ORDER(T1, T2)
Constraint on the data type.In case either of the two given data types T1 or T2 is not a matrix type ...
Definition: StorageOrder.h:84
ReturnType operator()(size_t i, size_t j) const
2D-access to the matrix elements.
Definition: TDMatSMatSubExpr.h:180
TDMatSMatSubExpr(const MT1 &lhs, const MT2 &rhs) noexcept
Constructor for the TDMatSMatSubExpr class.
Definition: TDMatSMatSubExpr.h:164
const If_t< returnExpr, ExprReturnType, ElementType > ReturnType
Return type for expression template evaluations.
Definition: TDMatSMatSubExpr.h:138
auto smpSubAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) -> EnableIf_t< IsDenseMatrix_v< MT1 > >
Default implementation of the SMP subtraction assignment of a matrix to dense matrix.
Definition: DenseMatrix.h:162
Header file for the IntegralConstant class template.
If_t< IsExpression_v< MT1 >, const MT1, const MT1 & > LeftOperand
Composite type of the left-hand side dense matrix expression.
Definition: TDMatSMatSubExpr.h:144
#define BLAZE_CONSTRAINT_MUST_FORM_VALID_MATMATSUBEXPR(T1, T2)
Constraint on the data type.In case the given data types T1 and T2 do not form a valid matrix/matrix ...
Definition: MatMatSubExpr.h:103
static constexpr bool simdEnabled
Compilation switch for the expression template evaluation strategy.
Definition: TDMatSMatSubExpr.h:152
decltype(std::declval< RN1 >() - std::declval< RN2 >()) ExprReturnType
Expression return type for the subscript operator.
Definition: TDMatSMatSubExpr.h:113
TransposeType_t< ResultType > TransposeType
Transpose type for expression template evaluations.
Definition: TDMatSMatSubExpr.h:134
#define BLAZE_INTERNAL_ASSERT(expr, msg)
Run time assertion macro for internal checks.In case of an invalid run time expression,...
Definition: Assert.h:101
Expression object for transpose dense matrix-sparse matrix subtractions.The TDMatSMatSubExpr class re...
Definition: Forward.h:171
#define BLAZE_CONSTRAINT_MUST_BE_SPARSE_MATRIX_TYPE(T)
Constraint on the data type.In case the given data type T is not a sparse, N-dimensional matrix type,...
Definition: SparseMatrix.h:61
const ResultType CompositeType
Data type for composite expression templates.
Definition: TDMatSMatSubExpr.h:141
Header file for the IsExpression type trait class.
Header file for the function trace functionality.
SubTrait_t< RT1, RT2 > ResultType
Result type for expression template evaluations.
Definition: TDMatSMatSubExpr.h:132