CUDA C++编程指南
¶
欢迎来到
CUDA C++ Programming Guide
的中文翻译页面。
3. 简介
3.1.4 应用程序兼容性(Application Compatibility)
3.2.4 页锁定主机内存(Page-Locked Host Memory)
3.2.4.1 Portable Memory
3.2.4.2 Write-Combining Memory
3.2.4.3 映射内存(Mapped Memory)
4 硬件实现(Hardware Implementation)
4.1 单指令多线程架构(SIMT Architecture)
4.2 硬件多线程(Hardware Multithreading)
5 性能指导方针(Performance Guidelines)
5.1 整体性能优化策略(Overall Performance Optimization Strategies)
5.2 最大化利用率(Maximize Utilization)
5.2.1 应用程序级别(Application Level)
5.2.2 设备级别(Device Level)
5.2.3 多处理器级别(Multiprocessor Level)
5.2.3.1 占用率计算器
5.3 最大化内存吞吐量(Maximize Memory Throughput)
5.3.1 主机与设备间的数据传输(Data Transfer between Host and Deive)
5.3.2 设备内存访问(Device Memory Access)
5.4 最大化指令吞吐量
5.4.1 算术指令(Arithmetic Instruction)
5.4.2 控制流指令(Control Flow Instructions)
5.4.3 同步指令(Synchronization Instruction)
B.23 启动限定(Launch Bounds)
线程束(Warps)
CUDA中文手册
导航
目录
CUDA C++最佳实践指导
CUDA C++编程指南
3. 简介
4 硬件实现(Hardware Implementation)
5 性能指导方针(Performance Guidelines)
线程束(Warps)
Related Topics
Documentation overview
Previous:
10. 内存优化
Next:
3. 简介