コード例 #1
0
void AdjointContract
( const BlockMatrix<T>& A, 
        BlockMatrix<T>& B )
{
    DEBUG_ONLY(CSE cse("AdjointContract"))
    TransposeContract( A, B, true );
}
コード例 #2
0
void AdjointContract
( const BlockMatrix<T>& A,
        BlockMatrix<T>& B )
{
    EL_DEBUG_CSE
    TransposeContract( A, B, true );
}
コード例 #3
0
ファイル: AdjointContract.cpp プロジェクト: sg0/Elemental
void AdjointContract
( const AbstractBlockDistMatrix<T>& A, 
        AbstractBlockDistMatrix<T>& B )
{
    DEBUG_ONLY(CallStackEntry cse("AdjointContract"))
    TransposeContract( A, B, true );
}
コード例 #4
0
void AdjointContract( const ElementalMatrix<T>& A, ElementalMatrix<T>& B )
{
    DEBUG_ONLY(CSE cse("AdjointContract"))
    TransposeContract( A, B, true );
}
コード例 #5
0
void AdjointContract( const ElementalMatrix<T>& A, ElementalMatrix<T>& B )
{
    EL_DEBUG_CSE
    TransposeContract( A, B, true );
}