int myProcId=_group.myRank();
for(std::size_t i=0;i<_matrixes_st.size();i++)
{
- if(_source_proc_id_st[i]==myProcId)// && _target_proc_id_st[i]!=myProcId
+ if(_source_proc_id_st[i]==myProcId && _matrixes_st[i].size())// && _target_proc_id_st[i]!=myProcId
{
count[_target_proc_id_st[i]]=(int)_matrixes_st[i].size()+1;
szz+=_matrixes_st[i].size()+1;
offsets[i]=offsets[i-1]+count[i-1];
for(std::size_t i=0;i<_matrixes_st.size();i++)
{
- if(_source_proc_id_st[i]==myProcId)
+ if(_source_proc_id_st[i]==myProcId && _matrixes_st[i].size())
{
mcIdType start=offsets[_target_proc_id_st[i]];
mcIdType *work=bigArr+start;
std::size_t fullLgth=0;
for(std::size_t i=0;i<_matrixes_st.size();i++)
{
- if(_source_proc_id_st[i]==myProcId)
+ if(_source_proc_id_st[i]==myProcId && _matrixes_st[i].size())
{
const std::vector< SparseDoubleVec >& mat=_matrixes_st[i];
mcIdType lgthToSend=0;
fullLgth=0;
for(std::size_t i=0;i<_matrixes_st.size();i++)
{
- if(_source_proc_id_st[i]==myProcId)
+ if(_source_proc_id_st[i]==myProcId && _matrixes_st[i].size())
{
const std::vector< SparseDoubleVec >& mat=_matrixes_st[i];
for(std::vector< SparseDoubleVec >::const_iterator it1=mat.begin();it1!=mat.end();it1++)