NVIDIA's FP8 Transformer Engine slashes GPU memory in custom GPTs by over 30%
MarkTechPost · Aug 1, 2026 · 2 min read
Training transformers on consumer or older server GPUs has always been a memory game you're destined to lose. But NVIDI...
12 articles
Explore our coverage of PyTorch — 12 curated articles, summaries, and related resources from the Inblix archive.
MarkTechPost · Aug 1, 2026 · 2 min read
Training transformers on consumer or older server GPUs has always been a memory game you're destined to lose. But NVIDI...
OpenAI Blog · Jul 19, 2026 · 2 min read
OpenAI is cleaning house. After years of bouncing between deep learning frameworks based on whichever tool fit a specif...
Hugging Face Blog · Jul 10, 2026 · 2 min read
Most engineers know the theory of PyTorch profiling, but watching a real trace expose a hidden inefficiency is somethin...
Hugging Face Blog · Jun 11, 2026 · 2 min read
If you've been sprinkling torch.compile on every layer hoping for free speed, the profiler has some humbling news. In t...
Hugging Face Blog · May 29, 2026 · 2 min read
Most PyTorch users know they should profile their models. Few actually do it. The barrier isn't a lack of tools — it's...
Hugging Face Blog · Feb 13, 2026 · 2 min read
Writing fast CUDA kernels is a dark art. It's not just about knowing C++ — it's about wrangling GPU memory hierarchies,...
Hugging Face Blog · Dec 1, 2025 · 2 min read
The Hugging Face team launched Transformers v5 today, marking a deliberate shift from the sprawl of 400+ model architec...
Hugging Face Blog · Nov 17, 2025 · 2 min read
If you've ever wrestled with CMake, Nix, or ABI issues just to get a custom GPU kernel running in PyTorch, the new work...
Hugging Face Blog · Oct 10, 2025 · 3 min read
Arm is making an unusually hands-on play for PyTorch developers at this year’s conference in San Francisco, and it goes...
Hugging Face Blog · Oct 2, 2025 · 2 min read
Running state-of-the-art AI models on Apple devices just got a clearer playbook. The team behind dots.ocr, a model comb...
Hugging Face Blog · Aug 18, 2025 · 2 min read
Writing a fast CUDA kernel for a specific GPU is one thing. Making it build cleanly for multiple architectures, survive...
Hugging Face Blog · Jun 4, 2025 · 2 min read
Implementing a fundamental optimization from scratch is often the best way to truly understand it. That's exactly what...