answersLogoWhite

0

How scalar processor works?

Updated: 8/21/2019
User Avatar

Wiki User

9y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How scalar processor works?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between scalar and super scalar processor?

Differences between scalar and superscalar processors generally boil down to quantity and speed. A scalar processor, considered to be the simplest of all processors, works on one or two computer data items at a given time. The superscalar processor works on multiple instructions and several groups of multiple data items at a time. Scalar and superscalar processors both function the same way in terms of how they manipulate data, but their difference lies in how many manipulations and data items they can work on in a given time. Superscalar processors can handle multiple instructions and data items, while the scalarprocessor simply cannot, therefore making the former a more powerful processor than the latter. Scalar and superscalar processors both have some similarities with vector processors. Like ascalar processor, a vector processor also executes a single instruction at a time, but instead of just manipulating one data item, its single instruction can access multiple data items. Similar with the superscalar processor, a vector processor has several redundant functional units that let it manipulate multiple data items, but it can only work on a single instruction at a time. In essence, a superscalar processor is a combination of a scalar processor and a vector processor.


What are scalar waves?

Scalar waves are a type of electromagnetic that works outside of physics. They have to do with points in space.


List the different types of super scalar processor?

Superscalar processors have a main processor that can take only one command at a time. It has direct connections to the secondary systems of the processor that feeds information right into subsystems to execute specific commands and output information separate. There is only one type of superscalar processor but there are scalar processors and vector processors.


Difference between Scalar processor and vector processor?

Vector and scalar processors also differ in their startup times. A vector processor often requires a prolonged startup of the computer because of the multiple tasks being performed. Scalar processors start a computer in a much shorter amount of time, since only single tasks are being executed. The superscalar processor takes elements of each type and combines them for even fasterprocessing. Using instruction-level parallelism, superscalar processing can perform multiple operations at the same time. This allows for the CPU to perform much faster than a basic scalar processor, without the additional complexity and other limitations of the vectorprocessor. There can be problems with this type of processor, however, as it must determine which tasks can be performed in parallel and which are dependent on other tasks being completed first. Vector and scalar processors are still used on a daily basis. Some video game consoles, for example, use a combination of both vector and scalar processors. Vector processing is seen to have promise when dealing with multimedia tasks in which one instruction can address the large amount of data required for video and audio.


How do you xxplain vector processing issues.?

A vector processor is a Central Processing Unit design that is able to run mathematical operations on multiple data elements simultaneously. This is in contrast to a scalar processor which handles one element at a time.


What is essential characteristic of the super scalar approach to processor design?

The essence of the superscalar approach is the ability to execute instructions independently and concurrently in different pipelines


What is a technique in which each processor or core works on a different job?

The technique in which each processor or core works on a different job is called superscalar CPU architecture. This technique creates a faster CPU speed through the processor.


What is the name of two processor that works at same frequency but works independently?

Dual core?


Is the number of leaves on a tree scalar or vector?

scalar lol


How a core 2 duo processor works?

the Dual core processor works by have two compact processor cores or brains, set together, side by side, and they both have individual caches. All of the computers processes are routed through one or both of the processor cores. this allows for faster processing.


What are Hz in a processor?

Hz is short for Hertz, the rhythm, or pace at which the processor works. If it was 100 Hz, the processor would be able to do 100 small tasks each second.


How does the new operator work for two dimensional arrays?

The new operator works for two dimensional arrays the same way it works for one dimensional arrays, which is also the way it works for scalar objects. int *p = new int; /* allocate a scalar */ int *p = new int[10]; /* allocate 10 of them */ int *p = new int[10][20]; /* allocate 200 of them */ The only difference between the array case and the scalar case is how you delete. delete p; /* the scalar case */ delete [] p; /* any array case - one, two, or any dimensions */