WMMA 프래그먼트 API
프래그먼트를 불러오고 mma_sync로 연산한 뒤 저장합니다
WMMA 프래그먼트 API은(는) CoddyKit의 무료 CUDA Academy 강의입니다. 이것은 4개 중 3번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 CUDA Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. CUDA Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
The WMMA API
To program Tensor Cores directly you use WMMA, the warp matrix multiply-accumulate API in the nvcuda::wmma namespace. 🧩
A Whole Warp Cooperates
WMMA is warp-wide: all 32 threads in a warp work together on one tile. You think in tiles, not in single threads.
Meet the Fragment
A fragment is the WMMA data type holding one warp's slice of a matrix tile. Each thread quietly owns a few of its elements.
Three Fragment Roles
You declare fragments tagged matrix_a, matrix_b, or accumulator. The tag tells WMMA how that tile feeds the multiply-accumulate.
Tile Shapes Are Fixed
Fragments use set tile sizes like 16 by 16 by 16. You pick a supported shape; the hardware only accepts those combinations.
Step 1: Load
First you call load_matrix_sync to pull a tile from memory into a fragment. This load spreads the data across the warp for you.
wmma::load_matrix_sync(a_frag, ptr, ldm);Step 2: Clear the Accumulator
Before adding, you zero the result tile with fill_fragment. A clean accumulator means your sums start from a known value.
wmma::fill_fragment(c_frag, 0.0f);Step 3: Multiply-Accumulate
The core call is mma_sync. It runs D = A times B plus C on the loaded fragments using the Tensor Cores directly.
wmma::mma_sync(c_frag, a_frag, b_frag, c_frag);Step 4: Store
Finally store_matrix_sync writes the accumulator fragment back to memory. This store gathers each thread's pieces into one tile.
wmma::store_matrix_sync(out, c_frag, ldm, layout);Sync Means Warp-Synchronous
The _sync suffix is a reminder: every WMMA call is warp-synchronous. All 32 lanes must reach it together or behavior is undefined.
Layout and Leading Dimension
Loads and stores need the leading dimension, the stride between rows, plus a row- or column-major layout to read memory correctly.
Quick Check
Which WMMA call actually runs the matrix multiply-accumulate on the Tensor Cores?
Recap
You walked the WMMA flow: declare a fragment, load tiles, clear the accumulator, call mma_sync, then store. Every step is warp-synchronous. 🙌
자주 묻는 질문
“WMMA 프래그먼트 API” 강의는 무료인가요?
네 — “WMMA 프래그먼트 API” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 CUDA Academy 강의 전체를 잠금 해제할 수 있습니다. CUDA Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
“WMMA 프래그먼트 API”에서 뭘 배우나요?
프래그먼트를 불러오고 mma_sync로 연산한 뒤 저장합니다 브라우저에서 직접 실행하는 실습 코드로 CUDA Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
CUDA Academy을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 CUDA Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 3번째 강의입니다.
“WMMA 프래그먼트 API” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 CUDA Academy 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 CUDA Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 텐서 코어의 연산
- 혼합 정밀도: FP16, BF16, TF32
- WMMA 프래그먼트 API
- 수치 안정성의 상충 관계