资源列表
CUDA SPMV
- 稀疏矩阵向量乘法(Sparse Matrix-Vector Multiplication, SpMV)在许多科学计算程序中都有广泛的应用。数据矩阵A 是稀疏的,输入向量x 和输出向量y是稠密的。 y = Ax(Sparse Matrix-Vector Multiplication (SpMV) is widely used in many scientific computing programs. The data matrix A is sparse, the input vector x
基于FPGA改进粒子群优化算法
- 利用权重和差异演化来改进PSO 并在FPGA中实现(Using weight and difference evolution to improve PSO and implement in FPGA)
示功图口诀
- 油田上面的石油口诀,主要看示功图的,便于分析决策。 油田上面的石油口诀,主要看示功图的,便于分析决策。(this is a doc document)
4_GPUIntro
- GPU 基本介绍 包括GPU与GPGPU的兴起,GPU加速与高性能计算,Nvidia CUDA简介。(The Basic Introduction of GPU)
CRC16计算器
- 计算一串十六进制数据的CRC16校验码,校验码高低位可以互换。(Calculation of CRC16 check code)
mpich-3.2.tar
- mpich3.2 版本压缩包可以平台Fedora/RHEL/CentOS(Mpich3.2 version compression package can be platform Fedora/RHEL/CentOS)
Tunnel-comput
- Fluent模拟,开源的一个代码,用C++编程(Fluent simulation,An open source code that is programmed in C++.)
MPI与OpenMP并行程序设计:C语言版
- MPI与OpenMP并行程序设计:C语言版(MPI and OpenMP parallel programming: C language version)
opencl资料
- opencl 资料,包含OpenCL异构并行计算 原理、机制与优化实践随书源码.txt,OPENCL异构计算.pdf,OpenCL中文教程.pdf(OpenCL data, including the principle of OpenCL heterogeneous parallel computing, mechanism and Optimization Practice with the book source code.Txt, OPENCL heterogeneous computi
maha_distance_new
- calculate mahalabonis distance on GPU
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin
InvertedIndex
- 基于MapReduce的InvertedIndex实现(InvertedIndex implementation based on MapReduce.)