CUDA
文章平均质量分 68
B10090411
这个作者很懒,什么都没留下…
展开
-
Cuda在Ubuntu上的安装
首先声明,我是安装完ubuntu15.10后,没有sudo apt-get update,没有安装其他的软件,没有disable Nouveau,直接安装的cuda,再安装的Theano。下面介绍一下我的安装过程及遇到的问题和解决方案。第1步:下载cuda安装包。下载页面:https://developer.nvidia.com/cuda-downloads 从中选择适合ubuntu的de转载 2016-03-29 16:50:59 · 2561 阅读 · 0 评论 -
cuda 中__syncthreads() 的使用注意事项
__syncthreads不能在不会被所有线程同时遍历分支中使用if (threadIdx.x SOME_CONSTANT){ operation1(); __syncthreads(); operation2();}应阿使用下面的代替if (threadIdx.x SOME_CONSTANT){ operation1();}__s原创 2017-03-21 16:06:22 · 4192 阅读 · 0 评论 -
CS344 Udacity 答案
这里我只给出student.cu的代码Ploblem Set1// Homework 1// Color to Greyscale Conversion//A common way to represent color images is known as RGBA - the color//is specified by how much Red, Green, and Blue i原创 2017-01-16 22:06:15 · 1686 阅读 · 0 评论 -
Cuda 常见问题
1.在SDK自带的例子程序中,发现SRC文件珜下有.cpp文件和.cu文件。这两种文件的关系和各自的作用是什么呀?答:SDK自带例子中的.cpp文件主要是一些CPU端处理,或者是使用CPU计算对照组结果,在某些例子中也会在.cpp文件中以函数的形式调用封装成C或者C++函数的GPU端代码.cu文件中通常是与GPU核函数和CUDA API相关的内容。2.在SDK自带的例子程序中,有一转载 2016-12-12 10:00:39 · 903 阅读 · 0 评论 -
SIFT
尺度不变特征变换匹配算法详解Scale Invariant Feature Transform(SIFT)Just For Funzdd zddmail@gmail.com对于初学者,从David G.Lowe的论文到实现,有许多鸿沟,本文帮你跨越。1、SIFT综述尺度不变特征转换(Scale-invariant feature transform或SIF转载 2016-10-10 14:25:56 · 1039 阅读 · 0 评论 -
opencv 在ubuntu上的安装
1、安装opencv所需的库(编译器、必须库、可选库)转载请说明 http://www.cnblogs.com/llxrl/p/4471831.html GCC 4.4.x or laterCMake 2.6 or higherGitGTK+2.x or higher, including headers (libgtk2.0-dev)pkg-configPython 2.6转载 2016-04-14 00:16:54 · 412 阅读 · 0 评论 -
nvidia-smi: Control Your GPUs
nvidia-smi: Control Your GPUsPosted onDecember 5, 2011 byEliot EshelmanMost users know how to check the status of their CPUs, see how much memory is free or find out how much disk space is转载 2016-03-28 12:32:25 · 6663 阅读 · 0 评论 -
Ubuntu 15.10配置OpenCV
1.安装前准备安装以下工具:sudo apt-get install build-essential cmake git libgtk2.0-dev pkg-config python-dev python-numpy libavcodec-dev libavformat-dev libswscale-dev2.下载并解压OpenCVOpenCV Ubuntu版转载 2016-04-01 10:33:07 · 487 阅读 · 0 评论 -
Cuda在TK1上的安装
Download the .deb file for the CUDA Toolkit for L4T either using a web browser on the device, or download on your PC then copy the file to your device using a USB flash stick or across the network. (M转载 2016-03-29 16:54:16 · 501 阅读 · 1 评论 -
OpenMP共享内存并行编程详解
实验平台:win7, VS2010 1. 介绍 平行计算机可以简单分为共享内存和分布式内存,共享内存就是多个核心共享一个内存,目前的PC就是这类(不管是只有一个多核CPU还是可以插多个CPU,它们都有多个核心和一个内存),一般的大型计算机结合分布式内存和共享内存结构,即每个计算节点内是共享内存,节点间是分布式内存。想要在这些并行计算机上获得较好的性能,进行并行编程是必要条件。目前转载 2017-04-02 11:36:39 · 5230 阅读 · 1 评论