
GPU
文章平均质量分 50
ouczoe
Master candidate in Computer department of Ocean University of China.
Research Interests: Gpu Programming, Virtual Reality, Geologic Modeling, Image Processing.
展开
-
error LNK2005:*** already defined in ***
写了一个cuda程序,事实上是把cuda自带的一个程序写到了自己新建的一个工程里。 编译………… 提示两个warining,在前面的文章里,已经讲了解决方法。 提示有 error LNK2005:*** already defined in *** ,很费解,差了很多资料都没有解决。后来终于找到症结所在,把kernel函数设置为不参与编译。在matrixMul_ke原创 2009-12-03 14:47:00 · 6207 阅读 · 4 评论 -
(转)编译器原理
转载自: http://tb.donews.net/TrackBack.aspx?PostId=211668 一.预处理器-编译器-汇编器-链接器预处理器会处理相关的预处理指令,一般是以"#"开头的指令。如:#include "xx.h" #define等。编译器把对应的*.cpp翻译成*.s文件(汇编语言)。汇编器则处理*.s生成对应的*.o文件(obj目标文件)最后链接器把所有转载 2009-12-03 15:51:00 · 1447 阅读 · 1 评论 -
TBB学习笔记一
<br />TBB:Threading building blocks <br /> <br />Advantages:<br /> compatible to other thread software package;<br /> compared with MPI and bared threads: TBB convey parellel senmantics by task partitioning while MPI and Bared threads can原创 2010-07-15 10:47:00 · 2571 阅读 · 0 评论