PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz 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
  • 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 E5-2683 v4 @ 2.10GHz

Description:

Class: Server

Socket: FCLGA2011-3

Clockspeed: 2.1 GHz

Turbo Speed: 3.0 GHz

4Cores: 16 4Threads: 32

Typical TDP: 120 W4

Cache per CPU Package:
L1 Instruction Cache: 16 x 32 KB
L1 Data Cache: 16 x 32 KB
L2 Cache: 16 x 256 KB
L3 Cache: 40 MB

Memory Support: Max. Memory Size: 5.0 TB (DDR4 1600/1866/2133/2400, ECC Supported)

Other names: Intel(R) Xeon(R) CPU E5-2683 v4 @ 2.10GHz, Intel Xeon CPU E5-2683 v4 @ 2.10GHz

CPU First Seen on Charts: Q4 2016

CPUmark/$Price: 57.63

Overall Rank: 238

Last Price Change: $490.00 USD Total for 2 CPUs (2023-05-19)

Average CPU Mark

PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (10)

28237

Single Thread Rating: 1752
Samples: 54*
*Margin for error: Low

PerformanceTest V9
CPU Mark: 18,863
Thread: 1,502

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 E5-2683 v4 @ 2.10GHz

Integer Math146,944 MOps/Sec
Floating Point Math95,246 MOps/Sec
Find Prime Numbers115 Million Primes/Sec
Random String Sorting73,093 Thousand Strings/Sec
Data Encryption9,513 MBytes/Sec
Data Compression640,908 KBytes/Sec
Physics1,284 Frames/Sec
Extended Instructions39,046 Million Matrices/Sec
Single Thread1,752 MOps/Sec

From submitted results to PerformanceTest V10 as of 22nd of April 2024.

CPU Mark Distribution for [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz

Submitted Baseline Distribution Graph as of 17th of April 2024

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


MerchantPricePurchase
PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (11)NACPU Not Available. See Other Models
PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (12)$245.00 USDBuy Now!
PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (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


Machines with this CPU (or similar)

PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (14)Intel Xeon PC Desktop/Gamer E5-2689 @3.6Ghz, 8Core 16Thread, 16GB RAM, 8GB Graphics GPU, Win10$898.00

(www.amazon.com)

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 22nd of April 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 3995WX83,709
AMD Ryzen Threadripper PRO 5975WX75,893
AMD Ryzen Threadripper PRO 3975WX62,990
AMD Ryzen Threadripper PRO 3955WX40,374
AMD Ryzen Threadripper PRO 3945WX33,506
[Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz28,237
Intel Xeon E5-2680 v4 @ 2.40GHz17,791
Intel Xeon E5-2697 v2 @ 2.70GHz14,279
Intel Xeon E5-1650 v3 @ 3.50GHz10,426
Intel Xeon E5-2620 v3 @ 2.40GHz7,806
Intel Xeon E5-1620 v3 @ 3.50GHz6,990
CPU Value (CPU Mark / $Price )
As of 22nd of April 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-2620 v3 @ 2.40GHz600.95
Intel Xeon E5-2680 v4 @ 2.40GHz237.54
Intel Xeon E5-2697 v2 @ 2.70GHz86.54
Intel Xeon E5-1650 v3 @ 3.50GHz75.27
Intel Xeon E5-1620 v3 @ 3.50GHz65.95
[Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz57.63
AMD Ryzen Threadripper PRO 3955WX40.75
AMD Ryzen Threadripper PRO 5975WX28.11
AMD Ryzen Threadripper PRO 3975WX21.02
AMD Ryzen Threadripper PRO 3995WX12.19
AMD Ryzen Threadripper PRO 3945WXNA
Single Thread Rating
As of 22nd of April 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
AMD Ryzen Threadripper PRO 5975WX3,312
AMD Ryzen Threadripper PRO 3945WX2,702
AMD Ryzen Threadripper PRO 3955WX2,681
AMD Ryzen Threadripper PRO 3975WX2,660
AMD Ryzen Threadripper PRO 3995WX2,599
Intel Xeon E5-1650 v3 @ 3.50GHz2,124
Intel Xeon E5-1620 v3 @ 3.50GHz2,015
Intel Xeon E5-2680 v4 @ 2.40GHz1,953
Intel Xeon E5-2697 v2 @ 2.70GHz1,793
[Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz1,752
Intel Xeon E5-2620 v3 @ 2.40GHz1,691
Last 5 Baselines for [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz
Most recent listed first
BaselineCPU Mark
BL2076390 - Apr 12 202430441
BL2071168 - Apr 06 202423746
BL5058676 - Mar 15 202436237
BL2037461 - Feb 29 202428907
BL2033253 - Feb 24 2024 [Excluded]26306

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

Popular comparisons for Intel Xeon E5-2683 v4 @ 2.10GHz
As of 22nd of April 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon E5-2683 v4 @ 2.10GHz28,237
AMD EPYC 7302 vs Intel Xeon E5-2683 v433,002 (+16.9%)
AMD EPYC 7282 vs Intel Xeon E5-2683 v429,846 (+5.7%)
AMD EPYC 7371 vs Intel Xeon E5-2683 v431,094 (+10.1%)
Intel Xeon Gold 6138 @ 2.00GHz vs Intel Xeon E5-2683 v423,204 (-17.8%)
Intel Xeon E5-2696 v3 @ 2.30GHz vs Intel Xeon E5-2683 v422,359 (-20.8%)
Intel Xeon Silver 4314 @ 2.40GHz vs Intel Xeon E5-2683 v429,346 (+3.9%)
Intel Xeon Gold 6148 @ 2.40GHz vs Intel Xeon E5-2683 v428,999 (+2.7%)
Intel Xeon Gold 6150 @ 2.70GHz vs Intel Xeon E5-2683 v427,337 (-3.2%)
AMD EPYC 7272 vs Intel Xeon E5-2683 v425,568 (-9.5%)
Intel Xeon Silver 4510 vs Intel Xeon E5-2683 v433,707 (+19.4%)
AMD EPYC 7351P vs Intel Xeon E5-2683 v425,657 (-9.1%)
Intel Xeon Silver 4410Y vs Intel Xeon E5-2683 v424,173 (-14.4%)

PassMark - [Dual CPU] Intel Xeon E5-2683 v4 @ 2.10GHz (2024)

FAQs

What is a good CPU test score? ›

You can find a chart of all the CPUMark values on the CPUbenchmark.net web site. A the time of writing 20,000+ was a high CPUMark while 8000 was more typical for a newish machine. The Mark values are good for a quick assessment of the hardware's performance.

Are CPU benchmarks reliable? ›

These tests are performed by giving real programs heavy workloads and then measuring the time it takes to complete. As a result, they provide a reliable preview of system performance when using the same settings.

How to test your CPU performance? ›

To access the CPU benchmark test, press Windows Key + R to open the run menu. In the box type PERFMON and hit enter. Here is where you can run a performance monitoring test that can benchmark the performance of your CPU as well as give you insights into the stats of your other hardware.

How much CPU do I really need? ›

CPU speed is measured in gigahertz (GHz), and a CPU speed of 3.5 GHz is more than enough for most users to run your preferred software. For gaming, video editing, and other applications that need several cores, aim for a CPU speed of 3.5 GHz to 4.0 GHz for best results.

What is the fastest CPU in the world? ›

Intel breaks record, launches the Core i9-14900KS CPU, world's fastest CPU running at 6.2Ghz. Intel has once again pushed the boundaries of desktop CPU performance with its latest release, the Core i9-14900KS.

Is PassMark free? ›

Versions of Performance Test are avilable for FREE on Linux, Mac, Android, and iOS. All CPU Tests have been designed to be fully comparable across all operating systems and CPU architectures. Our entire Suite of tests; CPU, Memory, Disk, Graphics.

How to calculate CPU mark? ›

Method one: Steps for how to benchmark a CPU
  1. Download and install necessary benchmark tools and hardware monitor.
  2. Run the CPU benchmarks three times each and average the resulting scores.
  3. Compare the scores to published scores online to see where your CPU lands.
Jul 24, 2023

What is a benchmark test score? ›

BENCHMARKS. The benchmark icon is another way to gain perspective. A checkmark shows you scored at or above the benchmark (480 for Evidence-Based Reading and Writing and 530 for Math). This means you're on track to be ready for college when you graduate. An exclamation point shows you scored below the benchmark.

Does RAM speed affect CPU benchmark? ›

Yes, RAM speed does matter. Faster RAM speeds allow for quicker transfer of data from the central processing unit (CPU) to the RAM, which enhances your computer's performance, especially in tasks that require heavy computation. However, the impact might not be noticeable in day-to-day computing tasks.

What is the best benchmark to test CPU and GPU? ›

The best benchmarks software in full:
  1. HWMonitor. Hardware monitoring goes cost-free. ...
  2. 3DMark. Popular gaming benchmark suite that's handy for overclockers. ...
  3. UserBenchmark. All-in one benchmarking suite. ...
  4. Cinebench. CPU-centric benchmarking solution at its best. ...
  5. MSI Afterburner. A must-have for overclocking your GPU. ...
  6. Geekbench.
Mar 29, 2024

Why is my CPU benchmark so low? ›

If there's a lot of CPU activity in the background during the Benchmark test, it will affect the CPU score significantly. For example if you try to run the Benchmark test when Windows hasn't finished booting yet. Also, anti-virus software might be scanning your harddrive in the background.

How to test if a CPU is bad? ›

You can also test the CPU using a hardware tool, such as a multimeter. You can measure the voltage and resistance of the CPU pins or sockets, and compare them to the specifications of the CPU. If the readings are out of range, you might have a damaged CPU.

How do I know if my CPU is running good? ›

In a CPU stress test — also known as a CPU benchmark — a computer is left to run for a while at maximum speed and utilization to test the stability of the processors and identify issues relating to overheating, unstable systems, and poor performance.

How to boost CPU Performance? ›

One way to increase computer performance is by optimizing your PC – cleaning out your hard drive or by clearing old and unnecessary files and programs.

What is normal CPU range? ›

A normal CPU temperature depends on which CPU you use. Generally, anything between 40–65°C (or 104–149°F) is considered a safe heat range for a normal workload. While running more intensive apps or games, the normal CPU temp range can increase to between 70–80°C (158–176°F).

Is 80 percent CPU bad? ›

Keep in mind that you can expect CPU usage to increase as a process or an application serves requests. However, if you consistently see CPU usage remain at a high level (80 percent or greater) for prolonged periods, the performance of your system or application will suffer.

What's a good CPU benchmark for gaming? ›

The quick list
  • Best for gaming. AMD Ryzen 7 7800X3D. View at Amazon. ...
  • Best budget. Intel Core i5 13400F. View at Amazon. ...
  • Best overall. Intel Core i5 13600K. View at Newegg. ...
  • Best Intel high-end. Intel Core i9 13900K. ...
  • Best AMD high-end. AMD Ryzen 9 7950X. ...
  • Best AM4 upgrade. AMD Ryzen 7 5800X3D. ...
  • Best CPU graphics. AMD Ryzen 7 8700G.
Mar 13, 2024

What is a good CPU score in Geekbench? ›

Processor Benchmarks
ProcessorScore
AMD Ryzen 5 PRO 7645 3.8 GHz (6 cores)2602
Intel Core i5-14500 2.6 GHz (14 cores)2545
Intel Core i9-12900F 2.4 GHz (16 cores)2539
Intel Core i9-12900KF 3.2 GHz (16 cores)2536
159 more rows

References

Top Articles
Latest Posts
Article information

Author: Domingo Moore

Last Updated:

Views: 6267

Rating: 4.2 / 5 (53 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Domingo Moore

Birthday: 1997-05-20

Address: 6485 Kohler Route, Antonioton, VT 77375-0299

Phone: +3213869077934

Job: Sales Analyst

Hobby: Kayaking, Roller skating, Cabaret, Rugby, Homebrewing, Creative writing, amateur radio

Introduction: My name is Domingo Moore, I am a attractive, gorgeous, funny, jolly, spotless, nice, fantastic person who loves writing and wants to share my knowledge and understanding with you.