资源简介
运用mpi实现奇偶排序,在不同的处理器之间通过消息传递完成奇偶index的数的交换,实现最终的数列排序
代码片段和文件信息
// 4005 A1
// main.cpp
// student name: Yinxian She
// student ID: 115010061
// Created by 佘胤娴 on 2018/10/15.
//use these command lines to compile ane exe the program:
//mpic++ 4005a1.cpp -o 4005a1.out
//mpiexec --oversubscribe -n 4 ./4005a1.out
#include
#include
#include
#include //cannot found? how about sys/malloc.h
#include
#include
#include
//need to set in cpp file to change the array size
int count = 10;
int data[10];
/*function:arraygener
------------------------
usage: to generate the array with size of [count];
all the elements are random generated.
why put it here?
*/
void arraygener(){
//srand((unsigned) time (NULL));
for (int i =0; i data[i] = (int)(rand()/
- 上一篇:模拟飞机票订票和退票系统的c++实现
- 下一篇:Linux jpg转bmp
相关资源
- 视频转图片(opencv)
- jsoncpp-0.y.z 代码
- 高性能计算之并行编程技术-MPI并行程
- ippicv_2017u3_win_intel64_general_20170822.zip
- 基于libevent 实现的http服务C++(myhttp
- opengl 填充图元 扫描线算法
- opencv:视频图片相互转换程序
- opengl:基于linux下雷达ppi
- 用opencv处理RTSP视频流,其中视频流的
- opengl编程开发基础
- OpenGL教室纹理映射贴图
- Opencv3中SIFT算法详解
- MFC图片操作(PRO5_PNGDlg.cpp)
- 计算电器所消耗的电能.cpp
- 滴水三期PE解析(Funtion.cpp)
- 动态联编与多态性(动态联编.cpp)
- 迪杰斯特拉算法(Dijkstra.cpp)
- ksj转opencv(USB相机图像数据转OPENCV)
- opengl移动的小车
- opengl人物设计大头儿子
- opengl人物设计博士脸
- C++OpenCV实现数字识别
- 矩阵计算器(定积分计算器.cpp)
- 利用opencv,c++画网格代码
- C++ 使用GetOpenFileName选择文件
- opencv调入显示图片做高斯模糊
- opengl调试
- opencv计算信息熵(c++代码)
- c++ 判断一个素数(判断素数.cpp)
- rsa基于openssl1.1 实现签名(rsasign.cpp)
评论
共有 条评论