2020-10-16 14:31:47 +08:00
|
|
|
if (ENABLE_GITEE)
|
|
|
|
set(REQ_URL "https://gitee.com/mirrors/ompi/repository/archive/v4.0.3.tar.gz")
|
|
|
|
set(MD5 "f76abc92ae870feff186d790f40ae762")
|
|
|
|
else()
|
|
|
|
set(REQ_URL "https://github.com/open-mpi/ompi/archive/v4.0.3.tar.gz")
|
|
|
|
set(MD5 "86cb724e8fe71741ad3be4e7927928a2")
|
|
|
|
endif ()
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
set(ompi_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2")
|
|
|
|
mindspore_add_pkg(ompi
|
2020-10-12 19:15:47 +08:00
|
|
|
VER 4.0.3
|
2020-03-27 14:49:12 +08:00
|
|
|
LIBS mpi
|
2020-10-16 14:31:47 +08:00
|
|
|
URL ${REQ_URL}
|
|
|
|
MD5 ${MD5}
|
2020-03-27 14:49:12 +08:00
|
|
|
PRE_CONFIGURE_COMMAND ./autogen.pl
|
|
|
|
CONFIGURE_COMMAND ./configure)
|
|
|
|
include_directories(${ompi_INC})
|
|
|
|
add_library(mindspore::ompi ALIAS ompi::mpi)
|