PassMark - Intel Xeon W-2133 @ 3.60GHz (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the Intel Xeon W-2133 @ 3.60GHz 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);}

Intel Xeon W-2133 @ 3.60GHz

Description:

Class: Server

Socket: FCLGA2066

Clockspeed: 3.6 GHz

Turbo Speed: 3.9 GHz

Cores: 6 Threads: 12

Typical TDP: 140 W

Cache per CPU Package:
L1 Instruction Cache: 6 x 32 KB
L1 Data Cache: 6 x 32 KB
L2 Cache: 6 x 1024 KB
L3 Cache: 8 MB

Memory Support: Max. Memory Size: 512 GB (DDR4 1600/1866/2133/2400/2666, ECC Supported)

Other names: Intel(R) Xeon(R) W-2133 CPU @ 3.60GHz, Intel Xeon W-2133 CPU @ 3.60GHz

CPU First Seen on Charts: Q3 2017

CPUmark/$Price: 20.50

Overall Rank:
964th fastest in multithreading out of 4739 CPUs
1041st fastest in single threading out of 4739 CPUs
442nd fastest in out of 996 Server CPUs

Last Price Change: $617.00 USD (2017-09-18)

Average CPU MarkPassMark - Intel Xeon W-2133 @ 3.60GHz (10)

Multithread Rating

12651

Single Thread Rating

2265


Samples: 199*
*Margin for error: Low

PerformanceTest V9
CPU Mark: 14,403
Thread: 2,178

CPU Test Suite Average Results for Intel Xeon W-2133 @ 3.60GHz

Integer Math40,237 MOps/Sec
Floating Point Math24,865 MOps/Sec
Find Prime Numbers46 Million Primes/Sec
Random String Sorting22,486 Thousand Strings/Sec
Data Encryption4,414 MBytes/Sec
Data Compression177,839 KBytes/Sec
Physics832 Frames/Sec
Extended Instructions14,419 Million Matrices/Sec
Single Thread2,265 MOps/Sec

From submitted results to PerformanceTest V10 as of 2nd of July 2024.

CPU Mark Distribution for Intel Xeon W-2133 @ 3.60GHz

Submitted Baseline Distribution Graph as of 29th of June 2024

From submitted results to PerformanceTest V10 as of 29th of June 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 W-2133 @ 3.60GHz
from the Featured Merchants below:
PassMark - Intel Xeon W-2133 @ 3.60GHz (11)
PassMark - Intel Xeon W-2133 @ 3.60GHz (12)
PassMark - Intel Xeon W-2133 @ 3.60GHz (13)
PassMark - Intel Xeon W-2133 @ 3.60GHz (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 2nd of July 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 5975WX75,703
AMD Ryzen Threadripper PRO 3975WX62,856
Montage Jintide C5418Y49,045
AMD Ryzen Threadripper PRO 3955WX40,348
Hygon C86 7255 16-core18,831
Intel Xeon E5-2680 v4 @ 2.40GHz17,791
Montage Jintide C4215R14,672
Intel Xeon E5-2697 v2 @ 2.70GHz14,307
Intel Xeon W-2133 @ 3.60GHz12,651
Intel Xeon E5-1650 v3 @ 3.50GHz10,422
Intel Xeon E5-1650 v2 @ 3.50GHz9,353
CPU Value (CPU Mark / $Price )
As of 2nd of July 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-2680 v4 @ 2.40GHz890.02
Intel Xeon E5-1650 v3 @ 3.50GHz189.62
Intel Xeon E5-2697 v2 @ 2.70GHz75.70
Intel Xeon E5-1650 v2 @ 3.50GHz40.68
AMD Ryzen Threadripper PRO 5975WX34.10
AMD Ryzen Threadripper PRO 3975WX28.57
AMD Ryzen Threadripper PRO 3955WX27.83
Intel Xeon W-2133 @ 3.60GHz20.50
Montage Jintide C4215RNA
Montage Jintide C5418YNA
Hygon C86 7255 16-coreNA
Single Thread Rating
As of 2nd of July 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
AMD Ryzen Threadripper PRO 5975WX3,312
AMD Ryzen Threadripper PRO 3955WX2,680
AMD Ryzen Threadripper PRO 3975WX2,660
Montage Jintide C5418Y2,341
Intel Xeon W-2133 @ 3.60GHz2,265
Montage Jintide C4215R2,134
Intel Xeon E5-1650 v3 @ 3.50GHz2,123
Intel Xeon E5-1650 v2 @ 3.50GHz2,051
Intel Xeon E5-2680 v4 @ 2.40GHz1,953
Intel Xeon E5-2697 v2 @ 2.70GHz1,796
Hygon C86 7255 16-core1,490
Last 5 Baselines for Intel Xeon W-2133 @ 3.60GHz
Most recent listed first
BaselineCPU Mark
BL2122785 - Jun 13 202413168
BL2122357 - Jun 12 202410962
BL2120709 - Jun 10 202412734
BL2114669 - Jun 02 202412580
BL2114646 - Jun 02 202412580

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

Popular comparisons for Intel Xeon W-2133 @ 3.60GHz
As of 2nd of July 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon W-2133 @ 3.60GHz12,651
Intel Xeon W-2125 @ 4.00GHz vs Intel Xeon W-213310,009 (-20.9%)
Intel Xeon E-2146G @ 3.50GHz vs Intel Xeon W-213313,268 (+4.9%)
Intel Xeon W-2235 @ 3.80GHz vs Intel Xeon W-213314,370 (+13.6%)
Intel Xeon E-2176G @ 3.70GHz vs Intel Xeon W-213313,567 (+7.2%)
Intel Xeon Gold 6128 @ 3.40GHz vs Intel Xeon W-213313,229 (+4.6%)
Intel Xeon W-10885M @ 2.40GHz vs Intel Xeon W-213315,700 (+24.1%)
Intel Xeon D-1726 @ 2.90GHz vs Intel Xeon W-213315,511 (+22.6%)
Intel Xeon W-2135 @ 3.70GHz vs Intel Xeon W-213314,468 (+14.4%)
Intel Xeon D-2143IT @ 2.20GHz vs Intel Xeon W-213312,461 (-1.5%)
Intel Xeon E5-2687W v2 @ 3.40GHz vs Intel Xeon W-213312,258 (-3.1%)
Intel Xeon Silver 4109T @ 2.00GHz vs Intel Xeon W-213310,348 (-18.2%)
Intel Xeon E3-1270 v6 @ 3.80GHz vs Intel Xeon W-21338,955 (-29.2%)

PassMark - Intel Xeon W-2133 @ 3.60GHz (2024)

FAQs

Is an Intel Xeon better than an i7? ›

Longevity (under heavy load) – Xeon processors are qualified to handle heavier, more intensive loads day in and day out. For the serious workstation user, this can translate to better longevity over i7 counterparts.

Is Intel Xeon W better than i9? ›

When compared to Intel Core i9 processors, the Xeon product family has more cores (and therefore more threads) and when it comes to use cases, Xeon processors are ideally suited to businesses and great for server configurations.

Is Intel r Xeon r CPU E5 1650 v3 3.50 ghz 3.50 ghz good? ›

Average Bench: 76.8% (293 rd of 1459)

The Intel Xeon E5-1650 v3 averaged 23.2% lower than the peak scores attained by the group leaders. This is an excellent result which ranks the Intel Xeon E5-1650 v3 near the top of the comparison list.

Why is Xeon not good for gaming? ›

For gaming purposes, the additional features of Xeon processors may not be effective at all and can add unnecessary costs to a gaming build. Xeon CPUs also use different socket types compared to commercial Intel CPUs. It will require specific server-grade motherboards, which will add to your build's expenses.

What is the disadvantage of Xeon CPU? ›

This is why Intel Xeon CPUs do not support overclocking. Xeon processors have a higher TDP than Core CPUs, which means if they try to bump up the clock speeds, there is a risk of thermal throttling or even failure.

Why is Intel Xeon so expensive? ›

Numerous Cores

In addition to the potential of multiple CPU benefits, Xeons can feature multiple cores. In general Xeon processors can have a maximum of 48 cores whereas core I7 processors can possess a maximum of 8 cores. Due to the complexity of increasing the core count, Xeon processors are quite expensive.

Which Intel Xeon is best? ›

1- Intel Xeon 2680v4

With its impressive 14 cores and 28 threads, this processor delivers exceptional performance for multi-threaded workloads. Its generous cache size and efficient architecture make it an ideal choice for data centers and enterprises requiring robust computational capabilities and scalability.

Is Intel Xeon old? ›

It was introduced in June 1998.

Do I need Intel Xeon processor? ›

Xeon processors are used for all tasks with high-end server applications. scientific or engineering workstations and much more. They offer performance and features that are well suited for these types of systems, including multiple cores, large caches, and high clock speeds.

Can Xeon run without graphics card? ›

The Intel Xeon E5 2620 V3 is a server CPU. Most of these CPUs (including the one you have) do not have graphics output. They are intended to run headless as a server. If you need graphics, you can install a graphics card.

What is the fastest Xeon processor for gaming? ›

These are top 3 xeon processors for gaming. To know the features of each of these processors and know the best fir for your games, read more below. The best Xeon processor for gaming is the Intel Xeon X5690. The Xeon E5 2670 is also one of the best Xeon CPU for gaming.

Can I game on Xeon? ›

LONG STORY SHORT, for gaming, Xeons are fine for most games but will bottleneck high-end GPU cards due to their lower single-thread speed. Xeons are generally outperformed by core i5 and i7 counterparts because they were designed for servers: More cores/threads, but at lower processing speed.

What is special about Intel Xeon? ›

Xeon processors are based on the same architecture as regular desktop-grade CPUs, but have advanced features such as support for error correction code (ECC) memory, higher core counts, more PCI Express lanes, support for larger amounts of RAM, larger cache memory and extra provision for enterprise-grade reliability, ...

What is the advantage of Intel Xeon processor? ›

Xeon processors are used for all tasks with high-end server applications. scientific or engineering workstations and much more. They offer performance and features that are well suited for these types of systems, including multiple cores, large caches, and high clock speeds.

What processor is better than i7? ›

In mainstream CPUs, the Core i7 offerings of late have straddled the line between low-end content creation and high-end gaming performance, though that latter crown would eventually be taken by a new contender at the tip-top of the top end: the various Core i9 lines.

Is Xeon better than Ryzen? ›

As mentioned earlier, 'Sapphire Rapids' Xeons have an advantage over the AMD Ryzen Threadripper 5000 Series as they support faster memory – DDR5 4,800MHz compared to DDR4 3,200MHz. A quick run through the SiSoft Sandra benchmark shows the comparative memory bandwidth one can expect.

Top Articles
Sports on TV for July 22 - 23 - Bay to Bay News
Katrina Merriweather - Women's Basketball Coach
Menards Thermal Fuse
This website is unavailable in your location. – WSB-TV Channel 2 - Atlanta
Walgreens Boots Alliance, Inc. (WBA) Stock Price, News, Quote & History - Yahoo Finance
Custom Screensaver On The Non-touch Kindle 4
55Th And Kedzie Elite Staffing
Tlc Africa Deaths 2021
Instructional Resources
Room Background For Zepeto
Chatiw.ib
Urinevlekken verwijderen: De meest effectieve methoden - Puurlv
2013 Chevy Cruze Coolant Hose Diagram
State Of Illinois Comptroller Salary Database
FIX: Spacebar, Enter, or Backspace Not Working
Amelia Bissoon Wedding
C Spire Express Pay
Diablo 3 Metascore
Jvid Rina Sauce
Guilford County | NCpedia
Love In The Air Ep 9 Eng Sub Dailymotion
Napa Autocare Locator
Watch The Lovely Bones Online Free 123Movies
Unity - Manual: Scene view navigation
Heart and Vascular Clinic in Monticello - North Memorial Health
Puss In Boots: The Last Wish Showtimes Near Cinépolis Vista
The Ultimate Guide to Extras Casting: Everything You Need to Know - MyCastingFile
Unionjobsclearinghouse
Walgreens 8 Mile Dequindre
Costco Gas Hours St Cloud Mn
TeamNet | Agilio Software
Everything To Know About N Scale Model Trains - My Hobby Models
Ticket To Paradise Showtimes Near Cinemark Mall Del Norte
Ullu Coupon Code
Tamil Movies - Ogomovies
TJ Maxx‘s Top 12 Competitors: An Expert Analysis - Marketing Scoop
How rich were the McCallisters in 'Home Alone'? Family's income unveiled
Wells Fargo Bank Florida Locations
Emiri's Adventures
Craigslist Free Stuff San Gabriel Valley
ShadowCat - Forestry Mulching, Land Clearing, Bush Hog, Brush, Bobcat - farm & garden services - craigslist
Jr Miss Naturist Pageant
Etowah County Sheriff Dept
Afspraak inzien
888-333-4026
Craigslist Pets Plattsburgh Ny
Beaufort SC Mugshots
Sig Mlok Bayonet Mount
Hkx File Compatibility Check Skyrim/Sse
Gabrielle Abbate Obituary
Electric Toothbrush Feature Crossword
Prologistix Ein Number
Latest Posts
Article information

Author: Manual Maggio

Last Updated:

Views: 6000

Rating: 4.9 / 5 (49 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Manual Maggio

Birthday: 1998-01-20

Address: 359 Kelvin Stream, Lake Eldonview, MT 33517-1242

Phone: +577037762465

Job: Product Hospitality Supervisor

Hobby: Gardening, Web surfing, Video gaming, Amateur radio, Flag Football, Reading, Table tennis

Introduction: My name is Manual Maggio, I am a thankful, tender, adventurous, delightful, fantastic, proud, graceful person who loves writing and wants to share my knowledge and understanding with you.