本文整理匯總了C++中A_STAR_STAR函數的典型用法代碼示例。如果您正苦於以下問題:C++ A_STAR_STAR函數的具體用法?C++ A_STAR_STAR怎麽用?C++ A_STAR_STAR使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了A_STAR_STAR函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: DEBUG_ONLY
BDM& BDM::operator=( const BlockDistMatrix<T,STAR,MC>& A )
{
DEBUG_ONLY(CSE cse("[MD,STAR] = [STAR,MC]"))
// TODO: More efficient implementation?
BlockDistMatrix<T,STAR,STAR> A_STAR_STAR(A);
*this = A_STAR_STAR;
return *this;
}
示例2: DEBUG_ONLY
BDM& BDM::operator=( const DistMatrix<T,STAR,MD,BLOCK>& A )
{
DEBUG_ONLY(CSE cse("[MR,MC] = [STAR,MD]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR,BLOCK> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例3: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,STAR,MC>& A )
{
DEBUG_ONLY(CallStackEntry cse("[MD,STAR] = [STAR,MC]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例4: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,STAR,MD>& A )
{
DEBUG_ONLY(CSE cse("[STAR,VR] = [STAR,MD]"))
// TODO: Optimize this later if important
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例5: DEBUG_ONLY
BDM& BDM::operator=( const BlockDistMatrix<T,STAR,MD>& A )
{
DEBUG_ONLY(CallStackEntry cse("[VC,STAR] = [STAR,MD]"))
// TODO: More efficient implementation?
BlockDistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例6: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,VC,STAR>& A )
{
DEBUG_ONLY(CSE cse("[MD,STAR] = [VC,STAR]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例7: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,MD,STAR>& A )
{
DEBUG_ONLY(CallStackEntry cse("[STAR,VC] = [MD,STAR]"))
// TODO: Optimize this later if important
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例8: DEBUG_ONLY
BDM& BDM::operator=( const DistMatrix<T,MD,STAR,BLOCK_CYCLIC>& A )
{
DEBUG_ONLY(CSE cse("[STAR,VR] = [MD,STAR]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR,BLOCK_CYCLIC> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}