CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - CUDA

搜索资源列表

  1. cuda-compute

    0下载:
  2. 用c++代码实现的GPU并行计算,实现的功能是计算数组的加法和乘法-GPU computing using parallel c++ code to realize the function of addition and multiplication to calculate the array
  3. 所属分类:MPI

    • 发布日期:2017-04-12
    • 文件大小:1101
    • 提供者:binbin
  1. BlurRGB

    0下载:
  2. 利用cuda+opencv对照片进行高斯模糊-image blur using cuda and opencv
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-05
    • 文件大小:350485
    • 提供者:寒客
  1. CUDA_RGBimageToGray

    0下载:
  2. 用cuda+opencv将RGB图像转换成灰度图-With cuda+opencv Converting an RGB image into grayscale
  3. 所属分类:OpenCV

    • 发布日期:2017-05-05
    • 文件大小:348860
    • 提供者:寒客
  1. tombat

    0下载:
  2. GPU high performance 能编程CUDA实战,示例代码-CUDA GPU can high performance programming of actual combat, the sample code
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-05
    • 文件大小:243075
    • 提供者:prrjlx
  1. GPU_OpenCL_MD5

    0下载:
  2. NVIDIA GUP CUDA实现的MD5算法,速度是PC实现的1000倍,非常高效。-NVIDIA GUP CUDA implementation of the MD5 algorithm, the speed is 1000 times the PC implementation, very efficient.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-12
    • 文件大小:1758
    • 提供者:钟文
  1. peayormance-sample-can

    0下载:
  2. GPU high performance 能编程CUDA实战,示例代码-CUDA GPU can high performance programming of actual combat, the sample code
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-15
    • 文件大小:242688
    • 提供者:fujctlonae
  1. notepadPPcuda_config

    0下载:
  2. notepad++中cuda代码的高亮显示配置文件 喜欢轻量级编辑器的GPU代码开发者可能会用到,notepad++7.3.3上经过实测-the config file for cuda in the editor notepad++
  3. 所属分类:Editor

    • 发布日期:2017-12-11
    • 文件大小:33325
    • 提供者:lingfei
  1. dijkstra_cuda

    0下载:
  2. 采用cuda对dijkstra算法进行并行实现,性能提升7倍多。- U91C7 u75286 u5B09 u5B09 u7
  3. 所属分类:MPI

    • 发布日期:2017-12-12
    • 文件大小:4469
    • 提供者:shui123
  1. rozoeu

    0下载:
  2. GPU high performance 能编程CUDA实战,示例代码-CUDA GPU can high performance programming of actual combat, the sample code
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-14
    • 文件大小:332800
    • 提供者:loadphg
  1. matrix_mul_cuda_2.cu

    0下载:
  2. 矩阵相乘的cuda实现 矩阵分块且使用shared memory-parallel version of matrix multiply
  3. 所属分类:MPI

    • 发布日期:2017-12-13
    • 文件大小:1662
    • 提供者:cc
  1. GPUBarCode

    0下载:
  2. 这是在Matlab软件平台下的 GPU程序,用最近邻域双线性插值算法填补图像中缺失区域,是并行运算处理,使用CUDA来编写程序。(This is the GPU program under the Matlab software platform, and the nearest neighborhood bilinear interpolation algorithm to fill the missing areas in the image is parallel processing,
  3. 所属分类:matlab例程

    • 发布日期:2017-12-21
    • 文件大小:1024
    • 提供者:仁仁
  1. cudaMallocAndMemcpy

    0下载:
  2. 在主机和设备之间复制--从“cudaMallocAndMemcpy”模板开始。 第1部分:为设备上的指标 d_a 和 d_b 分配内存。 第2部分:将主机上的h_a复制到设备上的 d_a。 第3部分:将设备从 d_a复制到 d_b。 第4部分:将设备上的 d_b 复制回主机上的 h_a。 第5部分:在主机上释放 d_a 和 d_b。 额外部分:用cudaMallocHost代替malloc来分配h_a。(Copy between host and device -- start
  3. 所属分类:并行计算

    • 发布日期:2017-12-21
    • 文件大小:6144
    • 提供者:p-yang
  1. myFirstKernel

    0下载:
  2. 启动内核--从“myFirstKernel”模板开始。 Part1:使用指针d_a为内核的结果分配设备内存。 Part2:使用1-D的1-D网格来配置和启动内核 线程块。 Part3:让每个线程设置一个d_a的元素,如下所示: idx = blockIdx.x * blockDim.x + threadIdx.x d_a [idx] = 1000 * blockIdx.x + threadIdx.x Part4:将d_a中的结果复制回主机指针h_a。 Part5:验证结果是否正
  3. 所属分类:并行计算

    • 发布日期:2017-12-21
    • 文件大小:6144
    • 提供者:p-yang
  1. reverseArray_singleblock

    0下载:
  2. 反向阵列(单块)-- 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_singleblock”模板开始 B: 只有一个线程块启动,以反转一个大小的数组 N = numThreads = 256个元素 C: 第1部分(共1个):所有你需要做的是实现内核的“reverseArrayBlock()” D:每个线程将单个元件移动到相反的位置, 从d_a指标读取输入,
  3. 所属分类:并行计算

    • 发布日期:2017-12-19
    • 文件大小:6144
    • 提供者:p-yang
  1. reverseArray_multiblock

    0下载:
  2. 反向阵列(multiblock): 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_multiblock”模板开始 B:多个256线程块启动,要颠倒大小为N,N / 256块的数组 第1部分:计算要启动的块数 第2部分:实现内核reverseArrayBlock 请注意,现在您必须同时进行计算 块内的相反位置 反向偏移到块的开始(Reverse array
  3. 所属分类:并行计算

    • 发布日期:2017-12-24
    • 文件大小:6144
    • 提供者:p-yang
  1. polar_BP_decoder.cu

    1下载:
  2. 本代码是基于GPU的polar码BP并行译码,主要完成基于GPU的并行译码功能,开发语言为CUDA C。(BP parallel decoding of polar codes based on GPU)
  3. 所属分类:并行计算

    • 发布日期:2017-12-21
    • 文件大小:2048
    • 提供者:npu
  1. sgm

    1下载:
  2. 求深度信息的半全局匹配算法,使用cuda,opencv(For depth information of the semi global matching algorithm, using CUDA, opencv)
  3. 所属分类:其他

    • 发布日期:2017-12-19
    • 文件大小:5120
    • 提供者:will01
  1. loadcaffe-master

    0下载:
  2. 通过caffe和matlab,实现cnn网络(supported by https://github.com/soumith/inception.torch NN support means both CPU and GPU backends. You can also use Caffe inside Torch with this: https://github.com/szagoruyko/torch-caffe-binding However you can't use bo
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-12-21
    • 文件大小:19456
    • 提供者:咕_噜
  1. PSimage.tar

    1下载:
  2. 基于C/C++ 和CUDA并行加速技术编写的转换波逆时偏移成像程序(PS imaging method based on C/C++ and CUDA)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:5120
    • 提供者:在路上、
  1. FFT

    1下载:
  2. FFT Compution on GPU
  3. 所属分类:其他

    • 发布日期:2017-12-27
    • 文件大小:252928
    • 提供者:mahmoudk
« 1 2 ... 40 41 42 43 44 4546 47 »
搜珍网 www.dssz.com