🏠 Home
Benchmark Hub
📊 All Benchmarks 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List Applications 🎨 Creative Free Pages 🎯 FSACB - Ultimate Showcase 🌍 Translation Benchmark
Models
🏆 Top 10 Models 🆓 Free Models 📋 All Models ⚙️ Kilo Code
Resources
💬 Prompts Library 📖 AI Glossary 🔗 Useful Links

AI Glossary

The complete dictionary of Artificial Intelligence

162
categories
2,032
subcategories
23,060
terms
📖
terms

TF32 (TensorFloat-32)

NVIDIA's proprietary 19-bit hybrid format combining 8-bit exponent from FP16 and 10-bit mantissa from FP32, optimized for matrix operations on Ampere and Hopper GPU Tensor Cores.

📖
terms

Dynamic Range

Range of representable values between the smallest normalized number and the largest floating point number, critical in precision selection as FP16 has a limited dynamic range (65504) compared to FP32 (3.4×10³⁸).

📖
terms

Post-Training Quantization (PTQ)

Process of converting a pre-trained full-precision model to reduced precision (FP16, INT8, INT4) without retraining, using calibration techniques to determine optimal scale and bias factors.

📖
terms

Fused Multiply-Add (FMA)

Hardware operation combining multiplication and addition into a single instruction (a×b+c) with single rounding, fundamental for accelerating matrix calculations in mixed precision and reducing cumulative rounding errors.

📖
terms

Numerical Stability

Property of an algorithm to maintain calculation precision in the face of rounding errors and overflow/underflow, particularly critical in mixed precision where reduced dynamic range can destabilize certain calculations.

📖
terms

INT8 Quantization

Technique for compressing neural weights and activations to 8-bit signed integers (-128 to 127) with scale factors and zero-points, offering up to 4x memory reduction and significant acceleration on compatible hardware.

📖
terms

Precision Matrix Operations

Set of linear operations (GEMM, convolution) where different parts of the calculation use different precisions - typically accumulation in FP32 with multiplication in FP16/BF16 to optimize throughput on modern GPUs.

🔍

No results found