Windows 中使用 VS Code 编译 MPI 和 OpenMP 程序

mpi

win 安装mpi

Win10下Microsoft MPI(MSMPI)的下载安装 - 知乎 (zhihu.com)

(34条消息) Dev配置MPI运行环境(msmpi)和OpenMP环境(运行通过)_devc++ mpi配置_一点年羊的博客-CSDN博客

#命令行运行启动多进程,需要进入hello.exe所在目录才能执行,否则会找不到程序
mpiexec -n 4 hello.exe

ubuntu 安装mpi

(39条消息) ubuntu下mpich的安装与使用_乌班图 可执行程序cpi_Wu_uuuu的博客-CSDN博客

sudo apt-get install mpich
#检查安装位置
which mpicc

测试

#编译
mpicc hello.c -o hello
#运行
mpirun -np 4 ./hello
#include "mpi.h"
#include <stdio.h>

int main (int argc, char **argv)
{
    int myid, numprocs;
    MPI_Init (&argc, &argv);
    MPI_Comm_rank (MPI_COMM_WORLD, &myid);
    MPI_Comm_size (MPI_COMM_WORLD, &numprocs);
    printf ("Hello World! Process %d of %d\n", myid, numprocs);
    MPI_Finalize ();
    return 0;
}

openmp

Ubuntu 安装openmp

检查gcc版本:gcc --version (GCC从4.2.0版本开始支持OpenMP),如果没有gcc,先安装gcc

sudo apt install gcc

安装OpenMP

sudo apt install libomp-dev

测试

编译和运行程序:使用编译器编译 OpenMP 程序,并在命令行中使用“-fopenmp”选项启用 OpenMP 支持,例如:

#编译
gcc -fopenmp -o program program.c 
#运行
./program
使用export命令:可以使用export命令在当前会话中设置环境变量
其中,4代表您想要使用的线程数,可以根据需要进行修改。
export OMP_NUM_THREADS=4

#include <omp.h>
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv) {
	int nthreads, tid;

	/* Fork a team of threads giving them their own copies of variables */
	#pragma omp parallel private(nthreads, tid)
	{

		/* Obtain thread number */
		tid = omp_get_thread_num();
		printf("Hello World from thread = %d\n", tid);

		/* Only master thread does this */
		if (tid == 0) {
			nthreads = omp_get_num_threads();
			printf("Number of threads = %d\n", nthreads);
		}

	} /* All threads join master thread and disband */
	return 0;
}

Snipaste_2023-04-01_15-48-23

win下输出
注:我的电脑默认是8个线程,不同的电脑运行结果不同,就算是同一部电脑每次运行的结果也可能不同(4个线程并行执行,没有确定的先后顺序)

Hello World from thread = 4
Hello World from thread = 1
Hello World from thread = 0
Number of threads = 8
Hello World from thread = 5
Hello World from thread = 6
Hello World from thread = 3
Hello World from thread = 7
Hello World from thread = 2

指定线程数

omp_set_num_threads(16);
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv) {
	int nthreads, tid;

	/* Fork a team of threads giving them their own copies of variables */
    omp_set_num_threads(16);
	#pragma omp parallel private(nthreads, tid)
	{

		/* Obtain thread number */
		tid = omp_get_thread_num();
		printf("Hello World from thread = %d\n", tid);

		/* Only master thread does this */
		if (tid == 0) {
			nthreads = omp_get_num_threads();
			printf("Number of threads = %d\n", nthreads);
		}

	} /* All threads join master thread and disband */
	return 0;
}

VScode 配置mpi和openmp运行环境

【中英字幕】Windows 中使用 VS Code 编译 MPI 和 OpenMP 程序_哔哩哔哩_bilibili

前提已经安装好msmpi

Snipaste_2023-04-03_19-06-25

.vscode目录下文件

c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**", 
                "${MSMPI_INC}"],//添加路径
            "defines": ["_DEBUG", "UNICODE", "_UNICODE"],
            "compilerPath": "D:\\MyApps\\MinGW64\\bin\\gcc.exe",
            "cStandard": "c17",
            "cppStandard": "gnu++14",
            "intelliSenseMode": "windows-gcc-x64"
        }
    ],
    "version": 4
}

launch.json

{
    // 使用 IntelliSense 了解相关属性。
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "g++.exe - 生成和调试活动文件",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "D:\\MyApps\\MinGW64\\bin\\gdb.exe",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "C/C++: g++.exe 生成活动文件"
        }
    ]
}

tasks.json

{
  "tasks": [
    {
      "type": "cppbuild",
      "label": "C/C++: g++.exe 生成活动文件",
      "command": "D:\\MyApps\\MinGW64\\bin\\g++.exe",
      "args": [
        "-fdiagnostics-color=always",
        "-g",
        "${file}",
        "-fopenmp", //编译openmp
        "-o",
        "${fileDirname}\\${fileBasenameNoExtension}.exe"
      ],
      "options": {
        "cwd": "${fileDirname}"
      },
      "problemMatcher": ["$gcc"],
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "detail": "调试器生成的任务。"
    }
  ],
  "version": "2.0.0"
}


settings.json

{
  "files.associations": {
    "vector": "cpp",
    "iostream": "cpp"
  },
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    // "**/.vscode": true,
    "**/*.exe": true
  }
}

要在VS Code配置MPI(消息传递接口),需要以下步骤: 1. 安装VS Code:首先,确保已在计算机上安装了VS Code。可以从VS Code官方网站(https://code.visualstudio.com/)下载适用于操作系统的安装程序,并按照指示进行安装。 2. 安装MPI库:在配置MPI之前,需要确保计算机上已安装MPI库。可以选择MPICH、Open MPI等常见的MPI库。根据操作系统和环境,可以在官方网站或使用包管理器安装。 3. 安装VS Code插件:在VS Code,可以安装适用于MPI编程的插件,如"VSCode MPI"或"MPI for VS Code"。打开VS Code,点击左侧的扩展图标,在搜索栏搜索并安装所需插件,然后重新启动VS Code。 4. 创建MPI项目:在VS Code,打开一个新的工作区,点击文件 -> 新建文件夹,选择一个路径并创建新的文件夹。然后,点击文件 -> 打开文件夹,选择刚创建的文件夹。 5. 编写MPI代码:在VS Code,可以创建一个新的MPI源代码文件,例如"main.c"或者"program.c"。在文件编写MPI程序的代码,包括进程的创建、通信和同步等等。 6. 配置运行环境:在VS Code,点击"调试"选项卡,然后点击左侧的齿轮图标,选择"启动配置"。在选择配置文件的下拉菜单,选择"MPI"作为运行环境。根据具体的MPI库和编译器,可以在"launch.json"文件设置相关的配置选项,如MPI执行命令、进程数量等等。 7. 运行MPI程序:保存代码文件后,可以按下F5键或点击调试工具栏的"开始调试"按钮来运行MPI程序VS Code将启动MPI环境,并执行代码。 配置完成后,可以使用VS Code作为主要的MPI开发环境,进行编写、调试和运行MPI程序。这样可以提高编程效率和代码质量,并更好地利用MPI并行计算的功能。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ROJS

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值