🏠 홈
벤치마크
📊 모든 벤치마크 🦖 공룡 v1 🦖 공룡 v2 ✅ 할 일 목록 앱 🎨 창의적인 자유 페이지 🎯 FSACB - 궁극의 쇼케이스 🌍 번역 벤치마크
모델
🏆 톱 10 모델 🆓 무료 모델 📋 모든 모델 ⚙️ 킬로 코드 모드
리소스
💬 프롬프트 라이브러리 📖 AI 용어 사전 🔗 유용한 링크

AI 용어집

인공지능 완전 사전

162
카테고리
2,032
하위 카테고리
23,060
용어
📖
용어

Thread Divergence

Phenomenon where threads within the same warp take different execution paths, causing branch serialization and significantly reducing parallel performance on GPU.

📖
용어

Shared Memory Bank Conflicts

Contention that occurs when multiple threads from the same warp attempt to simultaneously access the same memory bank of shared memory, causing access serialization.

📖
용어

Warp Scheduling

GPU scheduler mechanism that optimizes warp scheduling to maximize compute unit utilization and hide memory latency.

📖
용어

Register Spilling

Phenomenon where the compiler must move data from registers to local memory (slow) when registers are insufficient, significantly degrading performance.

📖
용어

Instruction Throughput

Measure of the number of instructions that can be executed per clock cycle, optimized by favoring native arithmetic operations and avoiding complex instructions.

📖
용어

Grid Stride Loop

Loop pattern where each thread processes multiple elements spaced by the total grid size, allowing processing of datasets larger than the thread grid.

📖
용어

Loop Unrolling

Optimization technique that eliminates loop iterations by duplicating the loop body, reducing loop control overhead and increasing instruction-level parallelism.

📖
용어

Memory Latency Hiding

Strategy of launching enough warps so the GPU can switch to ready warps while others wait for memory accesses.

📖
용어

Vector Memory Operations

Instructions that transfer multiple data simultaneously (float2, float4) between global memory and registers, improving effective bandwidth.

📖
용어

Cooperative Groups

CUDA API allowing flexible and collective synchronization between threads beyond traditional block boundaries, optimizing complex communication patterns.

📖
용어

Texture Memory Caching

Use of texture memory with its optimized cache for spatial accesses, particularly effective for access patterns with 2D locality.

📖
용어

Atomic Operations Optimization

Techniques to reduce contention on atomic operations, notably by using shared memory for local aggregation before global update.

📖
용어

Kernel Launch Overhead

Time cost associated with launching a GPU kernel, minimized by merging multiple small kernels into one larger one or using dynamic parallelism.

📖
용어

Work Distribution Balance

Optimization of work distribution between threads to avoid load imbalance where some threads finish much earlier than others.

📖
용어

Prefetching Strategy

Anticipatory technique of loading data into shared memory before their use, thus hiding the latency of global memory accesses.

🔍

결과를 찾을 수 없습니다