Exemple #1
0
void DistGraph::DisconnectLocal( Int localSource, Int target )
{
    DEBUG_ONLY(CSE cse("DistGraph::DisconnectLocal"))
    QueueLocalDisconnection( localSource, target );
    ProcessLocalQueues();
}
void DistSparseMatrix<T>::ZeroLocal( Int localRow, Int col )
{
    DEBUG_ONLY(CSE cse("DistSparseMatrix::ZeroLocal"))
    QueueLocalZero( localRow, col );
    ProcessLocalQueues();
}
Exemple #3
0
void DistGraph::Disconnect( Int source, Int target )
{
    DEBUG_ONLY(CSE cse("DistGraph::Disconnect"))
    QueueDisconnection( source, target, true );
    ProcessLocalQueues();
}
void DistSparseMatrix<T>::UpdateLocal( Int localRow, Int col, T value )
{
    DEBUG_ONLY(CSE cse("DistSparseMatrix::UpdateLocal"))
    QueueLocalUpdate( localRow, col, value );
    ProcessLocalQueues();
}
void DistSparseMatrix<T>::Zero( Int row, Int col )
{
    DEBUG_ONLY(CSE cse("DistSparseMatrix::Zero"))
    QueueZero( row, col, true );
    ProcessLocalQueues();
}
Exemple #6
0
void DistSparseMatrix<T>::ZeroLocal( Int localRow, Int col )
{
    DEBUG_CSE
    QueueLocalZero( localRow, col );
    ProcessLocalQueues();
}
void DistSparseMatrix<T>::Update( Int row, Int col, T value )
{
    DEBUG_ONLY(CSE cse("DistSparseMatrix::Update"))
    QueueUpdate( row, col, value, true );
    ProcessLocalQueues();
}
Exemple #8
0
void DistSparseMatrix<T>::Zero( Int row, Int col )
{
    DEBUG_CSE
    QueueZero( row, col, true );
    ProcessLocalQueues();
}
Exemple #9
0
void DistSparseMatrix<T>::UpdateLocal( Int localRow, Int col, T value )
{
    DEBUG_CSE
    QueueLocalUpdate( localRow, col, value );
    ProcessLocalQueues();
}
Exemple #10
0
void DistSparseMatrix<T>::Update( Int row, Int col, T value )
{
    DEBUG_CSE
    QueueUpdate( row, col, value, true );
    ProcessLocalQueues();
}
Exemple #11
0
void DistGraph::DisconnectLocal( Int localSource, Int target )
{
    EL_DEBUG_CSE
    QueueLocalDisconnection( localSource, target );
    ProcessLocalQueues();
}
Exemple #12
0
void DistGraph::Disconnect( Int source, Int target )
{
    EL_DEBUG_CSE
    QueueDisconnection( source, target, true );
    ProcessLocalQueues();
}