-
《GPU高性能计算之CUDA》实例
《GPU高性能运算之CUDA》是全国第一本全面介绍CUDA软硬件体系架构的书籍。全面介绍使用CUDA进行通用计算所需要的语法、硬件架构、程序优化技巧等知识,是进行GPU通用计算程序开发的入门教材和参考书。《GPU高性能运算之CUDA》共分5章。第1章介绍GPU通用计算的发展历程,介绍并行计算的历史、现状以及面临的问题;第2章介绍CUDA的使用方法,帮助读者理解CUDA的编程模型、存储器模型和执行模型,掌握CUDA程序的编写方法;第3章探讨CUDA硬件架构,深入分析Tesla GPU架构与CUDA通用计算的相互作用:第4章总结CUDA的高级优化方法,对任务划分、存储器访问、指令流效率等课题进行探讨;第5章以丰富的实例展示如何使用CUDA的强大性能解决实际问题。 《GPU高性能运算之CUDA》可作为CUDA的学习入门和编程参考书,主要面向从事高性能计算的程序员与工程师,使用GPU加速专业领域计算的科研人员,以及对GPU通用计算感兴趣的程序员。开设相关课程的高等院校与科研机构也可选用《GPU高性能运算之CUDA》作为教材。
- 2022-12-14 23:55:05下载
- 积分:1
-
各种算法的c语言程序,包括huffman、线性表、栈、队列等
各种算法的c语言程序,包括huffman、线性表、栈、队列等--All kinds of algorithm program in C language, including huffman, lineartable, stack, queue etc.
- 2022-04-19 07:42:59下载
- 积分:1
-
拉格朗日差值算法,内涵读取文件,插值,写入文件,读取文件为PARCHG,写入文件为INSERT_DATA...
拉格朗日差值算法,内涵读取文件,插值,写入文件,读取文件为PARCHG,写入文件为INSERT_DATA-Lagrangian difference algorithm, meaning to read the file, interpolation, write files, read the file PARCHG, write documents INSERT_DATA
- 2022-01-26 20:29:26下载
- 积分:1
-
此程序为C语言编写的矩阵运算算法
此程序为C语言编写的矩阵运算算法-procedure for the preparation of the C language matrix calculation algorithm
- 2022-08-22 12:03:46下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
计算SOA中噪声性能的程序
计算SOA中噪声性能的程序-calculation procedures noise performance
- 2023-06-06 13:30:03下载
- 积分:1
-
程序是我们上课时中用到的,工程科学计算与C程序集 (上,下) 相信是很有用的!...
程序是我们上课时中用到的,工程科学计算与C程序集 (上,下) 相信是很有用的!-is our class names, scientific computing and engineering procedures Set C (upper and lower) believe that it is very useful!
- 2022-03-30 06:15:02下载
- 积分:1
-
磁性DLA模拟分形生长,用于Ising模型
磁性DLA模拟分形生长,用于Ising模型-Magnetic DLA fractal growth simulation for the Ising model
- 2022-08-23 00:06:21下载
- 积分:1
-
这个程序是标准的BP神经网络,可以调整输入、输出和隐曾的维数。...
这个程序是标准的BP神经网络,可以调整输入、输出和隐曾的维数。-this procedure is the standard BP neural network, can be adjusted input, output and has the implicit dimension.
- 2023-05-19 21:15:03下载
- 积分:1
-
Ordinary and Partial Differential Equation Routines in C, C++, Fortran, Java, Ma...
Ordinary and Partial Differential Equation Routines in C, C++, Fortran, Java, Maple, and MATLAB
- 2022-03-20 04:40:00下载
- 积分:1