Cuda 相关库的介绍

 

Cuda 相关库的介绍

分类: 并行计算   835人阅读  评论(0)  收藏  举报

Cuda在努力构造一个类似CPP的完整的编程环境,所以他提供了一系列的库。

http://docs.nvidia.com/cuda/index.html


1) math API

类比C的math库有三角函数、对数、指数等基本的函数。


2) thrust

STL类似的Cuda实现,可以实现快速的排序,变换等操作。

http://docs.nvidia.com/cuda/thrust/index.html


3) 科学计算和图像视频处理相关的库,满足科学计算加速的基本需求。

如BLAS FFT SPARSE等。


4) 面向CUDA编程的device API 和 runtime API

这两个是不同层次的编程环境,彼此互斥,device的更底层。各有所长看需求。

It is composed of two APIs:

  • A low-level API called the CUDA driver API,
  • A higher-level API called the CUDA runtime API that is implemented on top of the CUDA driver API.

These APIs are mutually exclusive: An application should use either one or the other.

The CUDA runtime eases device code management by providing implicit initialization, context management, and module management. The C host code generated by nvcc is based on the CUDA runtime (see Section 4.2.5), so applications that link to this code must use the CUDA runtime API.

In contrast, the CUDA driver API requires more code, is harder to program and debug, but offers a better level of control and is language-independent since it only deals with cubin objects (see Section 4.2.5). In particular, it is more difficult to configure and launch kernels using the CUDA driver API, since the execution configuration and kernel parameters must be specified with explicit function calls instead of the execution configuration syntax described in Section 4.2.3. Also, device emulation (see Section 4.5.2.9) does not work with the CUDA driver API.


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值