CUDA
文章平均质量分 77
About CUDA, NV
0xFACE
热爱IT,热爱科技,热爱自然。也爱mm.
展开
-
NVIDIA CUDA 学习笔记 01
首先在https://developer.nvidia.com/cuda-downloads下载对应版本的CUDA Toolkit然后安装,安装后的文件夹结构很可能会是如下这个样子安装完成之后,打开Visual Studio (以VS2013为例,VS2010,VS2012等类似)新建NVIDIA CUDA项目,系统会按照模板自动生成项目结构并且包含一个源文件kerne原创 2014-12-09 17:05:34 · 828 阅读 · 1 评论 -
Windows下pthread多线程使用(3):ExitThread
声明同上一篇文章,以下是代码原创 2014-04-17 12:14:18 · 1307 阅读 · 0 评论 -
Windows下pthread多线程使用(1):准备工作
下载pthreads-win32: http://sourceware.org/pthreads-win32/编写windowsunistd_windows.h原创 2014-04-17 12:02:22 · 977 阅读 · 0 评论 -
Windows下pthread多线程使用(2):CreateThread
此系列代码参考了“Professional Group Tec. Doc.07121901 Author-万一飞”的教程原创 2014-04-17 12:09:59 · 1404 阅读 · 0 评论 -
Windows下pthread多线程使用(4):CancelThread
声明同这篇文章,以下是代码原创 2014-04-17 12:17:04 · 1007 阅读 · 0 评论 -
Windows下pthread多线程使用(5):WaitForAnEnd
声明同这篇文章,以下是代吗#include #define THREADGROUPSIZE 5 void *theThread(void *param){ printf("Thread %.8x %.8x: Entered\n", getpid()); printf("Thread %.8x %.8x: Working\n", getpid()); Sleep(15); pr原创 2014-04-17 12:21:17 · 740 阅读 · 0 评论 -
pthread多线程加速示例(大型矩阵乘法)
#include //#include #include "MatrixLib.h"#pragma comment(lib,"MatrixLib.lib")#pragma warning(disable:4996)void checkResult(char* str, int value, FILE* pflog) { if (value != 0) { fprintf(p原创 2014-04-18 23:02:52 · 4080 阅读 · 1 评论 -
pthread多线程加速示例(大型矩阵乘法):Blocking,1024线程^_^
使用分块方式,加速效果更为显著,以32*32=1024线程测试,比非Blocking方式提升原创 2014-04-20 13:30:45 · 3070 阅读 · 1 评论