本文整理汇总了C++中Epetra_MpiComm::GetMpiTag方法的典型用法代码示例。如果您正苦于以下问题:C++ Epetra_MpiComm::GetMpiTag方法的具体用法?C++ Epetra_MpiComm::GetMpiTag怎么用?C++ Epetra_MpiComm::GetMpiTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Epetra_MpiComm
的用法示例。
在下文中一共展示了Epetra_MpiComm::GetMpiTag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
//==============================================================================
// Epetra_MpiDistributor constructor
Epetra_MpiDistributor::Epetra_MpiDistributor(const Epetra_MpiComm & Comm):
Epetra_Object("Epetra::MpiDistributor"),
lengths_to_(0),
procs_to_(0),
indices_to_(0),
size_indices_to_(0),
lengths_from_(0),
procs_from_(0),
indices_from_(0),
size_indices_from_(0),
resized_(false),
sizes_(0),
sizes_to_(0),
starts_to_(0),
starts_to_ptr_(0),
indices_to_ptr_(0),
sizes_from_(0),
starts_from_(0),
starts_from_ptr_(0),
indices_from_ptr_(0),
nrecvs_(0),
nsends_(0),
nexports_(0),
self_msg_(0),
max_send_length_(0),
total_recv_length_(0),
tag_(Comm.GetMpiTag()),
epComm_(&Comm),
comm_(Comm.GetMpiComm()),
request_(0),
status_(0),
no_delete_(false),
send_array_(0),
send_array_size_(0),
comm_plan_reverse_(0)
{
}