Questions tagged [central-processing-unit]

The central processing unit (CPU) is the portion of a computer system that carries out the instructions of a computer program, to perform the basic arithmetical, logical, and input/output operations of the system. The CPU plays a role somewhat analogous to the brain in the computer.

The central processing unit (CPU) is the portion of a computer system that carries out the instructions of a computer program, to perform the basic arithmetical, logical, and input/output operations of the system. The CPU plays a role somewhat analogous to the brain in the computer. The term has been in use in the computer industry at least since the early 1960s. The form, design and implementation of CPUs have changed dramatically since the earliest examples, but their fundamental operation remains much the same.

On large machines, CPUs require one or more printed circuit boards. On personal computers and small workstations, the CPU is housed in a single silicon chip called a microprocessor. Since the 1970s the microprocessor class of CPUs has almost completely overtaken all other CPU implementations. Modern CPUs are large scale integrated circuits in packages typically less than four centimeters square, with hundreds of connecting pins.

Two typical components of a CPU are the arithmetic logic unit (ALU), which performs arithmetic and logical operations, and the control unit (CU), which extracts instructions from memory and decodes and executes them, calling on the ALU when necessary.

839 questions
7
votes
3 answers

What is the meaning of "deassert" in this context?

The English majors over at Dell provided me with this error message provided by a PowerEdge 2950. CPU2 Status: Processor sensors for CPU2, IERR was deasserted I've Googled it, random forum posts aren't providing me with a clear answer. It's also…
Sam Rueby
  • 656
  • 3
  • 8
  • 17
7
votes
2 answers

TrustedInstaller.exe Takes a lot of Memory in Windows Server 2008

Apart from taking a lot of CPU, TrustedInstaller.exe also take huge memory in my Windows server 2008. Any solution for this issue? BTW, Windows Update Service should be started definitely.
Frank
  • 73
  • 1
  • 1
  • 3
7
votes
5 answers

Why is CPU use so asymmetric on our 8-cpu SQL Server box?

I've noticed that the CPU usage on our 8-CPU database server, running SQL Server 2008, is not balanced at all. Here are the 1 day averages for a random day a while back, which is typical and consistently asymmetric: 9, 15, 10, 21, 18, 21, 14,…
Jeff Atwood
  • 13,104
  • 20
  • 75
  • 92
7
votes
2 answers

Number of logical processors per VM?

I have a server (quad core) running Windows Hyper-V Server 2008 R2 with two Windows Server 208 R2 Standard guest virtual machines. I've noticed the number of logical processors setting (under the Processor) settings page for each VM defaults to 1,…
7
votes
2 answers

How is CPU processing speed reported in /proc/cpuinfo?

$ cat /proc/cpuinfo | grep -iE "model name|cpu MHz|processor" processor : 0 model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz cpu MHz : 1600.000 processor : 1 model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz cpu…
user784637
  • 1,542
  • 7
  • 35
  • 52
7
votes
2 answers

Ubuntu load average spikes but CPUs are idle

We have a server on a cloud network, provided by a third party. We are running Ubuntu 10.04 Server Edition. The problem happens at seemingly random times, around one to three times a day. The load average in top usually sits around 2 and the server…
Travesty3
  • 249
  • 1
  • 3
  • 13
7
votes
3 answers

taskset core numbers question

I have quad core CPU with hyper threading enabled. So I have 8 logical cores. I want to limit my application to use only 4 cores and I want this 4 cores to be different physical cores. Which taskset options (core numbers) should I use? : taskset -c…
7
votes
12 answers

Can a Multi core CPU be configured to allow the OS to the see the cores as a single CPU

Can a Multi core CPU server be configured to allow the OS to see all the cores as a single CPU and there by allowing the processor to function as a single CPU? A lot of modern day servers are multicore CPUs. Are they ways for all the CPU cores to…
L. DPenha
  • 215
  • 1
  • 4
  • 7
7
votes
1 answer

How can I tell the maximum threads my server can run?

Here is the machine spec: CPU(s): 20 Thread(s) per core: 1 Core(s) per socket: 10 Socket(s): 2 Based on what I've read so far, these numbers mean that I can run 20 parallel jobs because I have 20 CPUs. However, how…
6
votes
4 answers

How is RAM and CPU allocated if no manual changes are applied to an Ubuntu Server

We have an Ubuntu Server (16.04) running R-Studio Server where we do statistical simulations. Those simulations are sometimes heavy on RAM and CPU so i would like to know how memory and RAM is allocated by the core if e.g. two users are logged in…
6
votes
1 answer

Maximum php-fpm threads per one core

I would like to ask how to get the best (maximum) number of php-fpm threads per one core? How to benchmark it (on linux/debian)? And how to recognize that this count is already too much? Thank you.
thorewi
  • 63
  • 1
  • 3
6
votes
2 answers

Intel Xeon processors: Difference between 2S/4S and S2S/S4S scalability

While comparing Intel Xeon E5 and E7 processors, I've noticed that E5 processors are specified for 2S or 4S scalability, while E7 processors are specified for S2S, S4S, or S8S scalability. I understand that the processors are specified for use in up…
bwDraco
  • 1,636
  • 2
  • 12
  • 25
6
votes
2 answers

Apache consuming too much CPU and memory

I'm having some troubles with CPU and memory usage with an Apache Web Server. We're running an Ubuntu Server 12.04 LTS on a Virtual Machine. Our server has following specs: 8GB RAM; 4 vCPUs (12ghz); We configured the server to run a Drupal (7.23)…
humungs
  • 265
  • 3
  • 4
  • 8
6
votes
2 answers

Enable SMP on Debian i386?

I've been running a couple old HP machines on Debian for a while, and only recently noticed that they were only 'recognizing' and using one processor. cat /proc/cpuinfo only shows output for processor #0, same with top, etc. And when I pulled the…
Libbux
  • 295
  • 1
  • 2
  • 14
6
votes
6 answers

How to determine max CPU speed of a processor in Linux?

I have a few 2.6 Linux boxes, running mostly RHEL and SUSE. I know for certain the RHEL machines have power saving on via the cpu governor. When the ondemand governor kicks, /proc/cpuinfo is showing the current speed of the processor and no longer…
PopsiclePolly