/dports/science/plumed/plumed2-2.7.2/regtest/basic/rt-make-2/ |
H A D | main.cpp | 63 if(comm.Get_rank()==0) req=comm.Isend(&a[0],a.size(),1,77); in run() 64 if(comm.Get_rank()==1) req=comm.Isend(a,2,77); in run() 65 if(comm.Get_rank()==2) req=comm.Isend(a,0,77); in run() 93 if(comm.Get_rank()==0) req=comm.Isend(&vec[0][0],3*vec.size(),1,78); in run() 94 if(comm.Get_rank()==1) req=comm.Isend(&vec[0],vec.size(),2,78); in run() 95 if(comm.Get_rank()==2) req=comm.Isend(vec,0,78); in run() 108 if(comm.Get_rank()==0) req=comm.Isend(&ten[0][0][0],9*ten.size(),1,78); in run() 109 if(comm.Get_rank()==1) req=comm.Isend(&ten[0][0][0],9*ten.size(),2,78); in run() 124 req=comm.Isend(stringsend,1,80); in run() 130 req=comm.Isend(stringsend,2,80); in run() [all …]
|
/dports/math/freefem++/FreeFem-sources-4.6/unit/parallel/ |
H A D | IsendIrecv.edp | 5 if (!mpirank) cout << functionDEFINITION << "Isend and I recv" << endl; 27 Isend(processor(1,rq),16.); 50 Isend(processor(1, rq), A); 74 Isend(processor(1, rq), toSendComplex); 92 Isend(processor(1, rq), toSendArrayInt); 111 Isend(processor(1, rq), toSendArrayRealInt); 131 Isend(processor(1, rq), toSendArrayComplexInt); 151 Isend(processor(1, rq), toSendMesh); 170 Isend(processor(1, rq), toSendMesh3); 192 Isend(processor(1, rq), toSendMatrix);
|
H A D | mpiWait.edp | 11 Isend(processor(1,rq),16.);
|
H A D | mpiWaitAny.edp | 12 Isend(processor(1,rq[i]),16.);
|
/dports/japanese/gawk/gawk-3.0.6/pc/ |
H A D | xargs32.c | 46 #define Isend(c) ((c) == '\0' || ((xargs_rule & XARGS_DOTBREAK) && (c) == '.')) macro 207 if (Isend(*text)) in glob_match() 215 if (Isend(*pattern)) in glob_match() 235 if (Isend(*text)) in glob_match() 242 while ((include = glob_match(text, pattern + 1)) == 0 && !Isend(*text)) { in glob_match() 248 if (Isend(*text)) in glob_match() 258 if (Isend(*pattern)) in glob_match() 264 if (Isend(*pattern)) in glob_match() 282 if (!Isend(*text)) in glob_match()
|
H A D | xargs.c | 39 #define Isend(c) ((c) == '\0' || ((xargs_rule & XARGS_DOTBREAK) && (c) == '.')) macro 469 if (Isend(*text)) in glob_match() 477 if (Isend(*pattern)) in glob_match() 497 if (Isend(*text)) in glob_match() 504 while ((include = glob_match(text, pattern + 1)) == 0 && !Isend(*text)) { in glob_match() 510 if (Isend(*text)) in glob_match() 520 if (Isend(*pattern)) in glob_match() 526 if (Isend(*pattern)) in glob_match() 544 if (!Isend(*text)) in glob_match()
|
/dports/misc/adios2/ADIOS2-2.7.1/source/adios2/toolkit/aggregator/mpi/ |
H A D | MPIChain.cpp | 60 m_Comm.Isend(&sendBuffer.m_Position, 1, m_Rank - 1, 0, in IExchange() 67 requests.m_SendData = m_Comm.Isend( in IExchange() 134 m_Comm.Isend(&m_ExchangeAbsolutePosition, 1, destination, 0, in IExchangeAbsolutePosition() 230 sendRequest = m_Comm.Isend( in HandshakeLinks()
|
/dports/net/py-mpi4py/mpi4py-3.1.3/test/ |
H A D | test_p2p_buf_matched.py | 66 s = comm.Isend(buf, comm.rank, 0) 83 sr = comm.Isend(sbuf.as_mpi(), 0, 0) 97 r = comm.Isend(sbuf.as_mpi(), 0, 0) 107 r = comm.Isend(sbuf.as_mpi(), 0, 0) 118 r = comm.Isend(sbuf.as_mpi(), 0, 0)
|
H A D | test_msgzero.py | 15 r1 = comm.Isend(self.null_b, comm.rank)
|
/dports/science/madness/madness-ebb3fd7/src/madness/world/ |
H A D | worldgop.cc | 99 req0 = world_.mpi.Isend(&sum, sizeof(sum), MPI_BYTE, parent, gfence_tag); in fence() 157 if (child0 != -1) req0 = world_.mpi.Isend(buf, nbyte, MPI_BYTE, child0, bcast_tag); in broadcast() 158 if (child1 != -1) req1 = world_.mpi.Isend(buf, nbyte, MPI_BYTE, child1, bcast_tag); in broadcast()
|
H A D | worldmpi.h | 290 using SafeMPI::Intracomm::Isend; 308 Isend(const T& datum, int dest, int tag=SafeMPI::DEFAULT_SEND_RECV_TAG) const { 309 return SafeMPI::Intracomm::Isend(&datum, sizeof(T), MPI_BYTE, dest, tag);
|
/dports/science/plumed/plumed2-2.7.2/src/tools/ |
H A D | Communicator.h | 207 Request Isend(ConstData,int,int); 209 …template <class T> Request Isend(const T*buf,int count,int source,int tag) {return Isend(ConstData… in Isend() function 211 …template <class T> Request Isend(const T&buf,int source,int tag) {return Isend(ConstData(buf),sour… in Isend() function
|
/dports/net/py-mpi4py/mpi4py-3.1.3/demo/ |
H A D | osu_bibw.py | 60 send_request[j] = comm.Isend(s_msg, 1, 100) 69 send_request[j] = comm.Isend(s_msg, 0, 10)
|
H A D | osu_bw.py | 57 requests[j] = comm.Isend(s_msg, 1, 100)
|
/dports/science/libgeodecomp/libgeodecomp-0.4.0/tools/typemapgenerator/test/fixtures/src/ |
H A D | main.cpp | 24 requests[0] = MPI::COMM_WORLD.Isend(&alphas, NUM_CARS, MPI::CAR, 0, tag); in main()
|
/dports/science/libgeodecomp/libgeodecomp-0.4.0/tools/typemapgenerator/sample/src/ |
H A D | main.cpp | 24 requests[0] = MPI::COMM_WORLD.Isend(&alphas, NUM_CARS, MPI::CAR, 0, tag); in main()
|
/dports/net/py-mpi4py/mpi4py-3.1.3/demo/vampirtrace/ |
H A D | ring.py | 35 comm.Isend(a1, dest=dest),
|
/dports/net/py-mpi4py/mpi4py-3.1.3/demo/mpe-logging/ |
H A D | ring.py | 34 comm.Isend(a1, dest=dest),
|
/dports/science/plumed/plumed2-2.7.2/src/core/ |
H A D | GREX.cpp | 204 Communicator::Request req=intercomm.Isend(buffer,partner,1066); in calculate() 218 Communicator::Request req=intercomm.Isend(localDeltaBias,partner,1067); in calculate()
|
/dports/devel/py-ipyparallel/ipyparallel-6.3.0/examples/wave2D/ |
H A D | RectPartitioner.py | 224 mpi.Isend(self.out_lower_buffers[0], lower_x_neigh) 235 mpi.Isend(self.out_upper_buffers[0], upper_x_neigh) 252 mpi.Isend(self.out_lower_buffers[1], lower_y_neigh) 263 mpi.Isend(self.out_upper_buffers[1], upper_y_neigh)
|
/dports/math/freefem++/FreeFem-sources-4.6/examples/mpi/ |
H A D | essai.edp | 46 Isend(processor(1,rq),16.); 98 if (mpirank==1) Isend(processor(0,mpiCommWorld,rr),A);
|
/dports/math/scilab/scilab-6.1.1/scilab/modules/mpi/tests/unit_tests/ |
H A D | mpi_isend_string.tst | 43 // Isend back to the master
|
H A D | mpi_isend_double.tst | 43 // Isend back to the master
|
/dports/math/mfem/mfem-4.3/general/ |
H A D | communication.hpp | 353 void Isend(int rank, MPI_Comm comm) in Isend() function 376 it->second.Isend(it->first, comm); in IsendAll()
|
/dports/math/freefem++/FreeFem-sources-4.6/idp/ |
H A D | ffddm_geneoCS.idp | 100 …Isend(processor(pr#prfegeneo#prmesh#arrayIntersection[j],pr#prfegeneo#prmesh#commddm,rq[j*2]),msnd… 152 Isend(processor(0,pr#prfe#prmesh#mpicomm,rqt),pr#prfegeneo#prmesh#numberIntersection); 169 Isend(processor(0,pr#prfe#prmesh#mpicomm,rqt),pr#prfegeneo#prmesh#arrayIntersection); 193 Isend(processor(0,pr#prfe#prmesh#mpicomm,rqt),Eii); 217 Isend(processor(0,pr#prfe#prmesh#mpicomm,rqt[i]),Eij[i]); 299 …Isend(processor(pr#prfe#prmesh#insuperwithoverlap[i]+pr#prfe#prmesh#pCS*pr#prfe#prmesh#exclude,pr#… 300 …Isend(processor(pr#prfe#prmesh#insuperwithoverlap[i]+pr#prfe#prmesh#pCS*pr#prfe#prmesh#exclude,pr#… 354 …Isend(processor(pr#prfe#prmesh#rankofsuper(isuper),pr#prfe#prmesh#mpicomm,rqt[cpt++]),neighbors[is… 355 …Isend(processor(pr#prfe#prmesh#rankofsuper(isuper),pr#prfe#prmesh#mpicomm,rqt[cpt++]),neighbors[is… 396 Isend(processor(pr#prfe#prmesh#rankofsuper(isuper),pr#prfe#prmesh#mpicomm,rqs[cpt++]),Eii); [all …]
|