PassMark - Videocard Comparison (2024)

Performance of selected Video Cards can be found below. The values for the Video Cards aredetermined from thousands of PerformanceTestbenchmark results and is updated daily.

  • 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);}

Add Videocards above to start comparisons.

... or visit one of the following popular comparisons (in the last day) below.

GeForce RTX 3060 vs GeForce RTX 3060 Ti
GeForce RTX 3060 Ti vs GeForce RTX 3070
GeForce RTX 3070 Ti vs GeForce RTX 3070
GeForce RTX 3060 vs GeForce RTX 3070
GeForce RTX 4090 vs GeForce RTX 3090 Ti
Radeon RX 6600 vs Radeon RX 6600 XT
GeForce GTX 1650 vs GeForce GTX 1050 Ti
GeForce RTX 3050 vs GeForce RTX 2060
GeForce GTX 1660 SUPER vs GeForce RTX 2060
GeForce RTX 3050 Laptop GPU vs GeForce RTX 3050 Ti Laptop GPU
GeForce RTX 3050 vs GeForce GTX 1660 SUPER
Radeon RX 6700 XT vs GeForce RTX 3060 Ti
GeForce RTX 3060 vs GeForce GTX 1660 SUPER
GeForce RTX 3090 Ti vs GeForce RTX 3090
GeForce RTX 3050 vs GeForce RTX 3060
GeForce RTX 3070 Ti vs GeForce RTX 3080
Radeon RX 6600 vs GeForce RTX 3060
GeForce RTX 3060 vs GeForce RTX 2060
GeForce GTX 1660 SUPER vs GeForce GTX 1660 Ti
Radeon RX 6600 XT vs GeForce RTX 3060
GeForce RTX 3050 vs Radeon RX 6600
GeForce RTX 3070 vs GeForce RTX 3080
GeForce GTX 1660 SUPER vs GeForce RTX 2060 SUPER
GeForce RTX 4090 vs GeForce RTX 3090
Radeon Ryzen 7 4800U vs GeForce GTX 1660
Radeon RX 6700 vs Radeon RX 6650 XT
Radeon RX 6700 vs Radeon RX 6700 XT
GeForce RTX 3060 vs GeForce RTX 2060 SUPER
GeForce GTX 1660 vs GeForce GTX 1060
GeForce RTX 3050 Ti Laptop GPU vs GeForce RTX 3060 Laptop GPU

PassMark - Videocard Comparison (2024)

FAQs

What is passmark in graphics card? ›

The passmark score makes it possible to objectively compare the performance of processors (and other PC components, eg the graphics card). The score is the result of a benchmark, a series of calculations that are performed repeatedly. A higher score is better.

How do I compare which GPU is better? ›

Tools and benchmarks are programs that test and measure the performance and quality of your graphics card. They can help you compare different graphics cards based on their scores, ratings, or results. Some of the most popular tools and benchmarks include GPU-Z, 3DMark, and UserBenchmark.

What is the best GPU benchmark site? ›

If you are wondering which GPU benchmark to try on your PC, then read on to find some good options to consider.
  • 1 3DMark.
  • 2 Superposition.
  • 3 Cinebench 2024.
  • 4 FurMark.
  • 5 In-game benchmarks.
May 24, 2024

What is PassMark used for? ›

PassMark runs heavy mathematical calculations that stress the CPU's performance at compression, encryption, and physics-related tasks. 3DMark measures a system's ability to handle 3D graphics for gaming.

Is 4060 worth buying? ›

The RTX 4060 is not a disaster. Ultimately, it a very capable 1080p graphics card, a technical upgrade on the RTX 3060, and (unlike several other RTX 40 series GPUs) arrives at a reasonable price.

Are AMD GPUs better than Nvidia? ›

Both Nvidia and AMD make great graphics cards, but Nvidia is still in the lead. If you care about ray tracing, streaming, video production, or professional applications, Nvidia graphics cards are the better choice.

How do I know which graphics card is better than others? ›

The Resolution and FPS bars give a rough idea of how well each graphics card performs with mainstream, demanding games at the given specification.

Is a 4060 better than a 3060? ›

Together, they give the RTX 4060 a healthy FPS boost in games that support the tech. Leaving that aside, the RTX 4060 still outperforms the RTX 3060 by a fair enough margin, and considering the relative launch prices of the two, the RTX 4060 is absolutely the better card of the two.

How to check graphics card quality? ›

Use Settings to see your display adapter

Select Display, and then scroll down and click Advanced display if you're on Windows 11. If you're wondering how to check the graphics card in a laptop running Windows 10, this option appears as Advanced display settings instead.

Is 3DMark a good GPU benchmark? ›

The best benchmarks are games. Preferably many games. 3d mark is good to make sure your CPU and GPU are performing as expected and to compare their relative performance to other people with that setup, but isn't a great indication of one configuration vs another in games.

How accurate is GPU UserBenchmark? ›

How reliable, secure and accurate is UserBenchmark? Absolutely, although I would recommend using the software with other softwares to compare against it, 3D Mark is my personal recommendation. In terms of best benchmarking software, this would be my ranking 1.

What is the #1 GPU in the world? ›

Search Best Graphics Cards
RankDevicePopularity
1NVIDIA GeForce RTX 4090 DirectX 12.01.8
2NVIDIA GeForce RTX 4090 D DirectX 12.00.0
3AMD Radeon RX 7900 XTX DirectX 12.01.1
4NVIDIA GeForce RTX 4080 SUPER DirectX 12.00.5
70 more rows

What is the most realistic graphics card? ›

The quick list. The RTX 4090 is where it's at. This is the graphics card that truly represents a genuinely next-generation experience, but it's also very expensive. However, if you're looking for the best graphics card in terms of performance, look no further.

What is the fastest graphics card in the world? ›

Best 4K Graphics Card for High-Refresh Gaming (Nvidia)

Without question, at the moment we wrote this, Nvidia's GeForce RTX 4090 is the single fastest graphics card that money can buy. Nothing else even comes close, with today's second-place cards trailing it by 30% to 40% in many benchmarks.

What is the difference between CPU mark and PassMark? ›

The CPUmark value is a measure of the CPU's performance. The PassMark rating is a measure of the entire system's performance. If you want to understand how all the individual scores are combined into Mark values you can find the PerformanceTest formula documented here.

What benchmark score is good? ›

A good CPU benchmark score is generally considered to be 10,000 or higher on PassMark, while a score of 5,000 or higher is considered to be good. However, this can vary depending on the specific benchmark and the tasks you will be using the CPU for.

Is a 3070 better than a 4060? ›

Generally, yes! The RTX 4060 often outperforms the 3070, especially in newer games optimized for its architecture. Surprisingly, you can sometimes find an RTX 4060 for less than a used RTX 3070. The 4060 has newer technologies like DLSS 3, which can boost frame rates significantly.

Is Pass Mark free? ›

Versions of Performance Test are avilable for FREE on Linux, Mac, Android, and iOS. All CPU Tests have been designed to be fully comparable across all operating systems and CPU architectures. Our entire Suite of tests; CPU, Memory, Disk, Graphics. Available on iOS and Android devices.

Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6601

Rating: 4.6 / 5 (46 voted)

Reviews: 93% 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.