answersLogoWhite

0

The most popular entry level SMP systems use the x86 instruction set architecture and are based on Intel's Xeon, Pentium D, Core Duo & Core 2 Duo based processors and AMD's athlon64 X2, Quad FX or Opteron 200 & 2000 Series.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

When a computer has two or more Central Processing Units it is considered SMP?

Typically, yes. Symmetrical Multiprocessing refers more to two identical processors, but software designed for SMP can still be used on mismatched dual processors. It also applies for multi-core processors.Typically, when software designed for SMP, it simply means that it has multiple threads that allow it to use more than one processor at a time. Non-SMP software will still work on a SMP system (including non-SMP kernels). SMP software should work on a non-SMP system. SMP kernels might work on non-SMP systems, but there would be no advantage.


How does Windows XP Pro manages multiprocessor Memory management UMA or NUMA CPU scheduling CPU synchronization?

Symmetric multiprocessing (SMP) is a technology that allows a computer to use more than one processor. The most common configuration of an SMP computer is one that uses two processors. The two processors are used to complete your computing tasks faster than a single processor. (Two processors aren't necessarily twice as fast as a single processor, though.) In order for a computer to take advantage of a multiprocessor setup, the software must be written for use with an SMP system. If a program isn't written for SMP, it won't take advantage of SMP. Not every program is written for SMP; SMP applications, such as image-editing programs, video-editing suites, and databases, tend to be processor intensive. SMP in Windows XP Operating systems also need to be written for SMP in order to use multiple processors. In the Windows XP family, only XP Professional supports SMP; XP Home does not. If you're a consumer with a dual-processor PC at home, you have to buy XP Professional. Windows XP Advanced Server also supports SMP. In Microsoft's grand scheme, XP Professional is meant to replace Windows 2000, which supports SMP. In fact, XP Professional uses the same kernel as Windows 2000. XP Home is designed to replace Windows Me as the consumer OS, and Windows Me does not support SMP. The difference between XP Professional and XP Home is more than just $100 and SMP support. XP Professional has plenty of other features not found in XP Home; some you'll use, others you won't care about. MANISHKUMAR JHA Symmetric multiprocessing (SMP) is a technology that allows a computer to use more than one processor. The most common configuration of an SMP computer is one that uses two processors. The two processors are used to complete your computing tasks faster than a single processor. (Two processors aren't necessarily twice as fast as a single processor, though.) In order for a computer to take advantage of a multiprocessor setup, the software must be written for use with an SMP system. If a program isn't written for SMP, it won't take advantage of SMP. Not every program is written for SMP; SMP applications, such as image-editing programs, video-editing suites, and databases, tend to be processor intensive. SMP in Windows XP Operating systems also need to be written for SMP in order to use multiple processors. In the Windows XP family, only XP Professional supports SMP; XP Home does not. If you're a consumer with a dual-processor PC at home, you have to buy XP Professional. Windows XP Advanced Server also supports SMP. In Microsoft's grand scheme, XP Professional is meant to replace Windows 2000, which supports SMP. In fact, XP Professional uses the same kernel as Windows 2000. XP Home is designed to replace Windows Me as the consumer OS, and Windows Me does not support SMP. The difference between XP Professional and XP Home is more than just $100 and SMP support. XP Professional has plenty of other features not found in XP Home; some you'll use, others you won't care about. MANISHKUMAR JHA Symmetric multiprocessing (SMP) is a technology that allows a computer to use more than one processor. The most common configuration of an SMP computer is one that uses two processors. The two processors are used to complete your computing tasks faster than a single processor. (Two processors aren't necessarily twice as fast as a single processor, though.) In order for a computer to take advantage of a multiprocessor setup, the software must be written for use with an SMP system. If a program isn't written for SMP, it won't take advantage of SMP. Not every program is written for SMP; SMP applications, such as image-editing programs, video-editing suites, and databases, tend to be processor intensive. SMP in Windows XP Operating systems also need to be written for SMP in order to use multiple processors. In the Windows XP family, only XP Professional supports SMP; XP Home does not. If you're a consumer with a dual-processor PC at home, you have to buy XP Professional. Windows XP Advanced Server also supports SMP. In Microsoft's grand scheme, XP Professional is meant to replace Windows 2000, which supports SMP. In fact, XP Professional uses the same kernel as Windows 2000. XP Home is designed to replace Windows Me as the consumer OS, and Windows Me does not support SMP. The difference between XP Professional and XP Home is more than just $100 and SMP support. XP Professional has plenty of other features not found in XP Home; some you'll use, others you won't care about. MANISHKUMAR JHA


Describe a symmetric multi processing system?

Symmetric Multiprocessing, or SMP, is a multiprocessor computer architecture where two or more identical processors are connected to a single shared main memory. SMP systems allow any processor to work on any task no matter where the data for that task is located in memory; with proper operating system support. SMP systems can easily move tasks between processors to balance the workload efficiently. Hope ive helped.


Does Ubuntu support dual processors?

Yes. By default, Ubuntu has supported multi processing since Ubuntu 5, due to the default kernel that loads is and SMP kernel. In other words it assumes a system has multiprocessing. If of course you don't, there is no degradation in performance.


What Windows Server 2003 editions supports up to eight processors in a SMP system?

Enterprise Edition


Does Windows XP provide SMP support?

Yes.


What is the maximum number of cpus supported in an smp configuration on a windows server 2003 datacenter edition system running on the Intel or Intel-compatible processor platform?

32.


What does smp mean in Minecraft?

SMP stands for Survival MultiPlayer


Why doesn't Windows XP run on a 80486 processor?

There are several reasons why Windows XP does not run on a 486:1. Most 486 computers simply cannot support enough memory to run Windows XP. 64 MB is pretty much the maximum you'd ever find in a 486; 8 to 16 MB is most common.2. The kernel in Windows XP is SMP-enabled by default. To support SMP, Windows XP uses an instruction called CMPXCHG8B, which is only found in Pentium and later processors.3. In order to allow for optimizations on-the-fly, such as using MMX or SSE instructions, Windows XP also requires the CPUID instruction, which only the later 486 processors had.


6 Describe the differences between symmetric and asymmetric multiprocessing?

Asymmetric multiprocessing - In asymmetric multiprocessing (ASMP), the operating system typically sets aside one or more processors for its exclusive use. The remainder of the processors run user applications. As a result, the single processor running the operating system can fall behind the processors running user applications. This forces the applications to wait while the operating system catches up, which reduces the overall throughput of the system. In the ASMP model, if the processor that fails is an operating system processor, the whole computer can go down. Symmetric mMultiprocessing - Symmetric multiprocessing (SMP) technology is used to get higher levels of performance. In symmetric multiprocessing, any processor can run any type of thread. The processors communicate with each other through shared memory. SMP systems provide better load-balancing and fault tolerance. Because the operating system threads can run on any processor, the chance of hitting a CPU bottleneck is greatly reduced. All processors are allowed to run a mixture of application and operating system code. A processor failure in the SMP model only reduces the computing capacity of the system. SMP systems are inherently more complex than ASMP systems. A tremendous amount of coordination must take place within the operating system to keep everything synchronized. For this reason, SMP systems are usually designed and written from the ground up.


What is WMP and SMP in milk production?

SMP - Skimmed milk powder WMP - Whole milk powder


What is multi processing in Linux?

Symettric Multi-Processing, or SMP, is actually not just a feature in Linux, but what it is is the capability of a kernel to support multiple CPUs or CPU cores. Of course, usually to take advantage of SMP in an operating system, the program itself must at least be multi-threading aware.