惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
CUDA 13.3 Lands, AI Writes Blackwell Kernels, & FP4 VRAM ...
soy · 2026-05-28 · via DEV Community

soy

CUDA 13.3 Lands, AI Writes Blackwell Kernels, & FP4 VRAM Optimization for LLMs

Today's Highlights

NVIDIA releases CUDA Toolkit 13.3, bringing new features and optimizations for GPU developers. Meanwhile, an AI system demonstrates the ability to write 'speed-of-light' CUDA kernels for Blackwell, and a new mixed-precision technique promises VRAM savings for long-context AI.

Info: Nvidia Cuda 13.3 landed (r/LocalLLaMA)

Source: https://reddit.com/r/LocalLLaMA/comments/1tp0vk1/info_nvidia_cuda_133_landed/

NVIDIA has officially released CUDA Toolkit 13.3, a crucial update for developers leveraging NVIDIA GPUs for accelerated computing. This release is expected to bring a host of performance improvements, new features, and essential bug fixes across various programming models and libraries within the CUDA ecosystem. Developers are encouraged to review the comprehensive release notes to understand detailed changes, compatibility information, and any new hardware support or optimizations for existing GPU architectures.

The CUDA Toolkit is a foundational component for a wide range of high-performance applications, including AI, scientific computing, and graphics. Its continuous evolution allows developers to push the boundaries of computational efficiency, making updates like 13.3 vital for maintaining cutting-edge performance on NVIDIA hardware. Access to the download links is provided, enabling immediate adoption and testing by the developer community.

Comment: A new CUDA version is always a significant event; I'll be checking the release notes closely for any new compiler features or performance gains, especially for custom kernel development.

New AI system writes Speed-of-Light Blackwell CUDA Kernels (r/CUDA)

Source: https://reddit.com/r/CUDA/comments/1tpar2n/new_ai_system_writes_speedoflight_blackwell_cuda/

A novel AI performance engineering system, developed by doubleAI, has demonstrated an impressive capability: writing highly optimized CUDA kernels for NVIDIA's upcoming Blackwell architecture. The system achieved top performance on NVIDIA's SOL-ExecBench benchmark, suggesting its ability to reach near 'speed-of-light' efficiency for demanding computational tasks. This breakthrough signals a significant advancement in automated code optimization for advanced GPU hardware.

The implications for future AI and High-Performance Computing (HPC) workloads are substantial. By automating the generation of highly efficient, hardware-specific GPU code, this AI system could drastically reduce the manual effort traditionally required for performance tuning. It paves the way for developers to more easily extract maximum performance from new architectures like Blackwell, accelerating the development cycle and pushing the limits of what's achievable in complex computational domains.

Comment: Automating kernel optimization for Blackwell is a game-changer. If this AI can consistently hit SOL benchmarks, it could drastically reduce manual optimization efforts for new GPU architectures.

ThriftAttention: Selective Mixed Precision for Long-Context FP4 Attention (r/CUDA)

Source: https://reddit.com/r/CUDA/comments/1tny4lv/thriftattention_selective_mixed_precision_for/

ThriftAttention introduces an innovative approach to optimize attention computation in large language models by selectively applying mixed precision. The core concept revolves around performing only the most critical parts of the attention mechanism using FP16 (half-precision floating-point), while the bulk of the computation is handled in FP4 (quarter-precision floating-point). This strategy aims to achieve near-FP16 accuracy while benefiting from the significantly higher inference efficiency of FP4.

This technique offers substantial advantages for processing long-context models, as it dramatically reduces VRAM usage and boosts processing speed. For scenarios where the FP16 budget is limited, ThriftAttention presents a compelling solution to achieve higher throughput and a lower memory footprint on NVIDIA GPUs. Its focus on intelligent precision selection represents a crucial step forward in making larger, more complex AI models viable on existing and future hardware by optimizing memory bandwidth and computational resources.

Comment: FP4 for long-context attention, while claiming near-FP16 accuracy, is a massive win for VRAM-constrained inference. This could enable much larger models to run efficiently on consumer-grade GPUs.