搜索资源列表
multi_pi_matrix
- lab1为多线程计算圆周率的程序 lab2为多线程计算矩阵乘法的程序 有实验报告和说明文档
qiupai
- 利用积分法进行多线程计算圆周率pai的编程,分别有二、三、四个线程
真正实现多线程进度条
- 多线程计算,显示进度条
Pthread-to-caculate-PI 多线程计算π
- 并行计算课程实验,多线程计算π,采用了加锁法以及数组暂存解决数据同步问题。-Experimental parallel computing course, multi-threaded computing π, using an array of temporary lock method and solve the data synchronization.
并行计算课的实验
- 并行计算课的实验,多线程计算π,使用了两种方法实现,希望大家有所帮助。-Experimental parallel computing class, multi-threaded calculation of π, using the two methods, and the hope to help.
Parallel_Computing
- 并行计算实验.多线程计算pi,MPI实现Jacobi迭代,3PCF多线程实现.附报告.-Parallel experiment 3. Multithreaded computing pi, MPI implementation Jacobi iteration, 3PCF Multithread. Attached report.
test.cpp.tar
- linux多线程矩阵相乘(C++) 采用多线程技术,对于每行每列的计算都进行了相应的线程操作。-linux multi-threaded matrix multiply (C++)
socket
- 计算机网络编程,多线程,多进程,相互之间传递信息-Computer network programming, multi-threaded, multi-process and transmit information between
fibnum
- 这个程序是一个Win32程序,计算Fibonacci斐波纳契数列(一种整数数列, 其中每数等于前面两数之和)。其定义是f(1) = 1,f(2) = 2,并且当n>2时, f(n) = f(n-1) + f(n-2)。源代码种给出了三种计算方法。第一种方法用递归,第二种方法用大数组,第三种方法用小数组。此外,这个程序还具备多线程特性,所以在运算时可以做其它操作。代码用到了以前创建的Win32类。测试为发现bug和内存溢出。--Calculate Fibonacci value.
ExperimentsOfParallelAlgorithms
- 并行计算实验程序,包括多线程模拟并行、并行计算的数据结构、并行合并算法和链表、堆栈等的操作,等等。-Experimental procedures for parallel computing, including multi-threaded parallel simulation, parallel computing data structures, parallel algorithms and list the merger, the operation of the stack an
openmp
- 基于OPENMP的并行算法,通过设置不同的线程数来验证多线程对并行计算速度提高的贡献-OPENMP-based parallel algorithm, by setting a different number of threads to validate the multi-threaded parallel computing speed of the contribution of
ParallelTest
- Visual Studio 2010加大了对并行运算的支持。微软正在使得尽量大的范围内的开发者都能高效而简便地进行并行计算的开发,不管他使用的是非托管代码还是.NET Framework。从而将开发者从繁琐而复杂的多线程开发中解放出来,将更多的精力放到业务逻辑上。 附件提供了一些.NET4并行计算的基本示例.-Some C# Demos for .NET4 Parrel including PLINQ.
JAVA 浏览器
- 1. 使用Java语言进行编程; 2. 具有可视化的GUI图形界面,能够直观的进行显示; 3. 自己开发的MiniIE客户端软件,能够解析自己定义的MiniHTML,进行页面的显示(使用JDIC); 4. 自己开发的MiniApache服务器软件,能够使用多线程接受多个客户端的多次连接,返回MiniHTML代码;并且具有日志功能,能够记录每次连接的客户端IP和接入时间; 特色附加功能: 1. 支持HTML的排版标签,如<table>、<td>、<tr>
Timer多线程 时钟 V2.0
- 我在MATLAB中只发现Timer函数能实现简单的多线程计算,本程序运用Timer,实现一个时钟的秒针走动的效果。(I only found Timer function to achieve simple multi-threaded calculation in the MATLAB. This program used Timer to simulate a clock moving effect.)
pthread
- 实现并行计算面积问题,并行计算多线程问题,研究生一年级大作业实现多线程处理实验。(To achieve parallel computing area problem, parallel computing multi-threaded problem, Graduate freshman homework to achieve multi-threaded processing experiments.)
PI
- 编写程序计算 PI 值 要求: ① 采用至少两种 线程分配方法; ② 使用时间函数统计每个线程的计算时间,对比分析哪种分配方法更优; ③ 程序调试及运行,输出运行结果。(Write programs to calculate PI values Requirements: 1.Use at least two kinds of thread allocation methods; 2.Use time function to calculate the computation ti
Pi
- 运用蒙特卡洛方法计算π,多线程计算。创建几个线程,每个线程都会生成随机点并确定点是否落在圆圈内。 每个线程都必须更新圈内所有点的全局计数。 一旦所有线程退出,父线程将计算并输出π的估计值。 使用互斥锁或信号量保护共享全局变量更新时的竞争条件。 值得尝试生成的随机点的数量。 作为一般规则,点的数量越大,近似值越接近π。(Estimating Pi using Monte Carlo)
c++并行计算
- 能够通过多线程实现查找算法,大大节省了计算时间,提高了程序效率(Ability to implement a lookup algorithm through multiple threads)
利用定积分的定义编写多线程程序实现计算pi的程序
- 利用定积分的定义编写多线程程序实现计算pi的程序,尽量让精度提高。(We use the definition of definite integral to compiling multithreaded program to realize the program of calculating pi, and try to improve the accuracy.)
pthread多线程求pi
- 并行计算pthread多线程求pi的三种方法,编译后在命令行后输入线程数以及计算规模n运行(Three ways of pthread multithreading for pi)