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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

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
Custom CUDA Kernels, Modded RTX 4090 48GB VRAM, & DLSS DL...
soy · 2026-05-16 · via DEV Community

soy

Custom CUDA Kernels, Modded RTX 4090 48GB VRAM, & DLSS DLL Manager

Today's Highlights

This week's top stories dive into optimizing GPU performance, from architecting custom CUDA kernels for edge inference to exploring the world of modded RTX 4090s with expanded VRAM. We also highlight a practical tool for managing NVIDIA's DLSS DLLs, empowering users to fine-tune their gaming and graphics experiences.

For edge inference, when do you drop below TensorRT/ONNX and write custom CUDA kernels? (r/CUDA)

Source: https://reddit.com/r/CUDA/comments/1t7n6gj/for_edge_inference_when_do_you_drop_below/

This discussion explores a critical decision point for developers working on edge inference: when to move beyond high-level optimization frameworks like TensorRT or ONNX Runtime and implement custom CUDA kernels. For large vision and multimodal models on resource-constrained edge devices, initial optimization passes typically involve exporting, compiling, and quantizing models with these frameworks. However, as developers push for maximum performance and efficiency, they may encounter scenarios where pre-packaged solutions fall short.

The conversation delves into the trade-offs, such as fine-grained control over memory access patterns, custom data types, or fusing operations that are not natively supported or optimally implemented by standard libraries. Understanding when to invest in custom kernel development is crucial for achieving peak performance, lower latency, and higher throughput on specialized hardware, especially when VRAM or power budgets are extremely tight. This involves a deep understanding of the GPU architecture and the specific computational bottlenecks of the model.

Comment: As a developer, this question resonates deeply. TensorRT is great for a quick win, but custom CUDA is where you squeeze out those last few milliseconds and optimize VRAM usage for tricky layers or unique dataflows on constrained edge devices.

China modded GPU (eg. 4090 48gb) --> I'm gonna figure it out. IS THERE NO ONE ELSE CURIOUS?? (r/LocalLLaMA)

Source: https://reddit.com/r/LocalLLaMA/comments/1tdldfq/china_modded_gpu_eg_4090_48gb_im_gonna_figure_it/

A user on r/LocalLLaMA has ignited curiosity about "China modded GPUs," specifically mentioning a GeForce RTX 4090 with an expanded 48GB of VRAM. While official RTX 4090 cards typically come with 24GB, these modified versions reportedly double the memory capacity, a significant upgrade for memory-intensive tasks like running large language models locally. The post highlights a lack of English-language information on these custom cards, prompting the user to investigate the technical feasibility and performance implications.

Such modifications usually involve replacing the original GDDR6X memory modules with higher-density ones and potentially flashing a custom BIOS. This trend could indicate an emerging market for cost-effective, high-VRAM solutions outside official channels, driven by the insatiable memory demands of current AI workloads, making it a compelling subject for hardware enthusiasts and AI practitioners. The community is eager for insights into the stability, cooling, and actual performance gains of these unique hardware configurations.

Comment: Doubling the VRAM on a 4090 opens up huge possibilities for local LLM users who hit memory limits. I'm keen to see the stability and performance benchmarks for these modded cards; if reliable, this is a game-changer for accessible high-VRAM computing.

DLSSEverything v1.1 - A simple version manager for DLSS2, DLSS3 and Ray Reconstruction DLLs (r/nvidia)

Source: https://reddit.com/r/nvidia/comments/1tdwvl2/dlsseverything_v11_a_simple_version_manager_for/

DLSSEverything v1.1 is a practical, open-source tool designed for NVIDIA GPU users to simplify the management of DLSS (Deep Learning Super Sampling), DLSS3, and Ray Reconstruction DLLs. This version manager allows users to quickly scan their game folders, identify current NVIDIA DLL versions, and easily switch between different versions. This is particularly useful for enthusiasts who want to test specific DLSS iterations for performance improvements, compatibility fixes, or to access features like Frame Generation, which might require newer DLLs than bundled with a game.

The tool streamlines the process of updating or downgrading these crucial files, eliminating manual file replacements and ensuring users can leverage the latest NVIDIA optimizations or revert if issues arise. Its user-friendly interface makes advanced driver and graphics feature management accessible to a broader audience, providing a valuable utility for optimizing visual fidelity and frame rates on NVIDIA hardware.

Comment: This is exactly what I needed for tweaking DLSS in games. Manually swapping DLLs is a pain, and this tool makes experimenting with different DLSS versions a breeze, ensuring I get the best performance for my RTX card.