示例#1
0
void DistSparseMatrix<T>::ZeroLocal( Int localRow, Int col )
{
    DEBUG_CSE
    QueueLocalZero( localRow, col );
    ProcessLocalQueues();
}
示例#2
0
void DistSparseMatrix<T>::ZeroLocal( Int localRow, Int col )
{
    DEBUG_ONLY(CSE cse("DistSparseMatrix::ZeroLocal"))
    QueueLocalZero( localRow, col );
    ProcessLocalQueues();
}
示例#3
0
void DistSparseMatrix<T>::ZeroLocal( Int localRow, Int col )
{
    DEBUG_ONLY(CallStackEntry cse("DistSparseMatrix::ZeroLocal"))
    QueueLocalZero( localRow, col );
    MakeConsistent();
}