Changeset 24768
- Timestamp:
- 05/01/20 15:30:19 (5 years ago)
- Location:
- issm/trunk-jpl/src/c/toolkits/mpi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/toolkits/mpi/issmmpi.cpp
r24767 r24768 1 1 /* \file issmmpi.cpp 2 * \brief: implementation of all the mpi wrappers that ISSM requires. The goal is to control 2 * \brief: implementation of all the mpi wrappers that ISSM requires. The goal is to control 3 3 * which MPI layer we are using at compile time: the standard mpi, the autodiff mpi or no mpi at all. 4 4 */ … … 14 14 15 15 #include "./issmmpi.h" 16 MpiTypes* mpiTypes; 16 17 #include "../../shared/Numerics/types.h" 17 18 … … 20 21 size_t sizeHelper(ISSM_MPI_Datatype type) { /*{{{*/ 21 22 22 switch(type) { 23 case ISSM_MPI_CHAR: 23 switch(type) { 24 case ISSM_MPI_CHAR: 24 25 return sizeof(char); 25 26 break; 26 case ISSM_MPI_DOUBLE: 27 case ISSM_MPI_DOUBLE: 27 28 return sizeof(double); 28 29 break; 29 case ISSM_MPI_INT: 30 case ISSM_MPI_INT: 30 31 return sizeof(int); 31 32 break; 32 default: 33 default: 33 34 assert(0); 34 35 break; … … 61 62 #else 62 63 # ifdef _HAVE_AD_ 63 if (sendtype==ISSM_MPI_DOUBLE) { 64 if (sendtype==ISSM_MPI_DOUBLE) { 64 65 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 65 66 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 66 67 for(int i=0;i<sendcount;++i) activeRecvBuf[i]=activeSendBuf[i]; 67 68 } 68 else 69 else 69 70 # endif 70 71 memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*sendcount); … … 96 97 # endif 97 98 #else 98 assert(sendcount==recvcounts[0]); // we handle only identical representations 99 assert(sendcount==recvcounts[0]); // we handle only identical representations 99 100 # ifdef _HAVE_AD_ 100 if (sendtype==ISSM_MPI_DOUBLE) { 101 if (sendtype==ISSM_MPI_DOUBLE) { 101 102 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 102 103 IssmDouble* activeRecvBuf=(IssmDouble*)(recvbuf)+displs[0]; 103 104 for(int i=0;i<sendcount;++i) activeRecvBuf[i]=activeSendBuf[i]; 104 105 } 105 else 106 else 106 107 # endif 107 108 memcpy((char*)recvbuf+(sizeHelper(recvtype)*displs[0]),sendbuf,sizeHelper(sendtype)*sendcount); … … 130 131 #else 131 132 #ifdef _HAVE_AD_ 132 if (datatype==ISSM_MPI_DOUBLE) { 133 if (datatype==ISSM_MPI_DOUBLE) { 133 134 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 134 135 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 135 136 for(int i=0;i<count;++i) activeRecvBuf[i]=activeSendBuf[i]; 136 137 } 137 else 138 else 138 139 # endif 139 140 memcpy(recvbuf,sendbuf,sizeHelper(datatype)*count); … … 147 148 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_) 148 149 rc=AMPI_Barrier(comm); 149 # else 150 # else 150 151 rc=MPI_Barrier(comm); 151 152 # endif … … 160 161 #ifdef _HAVE_MPI_ 161 162 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_) 162 rc=AMPI_Bcast(buffer, 163 rc=AMPI_Bcast(buffer, 163 164 count, 164 165 datatype, … … 166 167 comm); 167 168 # else 168 rc=MPI_Bcast(buffer, 169 rc=MPI_Bcast(buffer, 169 170 count, 170 171 datatype, … … 172 173 comm); 173 174 # endif 174 #else 175 // nothing to be done here 175 #else 176 // nothing to be done here 176 177 #endif 177 178 return rc; … … 183 184 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_) 184 185 assert(0); // to be implemented 185 # else 186 # else 186 187 rc=MPI_Comm_free(comm); 187 188 # endif … … 261 262 #else 262 263 # ifdef _HAVE_AD_ 263 if (sendtype==ISSM_MPI_DOUBLE) { 264 if (sendtype==ISSM_MPI_DOUBLE) { 264 265 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 265 266 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 266 267 for(int i=0;i<sendcnt;++i) activeRecvBuf[i]=activeSendBuf[i]; 267 268 } 268 else 269 else 269 270 # endif 270 271 memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*sendcnt); … … 299 300 # endif 300 301 #else 301 assert(sendcnt==recvcnts[0]); // we handle only identical representations 302 assert(sendcnt==recvcnts[0]); // we handle only identical representations 302 303 #ifdef _HAVE_AD_ 303 if (sendtype==ISSM_MPI_DOUBLE) { 304 if (sendtype==ISSM_MPI_DOUBLE) { 304 305 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 305 306 IssmDouble* activeRecvBuf=(IssmDouble*)(recvbuf)+displs[0]; 306 307 for(int i=0;i<sendcnt;++i) activeRecvBuf[i]=activeSendBuf[i]; 307 308 } 308 else 309 else 309 310 # endif 310 311 memcpy((char*)recvbuf+(sizeHelper(recvtype)*displs[0]),sendbuf,sizeHelper(sendtype)*sendcnt); … … 340 341 #ifdef _HAVE_MPI_ 341 342 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_) 342 rc=AMPI_Recv(buf, 343 rc=AMPI_Recv(buf, 343 344 count, 344 345 datatype, … … 351 352 status); 352 353 # else 353 rc=MPI_Recv(buf, 354 rc=MPI_Recv(buf, 354 355 count, 355 356 datatype, … … 359 360 status); 360 361 # endif 361 #else 362 // nothing to be done here 363 // as long as nobody tries to do anything with 'status' 362 #else 363 // nothing to be done here 364 // as long as nobody tries to do anything with 'status' 364 365 // we won't do anything to it here either 365 366 #endif … … 389 390 #else 390 391 # ifdef _HAVE_AD_ 391 if (datatype==ISSM_MPI_DOUBLE) { 392 if (datatype==ISSM_MPI_DOUBLE) { 392 393 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 393 394 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 394 395 for(int i=0;i<count;++i) activeRecvBuf[i]=activeSendBuf[i]; 395 396 } 396 else 397 else 397 398 # endif 398 399 memcpy(recvbuf,sendbuf,sizeHelper(datatype)*count); … … 426 427 #else 427 428 # ifdef _HAVE_AD_ 428 if (sendtype==ISSM_MPI_DOUBLE) { 429 if (sendtype==ISSM_MPI_DOUBLE) { 429 430 IssmDouble* activeSendBuf=(IssmDouble*)sendbuf; 430 431 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 431 432 for(int i=0;i<recvcnt;++i) activeRecvBuf[i]=activeSendBuf[i]; 432 433 } 433 else 434 else 434 435 # endif 435 436 memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*recvcnt); … … 464 465 # endif 465 466 #else 466 assert(sendcnts[0]==recvcnt); // we handle only identical representations 467 assert(sendcnts[0]==recvcnt); // we handle only identical representations 467 468 # ifdef _HAVE_AD_ 468 if (sendtype==ISSM_MPI_DOUBLE) { 469 if (sendtype==ISSM_MPI_DOUBLE) { 469 470 IssmDouble* activeSendBuf=(IssmDouble*)(sendbuf)+displs[0]; 470 471 IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf; 471 472 for(int i=0;i<recvcnt;++i) activeRecvBuf[i]=activeSendBuf[i]; 472 473 } 473 else 474 else 474 475 # endif 475 476 memcpy(recvbuf,(char*)sendbuf+(sizeHelper(sendtype)*displs[0]),sizeHelper(sendtype)*recvcnt); … … 482 483 #ifdef _HAVE_MPI_ 483 484 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_) 484 rc=AMPI_Send(buf, 485 rc=AMPI_Send(buf, 485 486 count, 486 487 datatype, … … 492 493 comm); 493 494 # else 494 rc=MPI_Send(buf, 495 rc=MPI_Send(buf, 495 496 count, 496 497 datatype, … … 499 500 comm); 500 501 # endif 501 #else 502 // nothing to be done here 502 #else 503 // nothing to be done here 503 504 #endif 504 505 return rc; … … 508 509 #ifdef _HAVE_MPI_ 509 510 return MPI_Wtime(); 510 #else 511 #else 511 512 assert(0); // to be implemented 512 513 return 0.0; … … 530 531 rc=MPI_Comm_split(comm, color, key, newcomm); 531 532 #endif 532 #else 533 // nothing to be done here 533 #else 534 // nothing to be done here 534 535 #endif 535 536 return rc; … … 544 545 rc=MPI_Intercomm_create(comm,local_leader,peer_comm,remote_leader,tag,newintercomm); 545 546 #endif 546 #else 547 // nothing to be done here 547 #else 548 // nothing to be done here 548 549 #endif 549 550 return rc; -
issm/trunk-jpl/src/c/toolkits/mpi/issmmpi.h
r24767 r24768 34 34 #include <codi/externals/codiMpiTypes.hpp> 35 35 using MpiTypes = CoDiMpiTypes<IssmDouble>; 36 MpiTypes* mpiTypes;36 extern MpiTypes* mpiTypes; 37 37 #define AMPI_ADOUBLE mpiTypes->MPI_TYPE 38 38 #elif defined(_HAVE_ADOLC_)
Note:
See TracChangeset
for help on using the changeset viewer.