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 most powerful video card right now? ›

✅ You want the best: The RTX 4090 is simply the most powerful GPU you can buy for your gaming PC today. The silicon inside it is monstrously powerful, and along with DLSS3 and Frame Generation, it provides a truly next-gen experience. ✅ You want to nail 4K gaming: This is the card that makes 4K gaming buttery smooth.

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 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.

What is the most powerful graphics card in existence? ›

The Nvidia GeForce RTX 4090 is the most powerful graphics card ever by a country mile, and is has undoubtedly changed the standards of PC gaming. Not only does it run circles around its predecessor, the RTX 3090 Ti, but it also benefits from new AI tricks that will help keep it on the throne for even longer.

What graphics card is fastest? ›

Nvidia GeForce RTX 4090

For just about everything, the RTX 4090 is the fastest consumer GPU on the market, with a big enough 24GB frame buffer to handle high-res games and video editing as well as streaming. If you have the budget, this is the Nvidia card to get.

What graphics card do pro gamers use? ›

NVIDIA is by far the most represented graphics card manufacturer among the professional gamers that we analyze; around 97% of analyzed professionals are using an NVIDIA-based card.

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 PassMark 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.

References

Top Articles
Latest Posts
Article information

Author: Roderick King

Last Updated:

Views: 6032

Rating: 4 / 5 (51 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Roderick King

Birthday: 1997-10-09

Address: 3782 Madge Knoll, East Dudley, MA 63913

Phone: +2521695290067

Job: Customer Sales Coordinator

Hobby: Gunsmithing, Embroidery, Parkour, Kitesurfing, Rock climbing, Sand art, Beekeeping

Introduction: My name is Roderick King, I am a cute, splendid, excited, perfect, gentle, funny, vivacious person who loves writing and wants to share my knowledge and understanding with you.