PassMark - Intel Xeon E-2236 @ 3.40GHz (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the Intel Xeon E-2236 @ 3.40GHz 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 E-2236 @ 3.40GHz

Description:

Class: Server

Socket: FCLGA1151-2

Clockspeed: 3.4 GHz

Turbo Speed: 4.8 GHz

Cores: 6 Threads: 12

Typical TDP: 80 W

Cache per CPU Package:
L1 Instruction Cache: 6 x 32 KB
L1 Data Cache: 6 x 32 KB
L2 Cache: 6 x 256 KB
L3 Cache: 12 MB

Memory Support: Max. Memory Size: 128 GB (DDR4-2666, ECC Supported)

Other names: Intel(R) Xeon(R) E-2236 CPU @ 3.40GHz, Intel Xeon E-2236 CPU @ 3.40GHz

CPU First Seen on Charts: Q4 2019

CPUmark/$Price: 34.37

Overall Rank: 874

Last Price Change: $407.66 USD (2024-06-07)

Average CPU Mark

PassMark - Intel Xeon E-2236 @ 3.40GHz (10)

14013

Single Thread Rating: 2806
Samples: 47*
*Margin for error: Low

PerformanceTest V9
CPU Mark: 15,713
Thread: 2,762

CPU Test Suite Average Results for Intel Xeon E-2236 @ 3.40GHz

Integer Math47,995 MOps/Sec
Floating Point Math29,883 MOps/Sec
Find Prime Numbers40 Million Primes/Sec
Random String Sorting26,707 Thousand Strings/Sec
Data Encryption5,310 MBytes/Sec
Data Compression205,654 KBytes/Sec
Physics820 Frames/Sec
Extended Instructions12,269 Million Matrices/Sec
Single Thread2,806 MOps/Sec

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

CPU Mark Distribution for Intel Xeon E-2236 @ 3.40GHz

Submitted Baseline Distribution Graph as of 8th of June 2024

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


MerchantPricePurchase
PassMark - Intel Xeon E-2236 @ 3.40GHz (11)$407.66 USDBuy Now!
PassMark - Intel Xeon E-2236 @ 3.40GHz (12)NACPU Not Available. See Other Models
PassMark - Intel Xeon E-2236 @ 3.40GHz (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 12th of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 5975WX76,009
AMD Ryzen Threadripper PRO 3975WX62,990
Montage Jintide C5418Y49,045
AMD Ryzen Threadripper PRO 3955WX40,363
Hygon C86 7255 16-core18,831
Intel Xeon E5-2680 v4 @ 2.40GHz17,809
Montage Jintide C4215R14,672
Intel Xeon E5-2697 v2 @ 2.70GHz14,306
Intel Xeon E-2236 @ 3.40GHz14,013
Intel Xeon E5-1650 v3 @ 3.50GHz10,424
Intel Xeon E5-1650 v2 @ 3.50GHz9,345
CPU Value (CPU Mark / $Price )
As of 12th of June 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-1650 v3 @ 3.50GHz189.67
Intel Xeon E5-2680 v4 @ 2.40GHz84.82
Intel Xeon E5-2697 v2 @ 2.70GHz75.70
Intel Xeon E5-1650 v2 @ 3.50GHz40.64
Intel Xeon E-2236 @ 3.40GHz34.37
AMD Ryzen Threadripper PRO 5975WX31.94
AMD Ryzen Threadripper PRO 3955WX27.84
AMD Ryzen Threadripper PRO 3975WX27.39
Montage Jintide C4215RNA
Montage Jintide C5418YNA
Hygon C86 7255 16-coreNA
Single Thread Rating
As of 12th of June 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
AMD Ryzen Threadripper PRO 5975WX3,312
Intel Xeon E-2236 @ 3.40GHz2,806
AMD Ryzen Threadripper PRO 3955WX2,681
AMD Ryzen Threadripper PRO 3975WX2,660
Montage Jintide C5418Y2,341
Montage Jintide C4215R2,134
Intel Xeon E5-1650 v3 @ 3.50GHz2,124
Intel Xeon E5-1650 v2 @ 3.50GHz2,048
Intel Xeon E5-2680 v4 @ 2.40GHz1,951
Intel Xeon E5-2697 v2 @ 2.70GHz1,795
Hygon C86 7255 16-core1,490
Last 5 Baselines for Intel Xeon E-2236 @ 3.40GHz
Most recent listed first
BaselineCPU Mark
BL2105018 - May 20 202413580
BL2079164 - Apr 16 202412217
BL5060426 - Apr 03 202414774
BL2066956 - Apr 01 202412316
BL5059646 - Mar 28 202411847

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

Popular comparisons for Intel Xeon E-2236 @ 3.40GHz
As of 12th of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Intel Xeon E-2236 @ 3.40GHz14,013
Intel Xeon E-2276G @ 3.80GHz vs Intel Xeon E-223613,917 (-0.7%)
AMD EPYC 3251 vs Intel Xeon E-223613,912 (-0.7%)
Intel Xeon E-2246G @ 3.60GHz vs Intel Xeon E-223613,898 (-0.8%)
Intel Xeon E-2278G @ 3.40GHz vs Intel Xeon E-223617,023 (+21.5%)
Intel Xeon E-2186G @ 3.80GHz vs Intel Xeon E-223613,955 (-0.4%)
Intel Xeon W-1250 @ 3.30GHz vs Intel Xeon E-223613,654 (-2.6%)
Intel Xeon E-2176G @ 3.70GHz vs Intel Xeon E-223613,567 (-3.2%)
Intel Xeon E-2136 @ 3.30GHz vs Intel Xeon E-223613,451 (-4.0%)
Intel Xeon W-10855M @ 2.80GHz vs Intel Xeon E-223612,734 (-9.1%)
Intel Xeon Silver 4208 @ 2.10GHz vs Intel Xeon E-223611,371 (-18.8%)
Intel Xeon E-2226G @ 3.40GHz vs Intel Xeon E-223611,093 (-20.8%)
Intel Xeon W-2225 @ 4.10GHz vs Intel Xeon E-223610,562 (-24.6%)

PassMark - Intel Xeon E-2236 @ 3.40GHz (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.

What is a CPU passmark score? ›

What is the passmark score and how do you use it? The passmark score makes it possible to objectively compare the performance of processors (and other PC components, eg the graphics card). The score is the result of a benchmark, a series of calculations that are performed repeatedly. A higher score is better.

How to check CPU benchmark score? ›

Single- Vs. Multi-Core Scores
  1. Open Task Manager. With the game running, open Task Manager (CTRL+SHIFT+ESC) in Windows 10 and click on the Performance tab. ...
  2. Configure the CPU graph. ...
  3. Compare core activity.

What is benchmark in processor? ›

CPU benchmarking is the process of evaluating the performance of a CPU by running various tests and simulations designed to measure its speed, efficiency, and overall capabilities.

How fast is a 3.5 GHz processor? ›

When it comes to computers, GHz measures the speed at which electronic components process instructions from software. For example, a 3.5GHz processor means that the processor can execute 3.5 billion instructions in one second.

What is considered a good CPU speed? ›

Gamers and content creators who need more power should opt for a quad core processor with speeds in excess of 2.5GHz, while power users and enthusiasts may benefit from processors that go up to 3.8GHz or higher.

What is a normal CPU level? ›

If you're browsing the web or using standard programs like Microsoft Office, normal CPU usage is between 10% and 30%. Gaming can push your CPU to between 50% and 90%, depending on if you have a powerful gaming PC and the latest GTA 5 mods.

What do the k and f mean in Intel processors? ›

Is Intel K or KF better for gaming? K mean overclockable. F Means does not have integrated graphics unit. They both produce same results and performance in gaming.

What does f mean in an Intel CPU? ›

F. An F suffix marks a CPU that doesn't have integrated graphics. They must be paired with a discrete graphic card. G. The G suffix designates a CPU with additional built-in integrated graphics.

How to tell how good a CPU is? ›

CPU Clock Speed

Modern CPUs execute billions of cycles per second, so clock speed is measured in gigahertz (GHz). You can read more about clock speed and CPU cycles here to learn how these metrics can potentially impact your gameplay experience. Generally speaking, the higher the clock speed per core, the better.

What is a good CPU score on Geekbench? ›

Processor Benchmarks
ProcessorScore
Intel Core i9-14900HX 2.2 GHz (24 cores)2757
Intel Core i5-13600KF 3.5 GHz (14 cores)2752
AMD Ryzen 5 7500F 3.7 GHz (6 cores)2742
AMD Ryzen 5 7600 3.8 GHz (6 cores)2737
159 more rows

Is Ryzen better than Intel? ›

The AMD Ryzen 7 and Intel Core i7 processors are both powerful options, but the better choice depends on your specific needs. Ryzen 7 CPUs often offer more cores and better multi-threaded performance, while Intel Core i7 processors generally have higher single-threaded performance and better overall value.

How to test CPU capability? ›

How to Perform a Stress Test on Your PC's CPU
  1. Download and install Prime95 from the provided link.
  2. Open Prime95.
  3. Select “Just stress testing” after opening Prime95.
  4. Choose “Blend (all of the above)” from the options list and click “o*k.”
  5. Start the test, anticipating maximum load, noise, and heat.
Mar 15, 2024

Can benchmarks damage CPU? ›

Lastly, you'll want to be careful with online CPU benchmark tests. Only use verified software and tools when testing your CPU. Accidentally installing malware could lead to a malware infection or even possible damage to your CPU.

How to measure CPU performance? ›

Your CPU's clock speed influences how fast it can process instructions and perform tasks. On Windows, open the System page to view the CPU clock speed. On Mac, open the About This Mac page to see the CPU speed. On Linux, use Intel's turbostat tool through the terminal to check the CPU speed.

What is a good CPU count? ›

When buying a new computer, whether a desktop PC or laptop, it's important to know the number of cores in the processor. Most users are well served with 2 or 4 cores, but video editors, engineers, data analysts, and others in similar fields will want at least 6 cores.

What is good CPU stats? ›

If you are currently not running any additional programs, your CPU usage should be anywhere between 1% and 10% just through Windows processes alone. Anything higher than that on an idle PC means that something might be wrong.

What is normal CPU degrees? ›

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). The rule of thumb is, a bad CPU temp is 80-85°C (176–185°F) or above.

Top Articles
Latest Posts
Article information

Author: Corie Satterfield

Last Updated:

Views: 5653

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Corie Satterfield

Birthday: 1992-08-19

Address: 850 Benjamin Bridge, Dickinsonchester, CO 68572-0542

Phone: +26813599986666

Job: Sales Manager

Hobby: Table tennis, Soapmaking, Flower arranging, amateur radio, Rock climbing, scrapbook, Horseback riding

Introduction: My name is Corie Satterfield, I am a fancy, perfect, spotless, quaint, fantastic, funny, lucky person who loves writing and wants to share my knowledge and understanding with you.