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.

Intel Core i7-1355U vs Intel Core i5-1335U
Intel Core i5-1235U vs Intel Core i5-12450H
AMD Ryzen 5 5600 vs Intel Core i5-12400F
Intel N95 vs Intel N100
AMD Ryzen 5 7520U vs Intel Core i5-1235U
Intel Core i7-1255U vs Intel Core i5-1235U
Intel Core i3-N305 vs Intel N100
Intel N100 vs Intel Celeron N5105 @ 2.00GHz
Intel Core Ultra 5 125H vs Intel Core Ultra 7 155H
AMD Ryzen 5 5600 vs AMD Ryzen 5 5600X
Intel N200 vs Intel N100
Intel N97 vs Intel N100
AMD Ryzen 7 5800HS vs AMD Ryzen 7 5800H
AMD Ryzen 9 7950X3D vs AMD Ryzen 9 7950X
Intel Core i3-1215U vs AMD Ryzen 5 5500U
AMD Ryzen 5 5600 vs AMD Ryzen 5 5500
Intel Core i7-1355U vs Intel Core i7-1255U
AMD Ryzen 7 5700U vs AMD Ryzen 5 5500U
AMD Ryzen 7 8845HS vs AMD Ryzen 7 7840HS
AMD Ryzen 5 7600 vs AMD Ryzen 5 7600X
AMD Ryzen 5 5600GT vs AMD Ryzen 5 5600G
AMD Ryzen 5 7600 vs Intel Core i5-13400F
AMD Ryzen 5 5600 vs AMD Ryzen 5 3600
AMD Ryzen 7 7840HS vs AMD Ryzen 7 7735HS
AMD Ryzen 7 7700X vs AMD Ryzen 5 7600X
Intel Core i5-1235U vs AMD Ryzen 7 5700U
Intel Core i5-1335U vs Intel Core i5-1235U
Intel Core i5-1235U vs Intel Core i3-1215U
Intel Core i5-1235U vs Intel Core i5-1135G7 @ 2.40GHz

PassMark - CPU Comparison (2024)

References

Top Articles
Moana 2 teaser trailer: Stars Auli'i Cravalho and Dwayne Johnson
Young woman's health struggles as she plans for a breast reduction
Tsukihime -A piece of blue glass moon- Review
Tears Of The Fallen Moon Bdo
Haunted Mansion Showtimes Near Amc Classic Marion 12
Petty Bourgeoisie | Encyclopedia.com
Hallmark White Coat Ceremony Cards
Mistar Student Portal Southfield
Bowling Pro Shop Crofton Md
Leicht Perlig Biography
Lojë Shah me kompjuterin në internet. Luaj falas
Valentina Gonzalez Leak
Guide:Guide to WvW Rewards
Craigslist Louisville Com
C.J. Stroud und Bryce Young: Zwei völlig unterschiedliche Geschichten
Soorten wolken - Weerbericht, weerhistorie, vakantieweer en veel weereducatie.
What retirement account is tax-free?
[PDF] JO S T OR - Free Download PDF
Tinyzonetv.to Unblocked
Browse | Obituaries | Enid News and Eagle
Roilog Com Payment
Cvs Newr.me
Mexi Unblocked Games
Ark Black Pearls Gfi
Sharkbrew
Wmu Academic Calendar 2022
Craigslist Gigs Wichita Ks
619-354-3954
Alex Galindo And Leslie Quezada Net Worth 2022
Buzzy Shark Tank Net Worth 2020
Refinery29 Horoscopes
Fanart Tv
Artifacto The Ascended
Computer Repair Tryon North Carolina
Crazy 8S Cool Math
Broussard’s Mortuary Major Dr.
How to Get Rid of Phlegm, Effective Tips and Home Remedies
Business Banking Online | Huntington
Craigslist Tools Las Cruces Nm
Upc 044376295592
Booknet.com Contract Marriage 2
Glowforge Forum
Investeerder Parry bijt bij Vitesse van zich af: 'Mensen willen mij beschadigen'
Craigs List Outdoor Furniture
Busted Newspaper Mcpherson Kansas
'It's huge': Will Louisville's Logan Street be the next Findlay or Pike Place market?
Natalya Neidhart: Assembling the BOAT
2024 USAF & USSF Almanac: DAF Personnel | Air & Space Forces Magazine
Melissa Bley Ken Griffin
8569 Marshall St, Merrillville, IN 46410 - MLS 809825 - Coldwell Banker
Dukes Harley Funeral Home Orangeburg
Cargurus Button Girl
Latest Posts
Article information

Author: Corie Satterfield

Last Updated:

Views: 5349

Rating: 4.1 / 5 (62 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Corie Satterfield

Birthday: 1992-08-19

Address: 850 Benjamin Bridge, Dickinsonchester, CO 68572-0542

Phone: +26813599986666

Job: Sales Manager

Hobby: Table tennis, Soapmaking, Flower arranging, amateur radio, Rock climbing, scrapbook, Horseback riding

Introduction: My name is Corie Satterfield, I am a fancy, perfect, spotless, quaint, fantastic, funny, lucky person who loves writing and wants to share my knowledge and understanding with you.