Intel Xeon E5-2666 v3 Benchmark (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Benchmarks for the Intel Xeon E5-2666 v3 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 E5-2666 v3 @ 2.90GHz

Description:

Class: Server

Socket: LGA2011-v3

Clockspeed: 2.9 GHz

Turbo Speed: 3.5 GHz

Cores: 10 Threads: 20

Typical TDP: 135 W

Cache per CPU Package:
L1 Instruction Cache: 10 x 32 KB
L1 Data Cache: 10 x 32 KB
L2 Cache: 10 x 256 KB
L3 Cache: 25 MB

Other names: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz, Intel Xeon CPU E5-2666 v3 @ 2.90GHz

CPU First Seen on Charts: Q1 2015

CPUmark/$Price: NA

Overall Rank:
884th fastest in multithreading out of 4795 CPUs
1468th fastest in single threading out of 4795 CPUs
417th fastest in out of 1016 Server CPUs

Last Price Change: NA

Average CPU MarkIntel Xeon E5-2666 v3 Benchmark (10)

Multithread Rating

14315

Single Thread Rating

1972


Samples: 287*
*Margin for error: Low

CPU Test Suite Average Results for Intel Xeon E5-2666 v3 @ 2.90GHz

Integer Math58,525 MOps/Sec
Floating Point Math29,326 MOps/Sec
Find Prime Numbers57 Million Primes/Sec
Random String Sorting32,963 Thousand Strings/Sec
Data Encryption4,241 MBytes/Sec
Data Compression244,760 KBytes/Sec
Physics783 Frames/Sec
Extended Instructions15,324 Million Matrices/Sec
Single Thread1,972 MOps/Sec

From submitted results to PerformanceTest V10 as of 11th of August 2024.

CPU Mark Distribution for Intel Xeon E5-2666 v3 @ 2.90GHz

Submitted Baseline Distribution Graph as of 11th of August 2024

From submitted results to PerformanceTest V10 as of 11th 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 E5-2666 v3 @ 2.90GHz
from the Featured Merchants below:
Intel Xeon E5-2666 v3 Benchmark (11)
Intel Xeon E5-2666 v3 Benchmark (12)
Intel Xeon E5-2666 v3 Benchmark (13)
Intel Xeon E5-2666 v3 Benchmark (14)

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

CPU Mark Relative to Top 10 Common Server CPUs
As of 12th of August 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 5975WX75,782
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,766
Intel Xeon E5-2666 v3 @ 2.90GHz14,315
Intel Xeon E5-2697 v2 @ 2.70GHz14,293
Intel Xeon E5-1650 v3 @ 3.50GHz10,430
Intel Xeon E5-1650 v2 @ 3.50GHz9,323
CPU Value (CPU Mark / $Price )
As of 12th of August 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-2680 v4 @ 2.40GHz888.75
Intel Xeon E5-2697 v2 @ 2.70GHz81.91
AMD Ryzen Threadripper PRO 3975WX59.88
Intel Xeon E5-1650 v2 @ 3.50GHz40.54
AMD Ryzen Threadripper PRO 5975WX35.08
AMD Ryzen Threadripper PRO 3955WX27.83
Intel Xeon E5-1650 v3 @ 3.50GHz6.92
Intel Xeon E5-2666 v3 @ 2.90GHzNA
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 12th of August 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,658
Intel Xeon E5-1650 v3 @ 3.50GHz2,124
Intel Xeon E5-1650 v2 @ 3.50GHz2,049
Intel Xeon E5-2666 v3 @ 2.90GHz1,972
Intel Xeon E5-2680 v4 @ 2.40GHz1,956
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 Intel Xeon E5-2666 v3 @ 2.90GHz
Most recent listed first
BaselineCPU Mark
BL2159049 - Aug 01 202416006
BL5069945 - Aug 01 202412943
BL2157332 - Jul 30 202416377
BL2150430 - Jul 21 2024 [Excluded]13101
BL2137532 - Jul 04 202414225

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

Popular comparisons for Intel Xeon E5-2666 v3 @ 2.90GHz
As of 12th of August 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon E5-2666 v3 @ 2.90GHz14,315
Intel Xeon E5-2660 v3 @ 2.60GHz vs Intel Xeon E5-2666 v313,126 (-8.3%)
Intel Xeon E5-2650 v3 @ 2.30GHz vs Intel Xeon E5-2666 v311,847 (-17.2%)
Intel Xeon E5-2690 v3 @ 2.60GHz vs Intel Xeon E5-2666 v316,505 (+15.3%)
Intel Xeon E5-2680 v3 @ 2.50GHz vs Intel Xeon E5-2666 v315,175 (+6.0%)
Intel Xeon E5-2687W v3 @ 3.10GHz vs Intel Xeon E5-2666 v314,615 (+2.1%)
Intel Xeon E5-2670 v3 @ 2.30GHz vs Intel Xeon E5-2666 v313,598 (-5.0%)
Intel Xeon E5-1680 v2 @ 3.00GHz vs Intel Xeon E5-2666 v312,667 (-11.5%)
Intel Xeon E5-2640 v3 @ 2.60GHz vs Intel Xeon E5-2666 v311,128 (-22.3%)
Intel Xeon E5-2683 v3 @ 2.00GHz vs Intel Xeon E5-2666 v314,749 (+3.0%)
Intel Xeon E5-1680 v3 @ 3.20GHz vs Intel Xeon E5-2666 v313,090 (-8.6%)
Intel Xeon E5-2667 v3 @ 3.20GHz vs Intel Xeon E5-2666 v312,616 (-11.9%)
Intel Xeon E5-1660 v3 @ 3.00GHz vs Intel Xeon E5-2666 v312,478 (-12.8%)

Intel Xeon E5-2666 v3 Benchmark (2024)

FAQs

How much power does E5 2666 v3 use? ›

With a TDP of 135 W, the Xeon E5-2666 v3 consumes a lot of power, so good cooling is definitely needed. Intel's processor supports DDR3 and DDR4 memory with a quad-channel interface.

Is the Intel i7 better than the Xeon E5? ›

If you are planning on using your system for gaming, home or business use, the i7 will be the better option for you. However, if you are looking for a high-powered system to run video rendering or 3D software, you may want to look into getting a Xeon.

What year is Intel Xeon E5 2660? ›

The Intel Xeon E5-2660 is a server/workstation processor with 8 cores, launched in March 2012.

What is the power consumption of Intel Xeon E5 2670 v3? ›

Add CPUs to start comparisons
Intel Xeon E5-2670 v3 @ 2.30GHzIntel Xeon E5-2650 v3 @ 2.30GHz
Max TDP120W105W
Power consumption per day (kWh)0.20.2
Running cost per day$0.060$0.052
Power consumption per year (kWh)87.676.6
1 more row

How much power does a E5-2660 v3 draw? ›

With a TDP of 105 W, the Xeon E5-2660 v3 consumes a good deal of power, so decent cooling is needed. Intel's processor supports DDR4 memory with a quad-channel interface.

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 use Xeon instead of 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.

Why use Xeon instead of i9? ›

Both are almost equally powerful CPUs. But, the Intel Xeon will be a better choice if you're looking for a CPU that can handle multithreading. It has more cores and threads than the Core i9, which makes it better suited for multitasking, high-demand gaming, or want to set up a server.

What is the latest Xeon CPU? ›

Emerald Rapids: Key Stats

The 5th Generation Xeon is being positioned as a processor that's designed for AI. Featuring up to 64 cores, Emerald Rapids promises 42% higher performance on AI inference and 21% general compute performance gains when compared to the prior generation, Sapphire Rapids.

When was Xeon E5 2603 released? ›

The Intel Xeon E5-2603 is a server/workstation processor with 4 cores, launched in March 2012.

When was Xeon E5 2678 v3 released? ›

The Intel Xeon E5-2678 v3 was a server/workstation processor with 12 cores, launched in June 2015.

Which Xeon E5 is the best? ›

The Xeon E5-2690 is one of the best Xeon processors for gaming and professional multitasking. It has a Sandy Bridge-EP architecture with a locked multiplier that limits overclocking potential. Moreover, this processor chip supports DDR4 RAM with a capacity of up to 1.5 TB and a RAM speed of 2333 MHz.

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.

Is Xeon E5 better than i7? ›

There are differences in the product lines that may make either Xeon or Core i7 a better choice for your situation, but if you take a Xeon E5 CPU and a Core i7 CPU that have the same specs the performance in any task will be identical.

What year is Xeon E5620? ›

The Intel Xeon E5620 was a server/workstation processor with 4 cores, launched in March 2010. It is part of the Xeon lineup, using the Westmere-EP architecture with Socket 1366.

When did the Xeon E5 2640 come out? ›

The Intel Xeon E5-2640 is a server/workstation processor with 6 cores, launched in March 2012. It is part of the Xeon E5 lineup, using the Sandy Bridge-EP architecture with Socket 2011.

When was Xeon E5 2690 released? ›

The Intel Xeon E5-2690 is a server/workstation processor with 8 cores, launched in March 2012.

When did Intel Xeon X5672 come out? ›

The Intel Xeon X5672 was a server/workstation processor with 4 cores, launched in February 2011.

Top Articles
Creating flowcharts with {ggplot2} | Nicola Rennie
Introducing {ggflowchart} | Nicola Rennie
The Largest Banks - ​​How to Transfer Money With Only Card Number and CVV (2024)
Is Sam's Club Plus worth it? What to know about the premium warehouse membership before you sign up
jazmen00 x & jazmen00 mega| Discover
Odawa Hypixel
Chicago Neighborhoods: Lincoln Square & Ravenswood - Chicago Moms
Terraria Enchanting
Die Windows GDI+ (Teil 1)
Calamity Hallowed Ore
Overzicht reviews voor 2Cheap.nl
41 annonces BMW Z3 occasion - ParuVendu.fr
Craigslist Dog Kennels For Sale
Bros Movie Wiki
Help with Choosing Parts
Busty Bruce Lee
Summer Rae Boyfriend Love Island – Just Speak News
Nashville Predators Wiki
Haunted Mansion Showtimes Near Millstone 14
De beste uitvaartdiensten die goede rituele diensten aanbieden voor de laatste rituelen
1773X To
Inter-Tech IM-2 Expander/SAMA IM01 Pro
Stardew Expanded Wiki
Publix Super Market At Rainbow Square Shopping Center Dunnellon Photos
Is The Yankees Game Postponed Tonight
UPS Store #5038, The
eHerkenning (eID) | KPN Zakelijk
Project, Time & Expense Tracking Software for Business
Quick Answer: When Is The Zellwood Corn Festival - BikeHike
Amazing Lash Studio Casa Linda
Plaza Bonita Sycuan Bus Schedule
Mta Bus Forums
Keshi with Mac Ayres and Starfall (Rescheduled from 11/1/2024) (POSTPONED) Tickets Thu, Nov 1, 2029 8:00 pm at Pechanga Arena - San Diego in San Diego, CA
This Is How We Roll (Remix) - Florida Georgia Line, Jason Derulo, Luke Bryan - NhacCuaTui
Lininii
Workboy Kennel
1400 Kg To Lb
Craigslist List Albuquerque: Your Ultimate Guide to Buying, Selling, and Finding Everything - First Republic Craigslist
Mixer grinder buying guide: Everything you need to know before choosing between a traditional and bullet mixer grinder
8 Ball Pool Unblocked Cool Math Games
Trap Candy Strain Leafly
Cnp Tx Venmo
Weather Underground Cedar Rapids
Courses In Touch
Mynord
Tommy Bahama Restaurant Bar & Store The Woodlands Menu
Zeeks Pizza Calories
The Pretty Kitty Tanglewood
Craigslist Sparta Nj
Barber Gym Quantico Hours
Basic requirements | UC Admissions
Heisenberg Breaking Bad Wiki
Latest Posts
Article information

Author: Gregorio Kreiger

Last Updated:

Views: 5735

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Gregorio Kreiger

Birthday: 1994-12-18

Address: 89212 Tracey Ramp, Sunside, MT 08453-0951

Phone: +9014805370218

Job: Customer Designer

Hobby: Mountain biking, Orienteering, Hiking, Sewing, Backpacking, Mushroom hunting, Backpacking

Introduction: My name is Gregorio Kreiger, I am a tender, brainy, enthusiastic, combative, agreeable, gentle, gentle person who loves writing and wants to share my knowledge and understanding with you.