-
-
-
OpenAndCloseProcess.zip
对进程进行操作.进程是由进程控制块、程序段、数据段三部分组成。一个进程可以包含若干线程(Thread),线程可以帮助应用程序同时做几件事(比如一个线程向磁盘写入文件,另一个则接收用户的按键操作并及时做出反应,互相不干扰),在程序被运行后中,系统首先要做的就是为该程序进程建立一个默认线程,然后程序可以根据需要自行添加或删除相关的线程。
-
-
-
-
-
cuda_matmult_opt.zip
CUDA matrix multiplication
3 different optimization schemes are included
(loop unrolling, data prefetching, thread granularity)
-
-
sumarray.zip
Java program explains how to works with threads
it takes an array, spreads it to threads,and then it collects the results from each thread.
-
-