登录
首页 » Unix_Linux » pthread_matrix

pthread_matrix

于 2013-10-25 发布 文件大小:3968KB
0 144
下载积分: 1 下载次数: 3

代码说明:

  多线程pthread实现对一个给定矩阵求取卷积,并将结果保存下来(Pthread multithreading to achieve a given matrix convolution to strike, and the result is saved)

文件列表:

pthread_matrix
..............\Makefile,139,2013-04-08
..............\pthread_kernel.cpp,3014,2013-04-27
..............\pthread_kernel.cpp~,3010,2013-04-27
..............\pthread_kernel.pbs,319,2013-04-14
..............\result
..............\......\data_pthread_kernel0,207450,2013-04-27
..............\......\data_pthread_kernel1,402682,2013-04-27
..............\......\data_pthread_kernel10,669873,2013-04-27
..............\......\data_pthread_kernel11,666260,2013-04-27
..............\......\data_pthread_kernel12,663119,2013-04-27
..............\......\data_pthread_kernel13,659894,2013-04-27
..............\......\data_pthread_kernel14,656736,2013-04-27
..............\......\data_pthread_kernel15,653884,2013-04-27
..............\......\data_pthread_kernel16,651034,2013-04-27
..............\......\data_pthread_kernel17,648733,2013-04-27
..............\......\data_pthread_kernel18,646646,2013-04-27
..............\......\data_pthread_kernel19,644452,2013-04-27
..............\......\data_pthread_kernel2,554951,2013-04-27
..............\......\data_pthread_kernel3,641532,2013-04-27
..............\......\data_pthread_kernel4,674167,2013-04-27
..............\......\data_pthread_kernel5,684733,2013-04-27
..............\......\data_pthread_kernel6,685867,2013-04-27
..............\......\data_pthread_kernel7,683165,2013-04-27
..............\......\data_pthread_kernel8,678264,2013-04-27
..............\......\data_pthread_kernel9,673831,2013-04-27
..............\......\pthread_pie_exe.o1245,287,2013-04-22
..............\......\pthread_pie_exe.o1246,287,2013-04-22
..............\......\pthread_pie_exe.o1247,287,2013-04-22
..............\......\pthread_pie_exe.o1248,287,2013-04-22
..............\......\pthread_pie_exe.o1249,287,2013-04-22
..............\......\pthread_pie_exe.o1268,287,2013-04-22
..............\......\pthread_pie_exe.o1269,287,2013-04-22
..............\......\pthread_pie_exe.o1270,287,2013-04-22
..............\......\pthread_pie_exe.o1271,287,2013-04-22
..............\......\pthread_pie_exe.o1272,287,2013-04-22
..............\......\pthread_pie_exe.o1313,287,2013-04-22
..............\......\pthread_pie_exe.o1314,288,2013-04-22
..............\......\pthread_pie_exe.o1315,287,2013-04-22
..............\......\pthread_pie_exe.o1316,287,2013-04-22
..............\......\pthread_pie_exe.o1317,287,2013-04-22
..............\sample.matrix.txt,131428,2013-04-11

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 程序设导论
    适合于新手学习并行化MPI程序以及并行思想学习(This is a parallel program learning material for beginners.)
    2021-01-05 13:28:54下载
    积分:1
  • pc
    说明:  天津大学并行计算大作业代码及实验报告。 包括: 1.利用Pthread并行实现求Pi和Jacobi迭代 2.利用MPI并行实现Jacobi迭代 3.hadoop下的Mapreduce实现Wordcount算法(Tianjin University of parallel computing job code and lab reports. Include: (1) the use of parallel implementation Pthread seeking Pi and Jacobi iteration 2 use MPI parallel implementation of Jacobi iteration 3.hadoop under Mapreduce achieve Wordcount algorithm.)
    2014-05-31 23:46:24下载
    积分:1
  • 读取参数文件
    #include #define  NUMBER   4 void main( ) {    int i=1; float f0,dt,dx,dz; int mx,mz,ntmax,pml,sou_x,sou_z,rec_start,rec_end,rec_int,rec_depth; char shotID[5],record_pp[30],vp_name[30],rou_name[30],mig_name[30],mig_pyt_name[30],mig_udlf_name[40],shuoming[30]; FILE *fp,*f; /*&不合法变量*/     printf("** This program is to show the block file input & output** "); fp=fopen(
    2022-09-05 20:35:03下载
    积分:1
  • GPU上CUDA实现N-Body
    应用背景在GPU上实现N-BODY算法。N-Body模拟问题覆盖了自然科学的很多领域,从宇观的天体物理到宏观的流体动力学,直至微观的分子动力学。例如通过研究围绕着银河系的暗物质晕轮的形状和动力学特征来探索银河系形成过程,需要模拟数百万的星体和暗物质间的作用。现代生物物理学和化学中的许多研究,如细菌或植物体的光合作用膜处发生的光能向化学能的转化,染色体中DNA和蛋白质分子的描述,都需要模拟上千万的原子核分子的作用。关键技术N-Body问题的两个重要特征是: 第一点.计算规模大,因为无论是宇观的天体尺寸还是微观的分 子尺度.都包含了大量的粒子,粒子的规模大到数百万、千万。由于在 系统中任意的两个粒子问都存在着相互作用,因此商接计算粒子间的 相互作用的量级就是O(N^2); 第二点.系统是动态变化的。为了反应系统的具体变化.尤其是在微观分子结构中.要求时间步足够小。这两个特征决定了计算机模拟 时巨大的计算量。这对于任何扁性能的单台计算机来说都是一个很难突破的瓶颈.因此采用并行汁算是解决N-Body问题的必然选择。主要涉及数据划分和线程任务划分实现。
    2022-12-08 07:20:03下载
    积分:1
  • HADOOP3使用开发教程
    hadoop是apache的开源项目,开发的主要目的是为了构建可靠,可拓展scalable,分布式的系统,hadoop是一系列的子工程的总和,其中包含。 1. hadoop common:为其他项目提供基础设施 2. HDFS:分布式的文件系统 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-09-26 15:25:03下载
    积分:1
  • 视频游戏的流体模拟,第 6 部分
    差动速度算法器 这篇文章,在一系列,第六描述从根本上不同的方法计算速度从涡度,提出了在这些文章中的流体模拟的基石之一。第一篇文章总结了流体动力学 ;第二个调查流体仿真技术 ;和第三和第四次提出了涡粒子流体模拟与双向流体体之间的相互作用,在真正的时间运行。第五篇文章展示了如何获取和使用 CPU 使用率分析数据,优化,进一步并行化的代码,这样,它跑得更快。 这篇文章介绍一种求解速度从涡度的微分技术和与第 3 部分中所提出的积分 treecode 技术及其成果和业绩形成鲜明对比。泊松规划求解在这篇文章提出了一种比跑得快 treecode,但它的结果看起来不同的可能不那么令人满意。 涡旋速度,回顾 记得第二篇文章,您可以计算速度从涡度 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-02-05 03:15:32下载
    积分:1
  • cuda_lecture_1
    清华大学郑仰东CUDA教学课件1,是很好的CUDA入门材料(Tsinghua university ZhengAngDong s CUDA teaching courseware 1,a very good CUDA introductory material)
    2012-05-16 22:55:28下载
    积分:1
  • linear_elastic
    ABAQUS UMAT 线弹性模型,是二次开发最基本的例子,可供大家参考。(abaqus umat linear elastic model)
    2021-02-10 12:19:52下载
    积分:1
  • Balancing
    说明:  改文件可实现负载均衡算法,软件环境为VS2013,使用C语言。(Load balancing algorithm can be realized.)
    2020-06-01 18:52:15下载
    积分:1
  • MPI-program-design
    MPI并行程序设计,介绍了MPI应用程序的编写方法及现状介绍等等(MPI parallel programming, this paper introduces the MPI application writing method and the present situation is introduced, and so on)
    2013-08-09 12:15:21下载
    积分:1
  • 696518资源总数
  • 104353会员总数
  • 66今日下载