Intel Xeon w9-3495X Benchmark (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Benchmarks for the Intel Xeon w9-3495X can be found below. Release dates, price and performancecomparisons are also listed when available. 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);}

Intel Xeon w9-3495X

Description:

Class: Server

Socket: FCLGA4677

Clockspeed: 1.9 GHz

Turbo Speed: 4.8 GHz

Cores: 56 Threads: 112

Typical TDP: 350 W

TDP Up: 420 W

Cache per CPU Package:
L1 Instruction Cache: 56 x 32 KB
L1 Data Cache: 56 x 48 KB
L2 Cache: 56 x 2048 KB
L3 Cache: 105 MB

Memory Support: Max. Memory Size: 4.0 TB (DDR5-4800, ECC Supported)

Other names: Intel(R) Xeon(R) w9-3495X, Intel Xeon w9-3495X

CPU First Seen on Charts: Q2 2023

CPUmark/$Price: 15.56

Overall Rank:
19th fastest in multithreading out of 4818 CPUs
269th fastest in single threading out of 4818 CPUs
14th fastest in out of 1019 Server CPUs

Last Price Change: $5,889.00 USD (2023-01-01)

Average CPU MarkIntel Xeon w9-3495X Benchmark (10)

Multithread Rating

91628

Single Thread Rating

3467


Samples: 33*
*Margin for error: Low

CPU Test Suite Average Results for Intel Xeon w9-3495X

Integer Math414,424 MOps/Sec
Floating Point Math326,025 MOps/Sec
Find Prime Numbers597 Million Primes/Sec
Random String Sorting164,773 Thousand Strings/Sec
Data Encryption80,020 MBytes/Sec
Data Compression1,547,986 KBytes/Sec
Physics7,161 Frames/Sec
Extended Instructions122,008 Million Matrices/Sec
Single Thread3,467 MOps/Sec

From submitted results to PerformanceTest V10 as of 23rd of August 2024.

CPU Mark Distribution for Intel Xeon w9-3495X

Submitted Baseline Distribution Graph as of 21st of August 2024

From submitted results to PerformanceTest V10 as of 21st of August 2024.
For distribution graph only: Results are trimmed to exclude outliers by disregarding the bottom 1% and top 1% of submissions.


Search for Intel Xeon w9-3495X
from the Featured Merchants below:
Intel Xeon w9-3495X Benchmark (11)
Intel Xeon w9-3495X Benchmark (12)
Intel Xeon w9-3495X Benchmark (13)
Intel Xeon w9-3495X Benchmark (14)

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 August 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon w9-3495X91,628
AMD Ryzen Threadripper PRO 5975WX75,609
AMD Ryzen Threadripper PRO 3975WX62,571
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,780
Intel Xeon E5-2697 v2 @ 2.70GHz14,253
Intel Xeon E5-1650 v3 @ 3.50GHz10,426
Intel Xeon E5-1650 v2 @ 3.50GHz9,322
CPU Value (CPU Mark / $Price )
As of 24th of August 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-2680 v4 @ 2.40GHz889.44
Intel Xeon E5-2697 v2 @ 2.70GHz81.79
AMD Ryzen Threadripper PRO 3955WX49.81
Intel Xeon E5-1650 v2 @ 3.50GHz40.54
AMD Ryzen Threadripper PRO 5975WX36.18
AMD Ryzen Threadripper PRO 3975WX28.16
Intel Xeon w9-3495X15.56
Intel Xeon E5-1650 v3 @ 3.50GHz6.91
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 August 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
Intel Xeon w9-3495X3,467
AMD Ryzen Threadripper PRO 5975WX3,314
AMD Ryzen Threadripper PRO 3955WX2,680
AMD Ryzen Threadripper PRO 3975WX2,658
Intel Xeon E5-1650 v3 @ 3.50GHz2,124
Intel Xeon E5-1650 v2 @ 3.50GHz2,049
Intel Xeon E5-2680 v4 @ 2.40GHz1,956
Intel Xeon E5-2697 v2 @ 2.70GHz1,795
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 Intel Xeon w9-3495X
Most recent listed first
BaselineCPU Mark
BL2168560 - Aug 13 202484454
BL2159221 - Aug 01 202496199
BL5069113 - Jul 21 2024102307
BL5066834 - Jun 19 2024115384
BL5066829 - Jun 19 2024 [Excluded]109637

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

Popular comparisons for Intel Xeon w9-3495X
As of 24th of August 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon w9-3495X91,628
AMD EPYC 9554P vs Intel Xeon w9-3495X110,790 (+20.9%)
AMD EPYC 9534 vs Intel Xeon w9-3495X93,884 (+2.5%)
AMD EPYC 9554P vs Intel Xeon w9-3495X110,790 (+20.9%)
AMD EPYC 9534 vs Intel Xeon w9-3495X93,884 (+2.5%)
Intel Xeon Platinum 8461V vs Intel Xeon w9-3495X74,982 (-18.2%)
AMD EPYC 9654P vs Intel Xeon w9-3495X113,949 (+24.4%)
AMD EPYC 9454P vs Intel Xeon w9-3495X95,891 (+4.7%)
AMD EPYC 7573X vs Intel Xeon w9-3495X69,432 (-24.2%)
AMD EPYC 9454P vs Intel Xeon w9-3495X95,891 (+4.7%)
AMD EPYC 9474F vs Intel Xeon w9-3495X105,003 (+14.6%)
AMD EPYC 9454 vs Intel Xeon w9-3495X95,495 (+4.2%)
AMD EPYC 9374F vs Intel Xeon w9-3495X79,826 (-12.9%)

Intel Xeon w9-3495X Benchmark (2024)
Top Articles
All-inclusive car rental - no hidden costs! · Sunny Cars
Sunny2go: Travel companion with personal concierge service · Sunny Cars
Toa Guide Osrs
Is Sam's Club Plus worth it? What to know about the premium warehouse membership before you sign up
7 Verification of Employment Letter Templates - HR University
Monticello Culver's Flavor Of The Day
Encore Atlanta Cheer Competition
Campaign Homecoming Queen Posters
Ohiohealth Esource Employee Login
The Weather Channel Facebook
Oxford House Peoria Il
Jasmine Put A Ring On It Age
Dallas’ 10 Best Dressed Women Turn Out for Crystal Charity Ball Event at Neiman Marcus
Craigslist Edmond Oklahoma
Parent Resources - Padua Franciscan High School
Lowe's Garden Fence Roll
Band Of Loyalty 5E
Panic! At The Disco - Spotify Top Songs
Craigslist Personals Jonesboro
Babbychula
R&S Auto Lockridge Iowa
Ecampus Scps Login
Chime Ssi Payment 2023
'Insidious: The Red Door': Release Date, Cast, Trailer, and What to Expect
Marlene2995 Pagina Azul
Cosas Aesthetic Para Decorar Tu Cuarto Para Imprimir
Penn State Service Management
Santa Barbara Craigs List
Where to eat: the 50 best restaurants in Freiburg im Breisgau
Dl.high Stakes Sweeps Download
Hannah Jewell
Revelry Room Seattle
Nikki Catsouras: The Tragic Story Behind The Face And Body Images
Shauna's Art Studio Laurel Mississippi
Promatch Parts
134 Paige St. Owego Ny
Rund um die SIM-Karte | ALDI TALK
Golden Tickets
Forager How-to Get Archaeology Items - Dino Egg, Anchor, Fossil, Frozen Relic, Frozen Squid, Kapala, Lava Eel, and More!
Composite Function Calculator + Online Solver With Free Steps
Blackstone Launchpad Ucf
One Credit Songs On Touchtunes 2022
Ducky Mcshweeney's Reviews
Leatherwall Ll Classifieds
Tillman Funeral Home Tallahassee
Ferguson Showroom West Chester Pa
VPN Free - Betternet Unlimited VPN Proxy - Chrome Web Store
Jaefeetz
Juiced Banned Ad
N33.Ultipro
Underground Weather Tropical
Mmastreams.com
Latest Posts
Article information

Author: Annamae Dooley

Last Updated:

Views: 6272

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Annamae Dooley

Birthday: 2001-07-26

Address: 9687 Tambra Meadow, Bradleyhaven, TN 53219

Phone: +9316045904039

Job: Future Coordinator

Hobby: Archery, Couponing, Poi, Kite flying, Knitting, Rappelling, Baseball

Introduction: My name is Annamae Dooley, I am a witty, quaint, lovely, clever, rich, sparkling, powerful person who loves writing and wants to share my knowledge and understanding with you.