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

搜索资源列表

  1. julia

    0下载:
  2. 一个基础的CUDA例子,绘画出julia集合。-One based on CUDA example, draw julia set.
  3. 所属分类:MPI

    • 发布日期:2017-04-05
    • 文件大小:2.11kb
    • 提供者:weijian
  1. CUDA_Startup

    0下载:
  2. CUDA入门必备:包括CUDA安装方法,语法高亮,工程Wizard文件,参考手册和编程文档。-Entry must CUDA: CUDA installation methods including, syntax highlighting, project Wizard documents, reference manuals and program documentation.
  3. 所属分类:MPI

    • 发布日期:2017-05-12
    • 文件大小:2.84mb
    • 提供者:鲍协浩
  1. CUDAtools

    0下载:
  2. CUDA(GPU计算)开发资料,包括3份文档和一份快速开发设置工具,文档包括有CUDA环境设置,CUDA简易编程以及非常有名的深入浅出谈CUDA技术一文。-CUDA (GPU computing) development information, including three copies of the document and a set for rapid development tools, documentation including CUDA environment setting
  3. 所属分类:MPI

    • 发布日期:2017-05-07
    • 文件大小:1.55mb
    • 提供者:llc
  1. How-to-Install-a-configure-Cuda-Emulator-in-VS-20

    0下载:
  2. The goal of this lab is to install CUDA on a machine that does not contain a graphics card support Cuda, and also to install the emulator Cuda in visual studio and set it up.
  3. 所属分类:software engineering

    • 发布日期:2017-05-11
    • 文件大小:2.64mb
    • 提供者:imad
  1. deviceQuery

    0下载:
  2. deviceQuery确认CUDA编译环境是否确定搭建完成,能够进行CUDA工程编程-deviceQuery confirm CUDA compiler environment is set up to determine the completion of works to the CUDA programming
  3. 所属分类:MPI

    • 发布日期:2017-05-28
    • 文件大小:10.8mb
    • 提供者:王杉杉
  1. spmv_csr

    2下载:
  2. 稀疏矩阵的DIA/ELLPACK/COO/CSR/HYB表示形式,以及各表示形式下的稀疏矩阵乘法(稀疏大矩阵*矢量)的CUDA实现。对于矩阵中每一行稀疏元素个数较统一的情况,ELLPACK表示最佳,其次是HYB(ELL+COO)。 CUDA™ 是一种由NVIDIA推出的通用并行计算架构,该架构使GPU能够解决复杂的计算问题。 它包含了CUDA指令集架构(ISA)以及GPU内部的并行计算引擎。 开发人员现在可以使用C语言来为CUDA™ 架构编写程序-Sparse matri
  3. 所属分类:Algorithm

    • 发布日期:2017-05-13
    • 文件大小:3.13mb
    • 提供者:lipeng
  1. cblas

    1下载:
  2. opencl编写的blas,和Cuda的cublas类似。-This repository houses the code for the OpenCL™ BLAS portion of clMath. The complete set of BLAS level 1, 2 & 3 routines is implemented.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1.37mb
    • 提供者:
  1. Julia

    0下载:
  2. 基于GOU的Julia集,用CUDA C编程,要与GPU高性能编程CUDA实战这本书一起学CUDA-Based GOU Julia set with CUDA C programming, and to learn together CUDA CUDA GPU programming high-performance combat this book
  3. 所属分类:MPI

    • 发布日期:2017-05-14
    • 文件大小:3.28mb
    • 提供者:耳双
  1. DLTcode

    0下载:
  2. Robust Non-negative Dictionary Learning for Visual Tracking The provided codes could be either embedded into the benchmark framework of paper Online Object Tracking: A Benchmark (CVPR2013) (You can find details here: http://visual-tracking.net/) or
  3. 所属分类:Video Capture

    • 发布日期:2017-06-14
    • 文件大小:21.18mb
    • 提供者:mohit
  1. Matrix_add

    0下载:
  2. 此程序使用CUDA并行语言完成矩阵的加法。矩阵维数为3×3矩阵。矩阵维数可以更改。但是同时矩阵的处置也要手动设置。-This program uses the CUDA parallel language to complete the addition matrix. 33 matrix matrix dimensions. You can change the dimension of the matrix. However, while the disposal of the matrix
  3. 所属分类:MPI

    • 发布日期:2017-04-08
    • 文件大小:758byte
    • 提供者:
  1. julia

    0下载:
  2. cuda入门范例(julia集的计算),CUDA加速计算,简单的范例-cuda Start sample (julia set computing), CUDA accelerated computing, simple example
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-22
    • 文件大小:6.78mb
    • 提供者:刘忠源
  1. cuda2dshare

    0下载:
  2. 基于cuda的level set 代码,里面包含详细研究报告-CUDA based level set code, including research report.
  3. 所属分类:Special Effects

    • 发布日期:2017-05-15
    • 文件大小:3.65mb
    • 提供者:jsphone
  1. julia_gpu

    0下载:
  2. CUDA并行计算JULIA集,是GPU高性能计算的代码-CUDA Parallel Computing JULIA set, the code GPU High Performance Computing
  3. 所属分类:MPI

    • 发布日期:2017-04-12
    • 文件大小:1.15kb
    • 提供者:chengpx
  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
    • 文件大小:6kb
    • 提供者:p-yang
搜珍网 www.dssz.com