Science&Enigneering

MSMPI visual studio 2019 세팅

##- 2019. 8. 19. 17:11
728x90

참고: https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi

 

Microsoft MPI - Message Passing Interface

Microsoft MPI In this article --> Microsoft MPI (MS-MPI) is a Microsoft implementation of the Message Passing Interface standard for developing and running parallel applications on the Windows platform. MS-MPI offers several benefits: Ease of porting exist

docs.microsoft.com

 

아래 링크 들어가서 msi(개발 SDK 포함)랑 exe(MPI실행용 mpiexe 포함) 모두 다운, 설치.

https://www.microsoft.com/en-us/download/details.aspx?id=57467

 

Microsoft MPI v10.0

Stand-alone, redistributable and SDK installers for Microsoft MPI

www.microsoft.com

VS2019에서 프로젝트 만든 다음에....

 

Project-Property

1. C/C++-추가포함 디렉토리: $(MSMPI_INC);$(MSMPI_INC)\x64 추가

2. 링커-입력: $(MSMPI_LIB32)\msmpi.lib;

 

VS에서 Command prompt 쉽게 띄우려면....

도구-외부도구-추가

1. 제목: Command prompt

2. 명령: %comspec%

3. 초기 디렉토리: 대상디렉토리

 

 

300x250