PassMark - CPU Comparison (2024)

Performance of selected CPUs can be found below. The values for the CPU are determined from thousands ofPerformanceTest benchmark results and is updated daily.

  • cpus
  • High End
  • High Mid Range
  • Low Mid Range
  • Low End
  • Best Value(On Market)
  • Best Value XYScatter
  • Best Value(All time)
  • New Desktop
  • New Laptop
  • New Server
  • New Mobile
  • Single Thread
  • Systems withMultiple CPUs
  • Overclocked
  • PowerPerformance
  • CPU Mark by Socket Type
  • Cross-Platform CPU Performance
  • Top Gaming CPUs
  • CPU Mega List
  • Search Model
  • Compare0
  • Common
  • MostBenchmarked
  • AMD vs Intel Market Share
  • Year on Year Performance

' + newMsg + '

';toast.style.backgroundColor = "#AE0034";launch_toast();//toast.innerHTML = oldText;//toast.style.backgroundColor = oldBgColor;}}_AddCPU(CPUId, CPUName, CPUCount) {CPUCount = typeof CPUCount !== 'undefined' ? parseInt(CPUCount) : 1;CPUId = parseInt(CPUId);for( var i = 0; i < this.CPUs.length; i++ )if( this.CPUs[i].CPUId == CPUId && this.CPUs[i].CPUCount == CPUCount )return true; // Already addedif( this.CPUs.length < MAX_COMPARE ){console.log( "Index: "+this.CPUs.length+", CPUId: "+CPUId+", CPUName: "+CPUName+", CPUCount: "+CPUCount);this.CPUs.push(new CPU(CPUId, CPUName, CPUCount));return true;}return false;}removeCPU(CPUId, CPUCount) {if( this._RemoveCPU(CPUId, "", CPUCount) ){let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "remove",cpuid: CPUId,cpucount: CPUCount},success: function( data ) {console.log(data);_this.UpdateGUI();},});}}_RemoveCPU(CPUId, CPUName, CPUCount) {CPUCount = typeof CPUCount !== 'undefined' ? CPUCount : 1;for( var i = 0; i < this.CPUs.length; i++ )if( this.CPUs[i].CPUId == CPUId && this.CPUs[i].CPUCount == CPUCount ){this.CPUs.splice(i,1);return true;}return false;}removeAll() {this.CPUs.length = 0;let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "removeAll"},success: function( data ) {console.log(data);_this.UpdateGUI();},});}_RemoveAll() {this.CPUs.length = 0;}CompareCPUs(interactive) {if( this.CPUs.length < 2 ){if(interactive) alert( "Minimum of 2 CPUs are required for comparison");return;}// Build Param Stringlet paramString1 = "";let paramString2 = "";for( let i = 0; i < this.CPUs.length; i++ ){if( i ){paramString1 += " vs ";paramString2 += "vs";}var name = this.CPUs[i].CPUName;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.CPUs[i].CPUId;if( typeof this.CPUs[i].CPUCount !== 'undefined' && Number.isInteger( this.CPUs[i].CPUCount ) && this.CPUs[i].CPUCount > 1 )paramString2 += "." + this.CPUs[i].CPUCount.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.CPUs );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.CPUs.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 CPUslet body = tableSidebar.createTBody();let i;for( i = 0; i < myCmp.CPUs.length; i++ ){row = body.insertRow( -1 );row.setAttribute( "id", "" + myCmp.CPUs[i].CPUId );if( i % 2 )row.setAttribute( "class", "alt" );col2 = row.insertCell();col2.appendChild( document.createTextNode( "" + (i+1) + ": " + myCmp.CPUs[i].CPUName ));col1 = row.insertCell( -1 );col1.setAttribute( "class", "ta-center" );let but = document.createElement( "button" );but.appendChild( document.createTextNode("X") );but.onclick = function(id, numCPUs) {return function(){myCmp.removeCPU(id, numCPUs );anim();};}(myCmp.CPUs[i].CPUId, myCmp.CPUs[i].CPUCount > 1 ? myCmp.CPUs[i].CPUCount : 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 CPU:") );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: lookupCPUs,serviceUrl: '/autocomplete/cpu/',onSelect: function(suggestion){myCmp.addCPU( suggestion.data, suggestion.value, 1 );},showNoSuggestionNotice: true,noSuggestionNotice: "Failed to locate CPU model. Try looking at mega list to see all names instead.",width: 300,minChars: 3,preventBadQueries: true,deferRequestBy: 200});});$("#sidebar_minimize, #sidebar_restore").click( function(event) {event.preventDefault();jQuery('#portamento_container').toggle();jQuery('#sb_restore').toggle();});$("#sidebar_button").on( "click", function() {myCmp.CompareCPUs(true);});function anim() {var indexcmp = document.getElementById('indexcmp');if(indexcmp.innerHTML < MAX_COMPARE) {$(".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 CPUs above to start comparisons.

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

AMD Ryzen 5 5600 vs AMD Ryzen 5 3600
Intel Core i7-1355U vs Intel Core i5-1335U
AMD Ryzen 5 7520U vs Intel Core i5-1235U
AMD Ryzen 5 5600 vs AMD Ryzen 5 5500
Intel Core i5-12400F vs AMD Ryzen 5 5600X
AMD Ryzen 5 5600 vs AMD Ryzen 5 5600X
AMD Ryzen 7 7800X3D vs AMD Ryzen 7 7700X
Intel Core i5-1235U vs AMD Ryzen 5 5500U
Intel Core i3-N305 vs Intel N100
Intel Core i3-N305 vs Intel Core i3-1215U
Intel Core i5-1235U vs Intel Core i3-1215U
Intel Core i5-1335U vs Intel Core i5-1235U
Intel Core i7-1255U vs Intel Core i5-1235U
Intel Core i7-12650H vs Intel Core i5-12450H
Intel N97 vs Intel N100
Intel N100 vs Intel Celeron N5105 @ 2.00GHz
Intel N95 vs Intel N100
AMD Ryzen 5 5600GT vs AMD Ryzen 5 5600
AMD Ryzen 3 7320U vs Intel Core i3-1215U
Intel Core i5-13400F vs Intel Core i5-12400F
Intel Core i7-14700K vs Intel Core i9-14900K
AMD Ryzen 7 5700X vs AMD Ryzen 5 5600X
Intel Core Ultra 9 185H vs Intel Core Ultra 7 155H
Intel Core i5-1335U vs AMD Ryzen 5 7530U
MT6762 vs Intel Celeron J4125 @ 2.00GHz
Intel Core i7-13620H vs Intel Core i7-13650HX
AMD Ryzen 9 7950X3D vs Intel Core i9-13900K
Intel Core i5-14500 vs Intel Core i5-13500
AMD Ryzen 5 5500 vs AMD Ryzen 5 3600
Intel Core Ultra 7 155H vs Intel Core i7-13700H

PassMark - CPU Comparison (2024)

FAQs

What is the CPU PassMark score? ›

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.

Is a higher or lower CPU mark better? ›

Higher is better, but take the score with a grain of salt when comparing CPUs from different generations, as the means of executing instructions vary.

What is the CPU benchmark process? ›

CPU benchmarking is the process of evaluating the performance of a CPU by running various tests and simulations designed to measure its speed, efficiency, and overall capabilities. These tests are standardized procedures that provide quantitative data, allowing for meaningful comparisons between different CPUs.

How to get CPU mark? ›

Method one: Steps for how to benchmark a CPU
  1. Download and install necessary benchmark tools and hardware monitor.
  2. Run the CPU benchmarks three times each and average the resulting scores.
  3. Compare the scores to published scores online to see where your CPU lands.
Jul 24, 2023

What is a good CPU score? ›

For typical office work and light media content. We recommend a PCMark 10 Productivity score 4500 or higher.

What is the PassMark score for 4K? ›

The Guideline

4K HDR (50Mbps, 10-bit HEVC) file: 17000 PassMark score (being transcoded to 10Mbps 1080p)

What CPU percentage is too high? ›

Keep in mind that you can expect CPU usage to increase as a process or an application serves requests. However, if you consistently see CPU usage remain at a high level (80 percent or greater) for prolonged periods, the performance of your system or application will suffer.

What is most accurate CPU benchmark? ›

Cinebench. In just 10 minutes, Cinebench by Maxon gives you an accurate and more “real-world” CPU benchmark score using amazing image rendering techniques that max out all your CPU resources.

What should a good CPU be? ›

For ideal results, a machine running an Intel® Core™ i7 processor or better with at least 8GB of RAM is sufficient for playing games and streaming at the same time. If you're hoping for less impact on your gaming performance, an Intel® Core™ i9 processor makes for an even smoother experience.

How to tell how good a CPU is? ›

If you want a good rule of thumb, CPUs with higher clock speeds and newer architectures are faster at just about everything, but for productivity tasks, a modern one with more cores will usually be quicker.

How do I test my CPU? ›

How to Perform a Stress Test on Your PC's CPU
  1. Download and install Prime95 from the provided link.
  2. Open Prime95.
  3. Select “Just stress testing” after opening Prime95.
  4. Choose “Blend (all of the above)” from the options list and click “o*k.”
  5. Start the test, anticipating maximum load, noise, and heat.
Mar 15, 2024

Is Cinebench a CPU benchmark? ›

This page hosts over 250+ Cinebench scores for releases R20, 2023 and the brand-new 2024. Cinebench is a benchmarking tool created by Maxon that assesses the performance of a computer's CPU and GPU using real-world 3D rendering tasks.

Is Ryzen better than Intel? ›

The AMD Ryzen 7 and Intel Core i7 processors are both powerful options, but the better choice depends on your specific needs. Ryzen 7 CPUs often offer more cores and better multi-threaded performance, while Intel Core i7 processors generally have higher single-threaded performance and better overall value.

What does PassMark measure? ›

The PassMark CPU benchmark, like all processor benchmarks attempts to estimate how quickly a processor is able to perform a wide variety of calculations. The test issues as series of complex instructions to the processor and times how long the processor takes to complete the tasks.

What does f mean in an Intel CPU? ›

F. An F suffix marks a CPU that doesn't have integrated graphics. They must be paired with a discrete graphic card. G. The G suffix designates a CPU with additional built-in integrated graphics.

What should my CPU stats be? ›

When your computer is idle, expect 10% CPU usage or less. If you're browsing the web or using standard programs like Microsoft Office, normal CPU usage is between 10% and 30%. Gaming can push your CPU to between 50% and 90%, depending on if you have a powerful gaming PC and the latest GTA 5 mods.

What is a safe CPU percentage? ›

CPUs are designed to run safely at 100% CPU utilization. However, these situations can also impact the performance of high-intensity games and applications. Learning how to fix high CPU usage can resolve some of the most common problems. However, not all CPU issues require software fixes.

What does PassMark performance test do? ›

PerformanceTest contains many individual sub-tests and tests all the main components of a computer (CPU, video card, disk & RAM). It produces an overall score (the “PassMark rating” and scores for each component, e.g. the “CPUMark”).

What is a good CPU speed? ›

A clock speed of 3.5 GHz to 4.0 GHz is generally considered a good clock speed for gaming but it's more important to have good single-thread performance. This means that your CPU does a good job of understanding and completing single tasks. This is not to be confused with having a single-core processor.

References

Top Articles
Latest Posts
Article information

Author: Rubie Ullrich

Last Updated:

Views: 6034

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Rubie Ullrich

Birthday: 1998-02-02

Address: 743 Stoltenberg Center, Genovevaville, NJ 59925-3119

Phone: +2202978377583

Job: Administration Engineer

Hobby: Surfing, Sailing, Listening to music, Web surfing, Kitesurfing, Geocaching, Backpacking

Introduction: My name is Rubie Ullrich, I am a enthusiastic, perfect, tender, vivacious, talented, famous, delightful person who loves writing and wants to share my knowledge and understanding with you.