PassMark - Radeon RX 7900 XTX (2024)

Over 3,900 GPUs Benchmarked

Price and performance details for the Radeon RX 7900 XTX can be found below.This is made using thousands of PerformanceTestbenchmark results and is updated daily.

  • The first graph shows the relative performance of the videocard compared to the 10other common videocards in terms of PassMark G3D Mark.
  • The 2nd graph shows the value for money, in terms of the G3DMark per dollar.
  • VIDEO CARD
  • High End
  • High Mid Range
  • Low Mid Range
  • Low End
  • Best Value
  • Common
  • Market Share
  • Compare0
  • Video Card Mega List
  • Search Model
  • GPU Compute Video Card Chart
  • Power PerformanceVideo Card Chart
  • 2D GraphicsVideo Card List

' + newMsg + '

';toast.style.backgroundColor = "#AE0034";launch_toast();//toast.innerHTML = oldText;//toast.style.backgroundColor = oldBgColor;}}_AddGPU(GPUId, GPUName, GPUCount) {GPUCount = typeof GPUCount !== 'undefined' ? parseInt(GPUCount) : 1;GPUId = parseInt(GPUId);for( var i = 0; i < this.GPUs.length; i++ )if( this.GPUs[i].GPUId == GPUId && this.GPUs[i].GPUCount == GPUCount )return true; // Already addedif( this.GPUs.length < MAX_COMPARE ){console.log( "Index: "+this.GPUs.length+", GPUId: "+GPUId+", GPUName: "+GPUName+", GPUCount: "+GPUCount);this.GPUs.push(new GPU(GPUId, GPUName, GPUCount));return true;}return false;}removeGPU(GPUId, GPUCount) {if( this._RemoveGPU(GPUId, "", GPUCount) ){let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "remove",gpuid: GPUId,gpucount: GPUCount},success: function( data ) {console.log(data);_this.UpdateGUI();},});}}_RemoveGPU(GPUId, GPUName, GPUCount) {GPUCount = typeof GPUCount !== 'undefined' ? GPUCount : 1;for( var i = 0; i < this.GPUs.length; i++ )if( this.GPUs[i].GPUId == GPUId && this.GPUs[i].GPUCount == GPUCount ){this.GPUs.splice(i,1);return true;}return false;}removeAll() {this.GPUs.length = 0;let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "removeAll"},success: function( data ) {console.log(data);_this.UpdateGUI();},});}_RemoveAll() {this.GPUs.length = 0;}CompareGPUs(interactive) {if( this.GPUs.length < 2 ){if(interactive) alert( "Minimum of 2 videocards are required for comparison.");return;}// Build Param Stringlet paramString1 = "";let paramString2 = "";for( let i = 0; i < this.GPUs.length; i++ ){if( i ){paramString1 += " vs ";paramString2 += "vs";}var name = this.GPUs[i].GPUName;var n = name.indexOf("@");if( n > 0 ){name = name.substr( 0, n-1 );}name = name.replace( /\//g, "", name );name = name.replace( /Intel\sCore\b/i, "Intel " );name = name.replace( /\s+/g, " ", name );paramString1 += name;paramString2 += "" + this.GPUs[i].GPUId;if( typeof this.GPUs[i].GPUCount !== 'undefined' && Number.isInteger( this.GPUs[i].GPUCount ) && this.GPUs[i].GPUCount > 1 )paramString2 += "." + this.GPUs[i].GPUCount.toString();}// Redirect to comparison pagelet locationHref = "/compare";window.location.href = encodeURI(locationHref +"/" + paramString2 +"/" + paramString1.replace(/\s/g, "-"));}}function updateSidebar(){let objSidebar = document.getElementById("sidebar");if( !objSidebar ){console.log( "Error: Object 'sidebar' not found!" );return;}console.log( "UpdateSideBar() Max Compare: " + MAX_COMPARE );console.log( myCmp.GPUs );let pSidebar = document.getElementById("sidebar_default_text");let tableSidebar = document.getElementById( "sidebar_table" );let buttonSidebar = document.getElementById( "sidebar_button" );let divTableSidebar = document.getElementById( "div_sidebar_table" );pSidebar.style.display = (myCmp.GPUs.length < 2) ? "block":"none";divTableSidebar.style.display = "block";buttonSidebar.style.display = "block";// Remove all previous rowswhile( tableSidebar.hasChildNodes() )tableSidebar.removeChild( tableSidebar.lastChild );// Headerlet header = tableSidebar.createTHead();let headRow = header.insertRow();let headCell = document.createElement("th");let col2 = headRow.insertCell();let col1 = headRow.insertCell();col1.setAttribute( "class", "ta-center" );col2.appendChild( document.createTextNode( "Compare List" ) );col1.appendChild( document.createTextNode( "" ) );// Create new rows for GPUslet body = tableSidebar.createTBody();let i;for( i = 0; i < myCmp.GPUs.length; i++ ){row = body.insertRow( -1 );row.setAttribute( "id", "" + myCmp.GPUs[i].GPUId );if( i % 2 )row.setAttribute( "class", "alt" );col2 = row.insertCell();col2.appendChild( document.createTextNode( "" + (i+1) + ": " + myCmp.GPUs[i].GPUName ));col1 = row.insertCell( -1 );col1.setAttribute( "class", "ta-center" );let but = document.createElement( "button" );but.appendChild( document.createTextNode("X") );but.onclick = function(id, numGPUs) {return function(){myCmp.removeGPU(id, numGPUs );anim();};}(myCmp.GPUs[i].GPUId, myCmp.GPUs[i].GPUCount > 1 ? myCmp.GPUs[i].GPUCount : 1);col1.appendChild( but );}if( i < MAX_COMPARE ){let row = body.insertRow( -1 );row.setAttribute( "id", "selectCPU" );if( i % 2 )row.setAttribute( "class", "alt" );let label = document.createElement( "label" );label.setAttribute("for", "autocomplete");label.setAttribute("style", "color: #00496B; font-size:10px;");label.appendChild( document.createTextNode("Add other Videocard:") );let img = document.createElement( "img" );img.setAttribute("class", "icon-s-comp");img.setAttribute("src", "/img/compsearch.svg");let x = document.createElement( "input" );x.setAttribute( "id", "autocomplete" );x.setAttribute( "placeholder", "Intel Core ..." );x.setAttribute( "type", "text" );//x.setAttribute( "class", "input-box" );let col = row.insertCell();col.setAttribute( "colspan", 2 );col.appendChild( label );col.appendChild( document.createElement( "br" ));col.appendChild( img );col.appendChild( x );}}var myCmp = new MyCompare();$(document).ready( function( $) {// Floating sidebar// $('#sidebar').portamento();myCmp.UpdateGUI();});$(document).on('keydown.autocomplete', '#autocomplete', function() {jQuery(this).autocomplete({//lookup: lookupGPUs,serviceUrl: '/autocomplete/gpu/',onSelect: function(suggestion){myCmp.addGPU( suggestion.data, suggestion.value, 1 );},width: 300,minChars: 2});});$("#sidebar_minimize, #sidebar_restore").click( function(event) {event.preventDefault();jQuery('#portamento_container').toggle();jQuery('#sb_restore').toggle();});$("#sidebar_button").on( "click", function() {myCmp.CompareGPUs(true);});function anim() {var indexcmp = document.getElementById('indexcmp');if(indexcmp.innerHTML < 3) {$(".cmp-header a svg").addClass("anim-class");$(".cmp-header .number-cmp").addClass("anim-bounce-class");setTimeout(function () {$(".cmp-header a svg").removeClass('anim-class');}, 1500); }}function anim2() {$(".cmp-header a svg").addClass("anim-class");setTimeout(function () {$(".cmp-header a svg").removeClass('anim-class');}, 1500);}function launch_toast(toastID) {//var indexcmp = document.getElementById("indexcmp"); var toast = document.getElementById("toast"); //toast.top = indexcmp.top+30; toast.className = "show"; toast.style.display = "block"; setTimeout(function(){ toast.className = toast.className.replace("show", ""); }, 5000);}

Radeon RX 7900 XTX

Bus Interface: PCIe 4.0 x16

Max Memory Size: 24576 MB

Core Clock(s): 1855 MHz

Memory Clock(s): 2500 MHz

DirectX: 12_2

OpenGL: 4.6

Max TDP: 355 W

Videocard Category: Desktop

Other names: AMD Radeon RX 7900 XTX

Videocard First Benchmarked: 2022-12-18

G3DMark/Price: 31.52

Overall Rank:7

Last Price Change:$979.99 USD (2024-06-26)

Average G3D Mark

PassMark - Radeon RX 7900 XTX (7)

30893

Average G2D Mark: 1230
Samples: 3553

Videocard Test Suite Average Results for Radeon RX 7900 XTX

DirectX 9327 Frames/Sec
DirectX 10171 Frames/Sec
DirectX 11361 Frames/Sec
DirectX 12119 Frames/Sec
GPU Compute18738 Ops/Sec

From submitted results to PerformanceTest as of 27th of June 2024.

G3D Mark Distribution for Radeon RX 7900 XTX

Submitted Baseline Distribution Graph as of 23rd of June 2024

From submitted results to PerformanceTest V10 as of 23rd of June 2024.


MerchantPricePurchase
PassMark - Radeon RX 7900 XTX (8)$979.99 USDBuy Now!
PassMark - Radeon RX 7900 XTX (9)NAVideocard Not Available. See Other Models
PassMark - Radeon RX 7900 XTX (10)NAVideocard Not Available. See Other Models

Note: PassMark Software may earn compensation for sales from links on this site through affiliate programs.

Pricing History

G3D Mark Relative to Top 10 Common Desktop Videocards
As of 28th of June 2024 - Higher results represent better performance
VideocardAverage G3D Mark
Radeon RX 7900 XTX30,893
GeForce RTX 308025,286
GeForce RTX 307022,389
GeForce RTX 3060 Ti20,536
GeForce RTX 3060 12GB17,042
GeForce RTX 206014,151
GeForce GTX 107013,511
GeForce GTX 106010,072
GeForce GTX 16507,880
GeForce GTX 1050 Ti6,316
PassMark Software © 2008-2024
Videocard Value (G3D Mark / $Price )
As of 28th of June 2024 - Higher results represent better value
VideocardAverage G3D Mark
GeForce RTX 3060 Ti64.18
GeForce RTX 3060 12GB60.87
GeForce GTX 165053.60
GeForce RTX 307053.31
GeForce RTX 308051.60
GeForce GTX 106035.97
Radeon RX 7900 XTX31.52
GeForce RTX 206031.01
GeForce GTX 107025.49
GeForce GTX 1050 Ti13.74
PassMark Software © 2008-2024
Last 5 Baselines for Radeon RX 7900 XTX
Most recent listed first
VideocardAverage G3D Mark
BL2132556 - Jun 27 202436963
BL2132223 - Jun 26 202434289
BL2132203 - Jun 26 202435507
BL2132194 - Jun 26 202433179
BL2131899 - Jun 26 202420666
PassMark Software © 2008-2024
Popular comparisons for Radeon RX 7900 XTX
As of 28th of June 2024 - Higher results represent better performance
VideocardAverage G3D Mark
Radeon RX 7900 XTX30,893
GeForce RTX 4090 vs Radeon RX 7900 XTX38,622 (+25.0%)
GeForce RTX 4080 vs Radeon RX 7900 XTX34,615 (+12.0%)
GeForce RTX 4080 SUPER vs Radeon RX 7900 XTX34,120 (+10.4%)
GeForce RTX 4070 Ti vs Radeon RX 7900 XTX31,762 (+2.8%)
GeForce RTX 4070 Ti SUPER vs Radeon RX 7900 XTX31,671 (+2.5%)
GeForce RTX 4070 SUPER vs Radeon RX 7900 XTX29,991 (-2.9%)
GeForce RTX 3090 Ti vs Radeon RX 7900 XTX29,755 (-3.7%)
Radeon RX 7900 XT vs Radeon RX 7900 XTX28,860 (-6.6%)
Radeon RX 6950 XT vs Radeon RX 7900 XTX28,295 (-8.4%)
GeForce RTX 3080 Ti vs Radeon RX 7900 XTX27,183 (-12.0%)
GeForce RTX 4070 vs Radeon RX 7900 XTX26,995 (-12.6%)
PassMark Software © 2008-2024
PassMark - Radeon RX 7900 XTX (2024)

FAQs

Is the RX 7900 XTX better than the 4080? ›

When we matched up the RTX 4080 against the RX 7900 XTX, the AMD card provided better value. It was $200 cheaper while being able to deliver similar levels of 4K gaming performance. The only issue was the downgrade in ray tracing capabilities and the lack of DLSS, but beyond that, it was (and still is) a powerful GPU.

Is AMD RX 7900 XTX good for gaming? ›

Verdict. The AMD Radeon RX 7900 XTX is one of the most powerful graphics cards on the market, making it ideal for 4K gaming and creative professionals. The magic of DLSS will still prove tempting to switch over to Nvidia, but the RX 7900 XTX undoubtedly offers better value than the RTX 4090 for raw 4K performance.

What is the RX 7900 XTX equal to? ›

AMD's RX 7900 XTX is the better GPU for most people. It offers performance similar to the RTX 4080 while costing less, and that's hard to argue with. You're getting a much better value without sacrificing performance — or, at the very least, those sacrifices are balanced out by performance gaps seen with the RTX 4080.

What is the thermal issue on AMD 7900 XTX? ›

AMD says it knows why some Radeon RX 7900 XTX graphics cards can overheat, forcing the performance to throttle. Apparently, a small batch of units have a faulty vapor chamber. Scott Herkleman, SVP and GM of AMD's Graphics Business Unit, discussed the root cause behind the thermal issues in an interview with PCWorld.

How much power does a 4080 Super draw compared to a 7900 XTX? ›

In general, even at 1440p and 4K, the 4080 Super ends up being far more efficient than the 7900 XTX: It used on average 92W less power at 1440p, and 65W less power at 4K. (Note that the lower power use at 1080p is mostly because CPU and other system bottlenecks prevent the GPUs from reaching their full potential.)

Can the 7900 XTX do ray tracing? ›

Just remember that while the RX 7900 XTX is more than capable of playing games with ray tracing enabled, GeForce GPUs simply offer better value in this regard with much higher levels of performance. It is, however, a better buy than its sibling, the RX 7900 XT, even with a $100 discount.

What processor goes well with 7900 XTX? ›

Best CPU for RX 7900 XTX in 2024 – our top picks
  • AMD Ryzen 9 7950X.
  • Intel Core i9-13900K.
  • AMD Ryzen 9 7900X3D.
  • Intel Core i7-13700K.
  • AMD Ryzen 5 7600X.
May 13, 2024

Does 7900 XTX need DDR5? ›

The Radeon RX 7900 XTX handles 4K gaming with ease and will keep you with an incredibly high frame rate for esports titles. And with FSR 3.0 coming next year, you'll be able to get even more power from it! DDR5 RAM is an absolute must-have for a build like this, and only partly because its required with the AM5 socket.

What is the Nvidia equivalent to the 7900 XT? ›

The RX 7900 XT launched in November 2022 with an MSRP of $899. This is the lowest price we've seen since then, with the previous low being $699.99 on Black Friday. This is a very powerful card that can handle gaming at up to 4K resolution. Compared to NVIDIA, it's comparable to the GeForce RTX 4070 Ti.

What is the peak power draw of the RX 7900 XTX? ›

Being a dual-slot card, the AMD Radeon RX 7900 XTX draws power from 2x 8-pin power connectors, with power draw rated at 355 W maximum.

What is the recommended power supply for the RX 7900 XTX? ›

The following are recommended minimum requirements for installation of AMD Radeon™ RX 7900 XTX graphics cards: • PC with at least one PCI-Express x16 graphics slot available on the motherboard. Minimum 800W system power supply • Minimum of 8 GB of system memory, 16GB is recommended.

What is the fastest 7900 XTX? ›

Sapphire's Nitro+ is the fastest, quietest Radeon RX 7900 XTX we've tested. It's fantastic.

What is the failure rate of the 7900 XTX? ›

AMD RX Radeon 7900 XTX (reference) Failure rate would be 11% opposed to 1% This is a worse failure than Nvidia's melting power adapters, even if not as dramatic sounding. Scott Herkelman probably has been called a few times by Lisa Su for explanations. More than 10% is too much.

Is the 7900 XTX future proof? ›

How many years will the 7900 XT last? We know the RX 7900 XT isn't future-proof, but realistically it's a very capable GPU that will last for around five years from launch – perhaps even longer if you don't need a very powerful system in further years to come.

How hot does the 7900xtx run? ›

If you see it creeping up towards 110 degrees, you'll want to contact AMD using the link at the top of this article. (For reference, our Radeon RX 7900 XTX junction temps maxed out at 84 degrees.)

Which is better 7900 XTX or 4090? ›

Ray Tracing + Upscaling Performance

In games where we could test with ray tracing and FSR or DLSS upscaling, at 1080p, the 7900 XTX was on average 27% slower, indicating a reasonable performance advantage for the RTX 4090, even at this lower resolution.

What is the 7900 XT equivalent to? ›

The RX 7900 XT launched in November 2022 with an MSRP of $899. This is the lowest price we've seen since then, with the previous low being $699.99 on Black Friday. This is a very powerful card that can handle gaming at up to 4K resolution. Compared to NVIDIA, it's comparable to the GeForce RTX 4070 Ti.

Which AMD GPU is equivalent to 4080? ›

The Radeon RX 7900 XTX is AMD's flagship card, and it's mean enough to challenge the higher end GeForce RTX 40 series cards. When you look at raw benchmarks (without raytracing or DLSS), the RX 7900 XTX in on par with the RTX 4080 SUPER in several games.

Is RX 7900 XT better than RTX 4070 Ti? ›

Overall, the RX 7900 XT is slightly ahead. The margins are small in most cases, but there are a enough small wins here for AMD's GPU to come out on top in most titles, even if it's only by a few frames. At 4K , the RTX 4070 Ti Super only won in a single game: Horizon Zero Dawn.

Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6274

Rating: 4.6 / 5 (66 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.