PassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz 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 CPU compared to the 10 other common (single) CPUs in terms of PassMark CPU Mark.
  • The 2nd graph shows the value for money, in terms of the CPUMark per dollar.
  • The pricing history data shows the price for a single Processor. For multiple Processors, multiply the price shown by the number of CPUs.
  • 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);}

[Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz

Description:

Class: Server

Socket: FCLGA4189

Clockspeed: 2.2 GHz

4Cores: 32 4Threads: 64

Typical TDP: 205 W4

Cache per CPU Package:
L1 Instruction Cache: 32 x 48 KB
L1 Data Cache: 32 x 32 KB
L2 Cache: 32 x 1280 KB
L3 Cache: 48 MB

Other names: Intel(R) Xeon(R) Platinum 8352Y CPU @ 2.20GHz

CPU First Seen on Charts: Q3 2021

CPUmark/$Price: 18.18

Overall Rank:
85th fastest in multithreading out of all multi-CPUs CPUs

Last Price Change: $3,774.98 USD Total for 2 CPUs (2024-07-23)

Average CPU MarkPassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (10)

Multithread Rating

68643

Single Thread Rating

1913


Samples: 1*
*Margin for error: High

4The number of cores/threads and TDP is per CPU. To determine the total, multiply by the total CPU count.

CPU Test Suite Average Results for [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz

Integer Math437,995 MOps/Sec
Floating Point Math251,512 MOps/Sec
Find Prime Numbers397 Million Primes/Sec
Random String Sorting185,592 Thousand Strings/Sec
Data Encryption80,256 MBytes/Sec
Data Compression1,475,250 KBytes/Sec
Physics4,436 Frames/Sec
Extended Instructions115,665 Million Matrices/Sec
Single Thread1,913 MOps/Sec

From submitted results to PerformanceTest V10 as of 24th of July 2024.

CPU Mark Distribution for [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz

Submitted Baseline Distribution Graph as of 20th of July 2024

Not Enough Data from Current Version of PerformanceTest to Create Distribution Graph.

From submitted results to PerformanceTest V10 as of 20th of July 2024.


MerchantPricePurchase
PassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (11)$1,952.20 USDBuy Now!
PassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (12)NACPU Not Available. See Other Models
PassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (13)NACPU Not Available. See Other Models

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

Pricing History


CPU Mark Relative to Top 10 Common Server CPUs
As of 24th of July 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 5975WX75,782
[Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz68,643
AMD Ryzen Threadripper PRO 3975WX62,720
ARM Neoverse-N1 128 Core 3000 MHz43,229
AMD Ryzen Threadripper PRO 3955WX40,348
ARM Neoverse-N1 80 Core 3000 MHz34,639
ARM Neoverse-N1 64 Core 0 MHz28,064
Intel Xeon E5-2680 v4 @ 2.40GHz17,792
Intel Xeon E5-2697 v2 @ 2.70GHz14,298
Intel Xeon E5-1650 v3 @ 3.50GHz10,421
Intel Xeon E5-1650 v2 @ 3.50GHz9,351
CPU Value (CPU Mark / $Price )
As of 24th of July 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-2680 v4 @ 2.40GHz890.06
Intel Xeon E5-2697 v2 @ 2.70GHz81.78
AMD Ryzen Threadripper PRO 3975WX48.62
Intel Xeon E5-1650 v2 @ 3.50GHz40.66
AMD Ryzen Threadripper PRO 5975WX35.08
AMD Ryzen Threadripper PRO 3955WX27.83
[Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz18.18
Intel Xeon E5-1650 v3 @ 3.50GHz7.36
ARM Neoverse-N1 80 Core 3000 MHzNA
ARM Neoverse-N1 128 Core 3000 MHzNA
ARM Neoverse-N1 64 Core 0 MHzNA
Single Thread Rating
As of 24th of July 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
AMD Ryzen Threadripper PRO 5975WX3,313
AMD Ryzen Threadripper PRO 3955WX2,680
AMD Ryzen Threadripper PRO 3975WX2,660
Intel Xeon E5-1650 v3 @ 3.50GHz2,123
Intel Xeon E5-1650 v2 @ 3.50GHz2,051
Intel Xeon E5-2680 v4 @ 2.40GHz1,955
[Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz1,913
Intel Xeon E5-2697 v2 @ 2.70GHz1,794
ARM Neoverse-N1 80 Core 3000 MHz1,326
ARM Neoverse-N1 128 Core 3000 MHz1,323
ARM Neoverse-N1 64 Core 0 MHz1,089
Last 5 Baselines for [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz
Most recent listed first
BaselineCPU Mark
BL2072707 - Apr 08 202468169
BL5058473 - Mar 11 2024 [Excluded]56900
BL1568357 - May 20 202276489
BL5007068 - Oct 26 202174024
BL1432542 - Jul 31 202168643

Additional baselines can be obtained using Windows version of PerformanceTest's Manage Baselines feature.

Popular comparisons for Intel Xeon Platinum 8352Y @ 2.20GHz
As of 24th of July 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon Platinum 8352Y @ 2.20GHz68,643
AMD EPYC 75F3 vs Intel Xeon Platinum 8352Y68,505 (-0.2%)
AMD EPYC 74F3 vs Intel Xeon Platinum 8352Y60,666 (-11.6%)
AMD EPYC 7543 vs Intel Xeon Platinum 8352Y58,303 (-15.1%)
AMD EPYC 9374F vs Intel Xeon Platinum 8352Y79,826 (+16.3%)
AMD Ryzen Threadripper PRO 5975WX vs Intel Xeon Platinum 8352Y75,782 (+10.4%)
AMD EPYC 9274F vs Intel Xeon Platinum 8352Y73,463 (+7.0%)
AMD EPYC 7662 vs Intel Xeon Platinum 8352Y72,653 (+5.8%)
AMD EPYC 9354 vs Intel Xeon Platinum 8352Y67,842 (-1.2%)
AMD EPYC 7543P vs Intel Xeon Platinum 8352Y66,687 (-2.9%)
Intel Xeon w7-3465X vs Intel Xeon Platinum 8352Y65,879 (-4.0%)
Intel Xeon w9-3475X vs Intel Xeon Platinum 8352Y64,979 (-5.3%)
Intel Xeon Gold 6448Y vs Intel Xeon Platinum 8352Y60,449 (-11.9%)

PassMark - [Dual CPU] Intel Xeon Platinum 8352Y @ 2.20GHz (2024)
Top Articles
Bacon Wrapped Asparagus
Best Arepas con Queso - Lemon Blossoms
San Angelo, Texas: eine Oase für Kunstliebhaber
Joliet Patch Arrests Today
Enrique Espinosa Melendez Obituary
Activities and Experiments to Explore Photosynthesis in the Classroom - Project Learning Tree
2024 Fantasy Baseball: Week 10 trade values chart and rest-of-season rankings for H2H and Rotisserie leagues
Bellinghamcraigslist
Atrium Shift Select
Best Restaurants In Seaside Heights Nj
Day Octopus | Hawaii Marine Life
Rapv Springfield Ma
Readyset Ochsner.org
Binghamton Ny Cars Craigslist
Walthampatch
10 Best Places to Go and Things to Know for a Trip to the Hickory M...
Tcgplayer Store
Las 12 mejores subastas de carros en Los Ángeles, California - Gossip Vehiculos
Ibukunore
Officialmilarosee
Puss In Boots: The Last Wish Showtimes Near Cinépolis Vista
Team C Lakewood
Theater X Orange Heights Florida
Knock At The Cabin Showtimes Near Alamo Drafthouse Raleigh
Colonial Executive Park - CRE Consultants
Preggophili
Watson 853 White Oval
Horses For Sale In Tn Craigslist
Pacman Video Guatemala
Buhl Park Summer Concert Series 2023 Schedule
Log in to your MyChart account
Kleinerer: in Sinntal | markt.de
Sinai Sdn 2023
Swimgs Yuzzle Wuzzle Yups Wits Sadie Plant Tune 3 Tabs Winnie The Pooh Halloween Bob The Builder Christmas Autumns Cow Dog Pig Tim Cook’s Birthday Buff Work It Out Wombats Pineview Playtime Chronicles Day Of The Dead The Alpha Baa Baa Twinkle
Renfield Showtimes Near Marquee Cinemas - Wakefield 12
The Ultimate Guide to Obtaining Bark in Conan Exiles: Tips and Tricks for the Best Results
P3P Orthrus With Dodge Slash
What Is Xfinity and How Is It Different from Comcast?
Hair Love Salon Bradley Beach
Solemn Behavior Antonym
The Blackening Showtimes Near Regal Edwards Santa Maria & Rpx
Hindilinks4U Bollywood Action Movies
Bianca Belair: Age, Husband, Height & More To Know
18 terrible things that happened on Friday the 13th
The Listings Project New York
Lesson 5 Homework 4.5 Answer Key
Heat Wave and Summer Temperature Data for Oklahoma City, Oklahoma
Concentrix + Webhelp devient Concentrix
Call2Recycle Sites At The Home Depot
Game Akin To Bingo Nyt
Att Corporate Store Location
La Fitness Oxford Valley Class Schedule
Latest Posts
Article information

Author: Rob Wisoky

Last Updated:

Views: 5426

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Rob Wisoky

Birthday: 1994-09-30

Address: 5789 Michel Vista, West Domenic, OR 80464-9452

Phone: +97313824072371

Job: Education Orchestrator

Hobby: Lockpicking, Crocheting, Baton twirling, Video gaming, Jogging, Whittling, Model building

Introduction: My name is Rob Wisoky, I am a smiling, helpful, encouraging, zealous, energetic, faithful, fantastic person who loves writing and wants to share my knowledge and understanding with you.