Asus ROG Astral LC GeForce RTX 5090 32GB GDDR7 OC Edition - ASUS | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
ASUS

Asus ROG Astral LC GeForce RTX 5090 32GB GDDR7 OC Edition

SKU: ROG-ASTRAL-LC-RTX5090-O32
R 81 829.00
Out of Stock

Experience limitless GPU power with Asus ROG Astral LC GeForce RTX 5090 32GB GDDR7 OC Edition, featuring liquid cooling, DLSS 4, and cosmic-inspired ARGB design.

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Step into the future of elite GPU design with the Asus ROG Astral LC GeForce RTX 5090 OC Edition, the flagship release in a family inspired by the infinite beauty and potential of the cosmos. Engineered for power users, competitive gamers, and content professionals, this next-generation graphics card redefines what's possible through unmatched cooling efficiency, intelligent power delivery, and breakthrough AI rendering capabilities.

The ASUS ROG Astral LC GeForce RTX 5090 OC Edition features a custom-built 360mm AIO liquid cooling system with an extra-thick 38mm radiator and three performance-grade fans. A full-coverage copper cold plate directly cools all heat-generating components, resulting in up to 30% better performance than traditional air cooling. Additionally, a low-profile heatsink and axial-tech fan quietly exhaust heat from the power delivery system, ensuring long-term reliability.

Advanced 80-amp MOSFETs enable high overclocking potential while maintaining acoustic and thermal balance. A phase-change thermal pad boosts heat transfer efficiency to sustain performance under pressure.

To ensure maximum stability and GPU-first power delivery, the ASUS ROG Thor III 1600W Titanium Gaming Power Supply is the perfect companion. With GPU-First architecture, it enhances voltage stability by up to 45%, delivering consistent power during intensive gaming and overclocking scenarios, unlocking the full potential of the RTX 5090 platform.

Backed by NVIDIA’s Blackwell architecture, DLSS 4, and 32GB of ultra-fast GDDR7 memory, the Asus ROG Astral LC GeForce RTX 5090 OC Edition sets a new benchmark for immersive, high-performance computing. Indirect Aura ARGB lighting and PCIe 5.0 readiness complete this cutting-edge GPU, purpose-built for tomorrow’s digital frontier.

FEATURES:

  • Inspired by the cosmos: ROG Astral design reflects a bold new aesthetic inspired by space, symbolising limitless innovation
  • Blackwell Architecture with DLSS 4: Unlocks next-gen ray tracing, AI-rendered graphics, and multi-frame generation
  • 32GB GDDR7 memory: Massive memory capacity with ultra-fast bandwidth for 4K+ gaming and intensive creative workloads
  • Premium 360mm AIO liquid cooler: Extra-thick 38mm radiator with triple-fan configuration for extreme cooling performance
  • Full-coverage copper cold plate: Efficiently dissipates heat from GPU, VRAM, and power delivery components
  • 80-Amp PowerStage MOSFETs: Supports high overclocking potential while maintaining thermal and acoustic balance
  • Axial-tech fan and heatsink: Cools power circuitry with low-profile design for quiet, focused airflow
  • Phase-change GPU thermal pad: Enhances thermal transfer for sustained performance and component longevity
  • PCIe 5.0 ready: Delivers high-speed data throughput and future-proof connectivity
  • Aura ARGB lighting support: Customisable indirect lighting for coordinated system aesthetics via Aura Sync
  • Metal reinforced shroud and backplate: Provides durability and visual refinement for high-end builds
  • GPU tweak III compatible: Enables real-time monitoring, tuning, and custom fan profiles with intuitive software

SPECIFICATIONS:

  • Graphic Engine: NVIDIA® GeForce RTX™ 5090
  • AI Performance: 3593 TOPs
  • Bus Standard: PCI Express 5.0
  • OpenGL: OpenGL®4.6
  • Video Memory: 32GB GDDR7
  • Engine Clock:
    • OC mode: 2610 MHz
    • Default mode: 2580 MHz(Boost clock)
  • CUDA Core: 21760
  • Memory Speed: 28 Gbps
  • Memory Interface: 512-bit
  • Resolution: Digital Max Resolution 7680 x 4320
  • Interface:
    • Yes x 2 (Native HDMI 2.1b)
    • Yes x 3 (Native DisplayPort 2.1b)
    • HDCP Support Yes (2.3)
  • Maximum Display Support: 4
  • NVlink/ Crossfire Support: No
  • Software: Asus GPU Tweak III & MuseTree & GeForce Game Ready Driver & Studio Driver: please download all software from the support site.
  • Dimensions: 35.76 x 14.93 x 7.6 cm
  • Recommended PSU: 1000W
  • Power Connectors: 1 x 16-pin
  • Slot: 3.8 Slot
  • AURA SYNC: ARGB

WHAT'S IN THE BOX:

  • Asus ROG Astral LC GeForce RTX 5090 32GB GDDR7 OC Edition x1
  • Speedsetup Manual
  • 1 x ROG Graphics Card Holder
  • ROG Velcro Hook & Loop
  • ROG Magnet
  • ROG Graphics Card Keycap
  • ROG PCB Ruler
  • Thank You Card
  • Adapter Cable (1 to 4)​ - x1
Brand ASUS
Colour Black
Form Factor -
Interface PCI Express® 5.0
Capacity -
Memory Capacity 32GB
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!