feat: rewrite about page for 2026. (#21)
Some checks failed
Build blog docker image / Build-Blog-Image (push) Failing after 14s
Some checks failed
Build blog docker image / Build-Blog-Image (push) Failing after 14s
Signed-off-by: jackfiled <xcrenchangjun@outlook.com> Reviewed-on: #21
This commit is contained in:
42
source/posts/hpc-2025-program-cuda.md
Normal file
42
source/posts/hpc-2025-program-cuda.md
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
title: High Performance Computing 25 SP Programming CUDA
|
||||
date: 2025-08-31T13:50:53.6891520+08:00
|
||||
tags:
|
||||
- 高性能计算
|
||||
- 学习资料
|
||||
---
|
||||
|
||||
|
||||
Compute Unified Device Architecture
|
||||
|
||||
<!--more-->
|
||||
|
||||
## CUDA
|
||||
|
||||
General purpose programming model:
|
||||
|
||||
- Use kicks off batches of threads on the GPU.
|
||||
|
||||

|
||||
|
||||
The compiling C with CUDA applications:
|
||||
|
||||

|
||||
|
||||
### CUDA APIs
|
||||
|
||||
Areas:
|
||||
|
||||
- Device management
|
||||
- Context management
|
||||
- Memory management
|
||||
- Code module management
|
||||
- Execution control
|
||||
- Texture reference management
|
||||
- Interoperability with OpenGL and Direct3D
|
||||
|
||||
Two APIs:
|
||||
|
||||
- A low-level API called the CUDA driver API.
|
||||
- A higher-level API called the C runtime for CUDA that is implemented on top of the CUDA driver API.
|
||||
|
||||
Reference in New Issue
Block a user