搜索资源列表
neardd
- For PD close loop control. Used in tracing trajectory or simulation.
cuda_matmult_opt
- CUDA matrix multiplication 3 different optimization schemes are included (loop unrolling, data prefetching, thread granularity)
cuda_reduce
- cuda sum reduction with loop unrolling and bank-conflict avoided
mysimulation
- 基于openMPI的泊松算法实现, C实现,此为simulation.c,用于实现算法的main loop.-implematation of poission algorithm based on openMPI
costasloop
- 一个关于锁相环的介绍及码源,希望对于初学者有所帮助。分享给大家了!-Introduction of a phase-locked loop and the code on the source of hope for the beginners help. We share it!
for-loop-parallel-and-chuanxing
- 这是一个关于并行计算的一个很简单的程序,主要是比较for循环条件下时间的比较。-This is a parallel computing on a very simple procedure, the main condition for loop is more time for comparison.
test
- verilog实现循环计数器,8位的计数器,可使用在各类FPGA平台中-a loop counter designed by verilog
a
- OpenMP简单的应用 输入计算线程数 重复循环执行一定数量的代码 记录起始时间和结束时间 时间相减求出代码执行时间-A simple OpenMP applications enter the calculation of the number of threads that repeat loop executes a certain amount of code to record the start time and end time subtraction to find the co
Desktop
- fluent udf 实现动态边界条件 并行及串行程序-parallel and series udf based on facets loop
Desktop
- 计算一个整数的二进制表示中1的个数,该算法循环的次数只与整数的二进制表示中1的个数有关。相比与循环遍历所有位的方法,该算法在一般情况下能够大幅减少循环的次数,提升效率。 比如我们可以用一个整数做标识位,64位整数最多可以对应64个状态,可以用这个函数获取当前有效状态的个数-Calculate an integer number of the binary representation of the number of 1' s, this algorithm the numbe
fluent-Mixture-for-loop
- fluent 多相流循环,主要用于fluent优化编程子程序-fluent multiphase flow loop
for
- 并行计算经典代码循环for循环(Loop work-sharing)-Classic code loops for parallel computing loop (Loop work-sharing)
Combined-parallel-loop-reduction
- Combined parallel loop reduction 并行计算经典代码-Combined parallel loop reduction classic code parallel computing
mpifor
- 计算宇宙学常用的code。mpifor 可以并行进行for循环计算-Calculation Cosmology common code. mpi for the calculation can be performed in parallel for loop
xitongzishiyingkongzhisuanfa
- 本文以大时滞温度控制系统为研究对象,提出一种改进型Smith预估控制算 法,通过设计自适应非线性反馈回路来自适应调节参数,从而满足对象参数大幅 度变化的要求-In this paper, large time delay the temperature control system for the study, to provide an improved Smith predictor control algorithm by designing adaptive nonlinear
jishuanrenkou
- (响应)我国现有人口为13亿,设年增长率为1 ,计算多少年后增加到20亿。并将结果输出在窗体上。将结果存入变量year中。使用do while ...loop语句完成程序。 -response) in China has a population of 1.3 billion, the annual growth rate of 1 , calculate how many years later increased to 2 billion. And the results output
Colfax-HOW-Day-04
- 引入了线程并行,OpenMP并行框架。讨论的主题包括:使用线程来利用多个处理器内核,线程和数据并行,协调使用OpenMP线程的创建和团队他们处理循环和树木的任务。OpenMP的讨论提到控制线程的数量,控制变量条款和范围的共享,循环调度模式,使用互斥锁来保护竞争的条件,并与线程私有变量减少并行可扩展的方法。讲座部分的结论与讨论的一般方法来实现在计算应用中的并行的机会。动手部分演示了使用OpenMP并行串行计算和论证了循环变量共享,在一个应用实例进行数值积分的互斥和并行还原。-Session 4 i
matmul.tar
- 矩阵乘法的多线程并行实现,包括:simple,采用openmp对索引顺序ijk(一般写法)的循环实现并行;opt,采用openmp对索引顺序ikj(向量化友好)的循环实现并行;mkl,调用高性能数学库实现矩阵乘法。(Multi-thread parallelization of matrix-matrix multiplication: "simple" case, ijk loop (usual pattern); "opt" case, ikj (ve