网站首页 站内搜索

搜索结果

查询Tags标签: MPI,共有 21条记录
  • 基于mbedtls开源库国密算法的使用

    基础知识 (1)公钥:在代码编程中,公钥是使用64个字节来存储的。 (2)私钥:在代码编程中,公钥是使用32个字节来存储的。 对应的代码具体实现 (1)mbedtls sm2环境 在 mbedtls 中 sm2 环境是用结构体 sm2_context 结构体来表示的,具体结构体如下所示: typedef stru…

    2022/3/1 1:22:18 人评论 次浏览
  • 并行程序

    装载地址:https://www.1024sou.com/article/566302.html 一、大数据时代的现状 据统计,YouTube上每分钟就会增加500多小时的视频,面对如此海量的数据,如何高效的存储与处理它们就成了当前最大的挑战。但在这个对硬件要求越来越高的时代,CPU却似乎并不这么给力了。自2…

    2021/12/14 9:18:08 人评论 次浏览
  • 并行程序

    装载地址:https://www.1024sou.com/article/566302.html 一、大数据时代的现状 据统计,YouTube上每分钟就会增加500多小时的视频,面对如此海量的数据,如何高效的存储与处理它们就成了当前最大的挑战。但在这个对硬件要求越来越高的时代,CPU却似乎并不这么给力了。自2…

    2021/12/14 9:18:08 人评论 次浏览
  • [源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组

    [源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组 目录[源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组0x00 摘要0x01 回顾1.1 基础概念1.2 初始化进程组0x02 概念与设计2.1 功能2.2 本质0x03 使用0x04 构建4.1 Python 世界4.…

    2021/11/21 7:13:07 人评论 次浏览
  • [源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组

    [源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组 目录[源码解析] PyTorch 分布式(7) ----- DistributedDataParallel 之进程组0x00 摘要0x01 回顾1.1 基础概念1.2 初始化进程组0x02 概念与设计2.1 功能2.2 本质0x03 使用0x04 构建4.1 Python 世界4.…

    2021/11/21 7:13:07 人评论 次浏览
  • Windows MPI安装包

    ​​​​​​​​​​​​​​配置教程: Windows10+VisualStudio2019配置MPI 附在VS中直接运行MPI程序的方法_JackFishxxx的博客-CSDN博客 下载包:链接:https://pan.baidu.com/s/1vO8fuvAjvTE1YyDePbG9YQ 提取码:wj02

    2021/11/3 7:12:54 人评论 次浏览
  • Windows MPI安装包

    ​​​​​​​​​​​​​​配置教程: Windows10+VisualStudio2019配置MPI 附在VS中直接运行MPI程序的方法_JackFishxxx的博客-CSDN博客 下载包:链接:https://pan.baidu.com/s/1vO8fuvAjvTE1YyDePbG9YQ 提取码:wj02

    2021/11/3 7:12:54 人评论 次浏览
  • gfortran + msmpi 在windows上编译并行程序

    近期在构建一个并行程序时,踩了好几个坑,现在记录下来,用于以后查阅,如有错误的地方,请指正。 由于需要构建在windows下运行的程序,所以使用mingw进行编译。 在make过程中,报出以下错误: function int_ptr kind in initialization expression at (1) must be an i…

    2021/10/3 7:10:37 人评论 次浏览
  • gfortran + msmpi 在windows上编译并行程序

    近期在构建一个并行程序时,踩了好几个坑,现在记录下来,用于以后查阅,如有错误的地方,请指正。 由于需要构建在windows下运行的程序,所以使用mingw进行编译。 在make过程中,报出以下错误: function int_ptr kind in initialization expression at (1) must be an i…

    2021/10/3 7:10:37 人评论 次浏览
  • Linux MPI编译运行

    源文件 // mpi_AxB.c#include "mpi.h" #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h>const int rows = 10; //the rows of matrix const int cols = 7; //the cols of matrixint main(int arg…

    2021/8/26 7:07:17 人评论 次浏览
  • Linux MPI编译运行

    源文件 // mpi_AxB.c#include "mpi.h" #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h>const int rows = 10; //the rows of matrix const int cols = 7; //the cols of matrixint main(int arg…

    2021/8/26 7:07:17 人评论 次浏览
  • Linux MPI+CUDA混编

    Linux MPI+CUDA混编 源文件(main.cpp pi_cu.cu) main.cpp #include <mpi.h> #include <stdio.h> #include <stdlib.h> #define NBIN 10000000 // Number of bins #define NUM_BLOCK 13 // Number of thread blocks #define NUM_THREAD 192 // Number …

    2021/8/26 7:07:17 人评论 次浏览
  • Linux MPI+CUDA混编

    Linux MPI+CUDA混编 源文件(main.cpp pi_cu.cu) main.cpp #include <mpi.h> #include <stdio.h> #include <stdlib.h> #define NBIN 10000000 // Number of bins #define NUM_BLOCK 13 // Number of thread blocks #define NUM_THREAD 192 // Number …

    2021/8/26 7:07:17 人评论 次浏览
  • Linux MPI+HIP混编

    Linux MPI+HIP混编 源文件: pi_hip.cpp #include<stdio.h> #include<stdlib.h> #include <hip/hip_runtime.h>#define NBIN 10000000 // Number of bins #define NUM_BLOCK 13 // Number of thread blocks #define NUM_THREAD 192 // Number of threa…

    2021/8/26 7:07:16 人评论 次浏览
  • Linux MPI+HIP混编

    Linux MPI+HIP混编 源文件: pi_hip.cpp #include<stdio.h> #include<stdlib.h> #include <hip/hip_runtime.h>#define NBIN 10000000 // Number of bins #define NUM_BLOCK 13 // Number of thread blocks #define NUM_THREAD 192 // Number of threa…

    2021/8/26 7:07:16 人评论 次浏览
共21记录«上一页12下一页»
扫一扫关注最新编程教程