Found 826 Articles for Network

What is Computer Architecture as a Multilevel Hierarchical Framework?

Ginni
Updated on 20-Jul-2021 08:11:57

1K+ Views

The concrete architecture at a given level is normally defined in the phrase of its components. Hence, the description of the concrete architecture at a given level is based on the abstract architectures of its components.As an effect, the concrete architecture at a specific level is a description at a higher abstraction level than the corresponding abstract architecture at the subsequent lower level.Thus, we can define that the sequence of theory of concrete and abstract architectures at successive levels yields a description framework at following higher levels of abstraction.Therefore, the three-level architecture description design considered, with independent concrete and abstract ... Read More

What are the interpretations of the theory of computer architecture?

Ginni
Updated on 20-Jul-2021 08:10:26

875 Views

It can interpret the theory of computer architecture at several levels of rising abstraction. At each level, the architecture will be represented by declaring the underlying computational model, the functional specification, and the actual implementation. Therefore, the interpretation covers three elements including the underlying computational model, the level of consideration, and the scope of interest, as displayed in the figure.First, it can overview the underlying computational model. Several years in the past, the term ‘computer architecture’ was inherently interpreted as a von Neumann architecture.Subsequently, when novel architectures that depend on a model of computation other than the von Neumann model ... Read More

What is Von-Neumann Model?

Ginni
Updated on 20-Jul-2021 08:07:53

4K+ Views

Von Neumann’s model is composed of three specific components (or sub-systems) including a central processing unit (CPU), memory, and input/output (I/O) interfaces. The figure defines one of the various possible methods of interconnecting these components.CPU − CPU can be regarded as the soul of the computing system, includes three main components: the control unit (CU), one or more arithmetic logic units (ALUs), and multiple registers. The control unit decide the order in which instructions should be implemented and controls the retrieval of the useful operands. It defines the instructions of the machine.The execution of each instruction is persistent by a ... Read More

What are the basic computational models?

Ginni
Updated on 20-Jul-2021 08:06:16

6K+ Views

There are six basic computational models such as Turing, von Neumann, dataflow, applicative, object-based, predicate logic-based, etc. These models are known as basic models because they can be declared using a basic set of abstractions.A hierarchy of subclasses can be defined for each of the basic models to any extent required. For instance, if the process abstraction is introduced into the von Neumann model, new subclasses can be defined according to whether all processes might have access to a global data space (Shared-memory subclass) or the processes could have their own local data spaces, and access remote data spaces by ... Read More

What are the relationships between programming languages and parallel architectures?

Ginni
Updated on 20-Jul-2021 08:03:05

1K+ Views

The theory of a computational model is a higher-level abstraction than the approach of programming language and computer architecture.A programming language can be speculation as a specification device making applicable the system of a computational task whereby a specific computational model is pretended.Computer architecture can be considered upon as a tool to execute a computational model or to implement a given computational task defined using a programming language, whereby a specific computational model is given.To demonstrate these relationships it can consider the basic features of the programming languages and computer architectures that compare to the von Neumann computational model.A programming ... Read More

Implementation of Global Instruction Scheduling in computer architecture

Ginni
Updated on 20-Jul-2021 08:01:16

402 Views

The implementation of global instruction scheduling is a technique called trace scheduling. Trace scheduling was first employed in the Bulldog compiler, developed for the experimental VLIW machine ELI-512 at Yale (Fisher et al, 1984), and subsequently in the Trace scheduling compiler of the commercial TRACE family of VLIW machines (Colwell et al, 1987).A more recently published novel global schedule technique is FRGS (Finite Resource Global Scheduling), developed and experimentally implemented by IBM for VLIW and superscalar processor (Moon and Ebcioglu, 1992, Moon et al, 1993).Trace SchedulingThis technique originates like most instruction scheduling techniques, in the schedule for horizontally microcoded machines ... Read More

What is Global Scheduling?

Ginni
Updated on 20-Jul-2021 07:59:26

1K+ Views

ILP-compilers have to extract acceptable instruction-level parallelism to make use of available hardware resources properly, specifically EUs. This is not a simple task for extremely parallel ILP-processors, including VLIW machines or highly superscalar processors. In specific, general-purpose programs, including operating systems or application programs, with their small fundamental block sizes and profoundly irregular parallelism, characterized using unpredictable branches make this task intensely hard or even unsolvable.In this method, basic block schedulers cannot be predicted to extract sufficient parallelism to feed hugely parallel ILP-processors accurately. Therefore, compilers for parallelism-greedy ILP-processors have to make use of the very effective scheduling techniques, known ... Read More

What are the implementations of software pipelining?

Ginni
Updated on 20-Jul-2021 07:57:51

143 Views

Software pipelining is a compile-time scheduling technique that overlaps consecutive loop iterations to disclose operation-level parallelism. A necessary issue with the development of adequate software pipelining algorithms is how to deal with loops with conditional branches.Conditional branches raise the complexity and reduce the performance of software pipelining algorithms by presenting few possible execution paths into the scheduling scope. Software Pipelining is implemented either by techniques based on unrolling or by modulo scheduling as shown in the figure.The basic idea of the techniques based on unrolling is quite simple − unroll the loop several times and arrange unrolled code in the ... Read More

What is Software Pipelining?

Ginni
Updated on 20-Jul-2021 07:55:05

2K+ Views

Software pipelining is a compile-time scheduling technique that overlaps subsequent loop iterations to disclose operation-level parallelism. A necessary issue with the development of adequate software pipelining algorithms is how to deal with loops with conditional branches. Conditional branches raise the complexity and reduce the performance of software pipelining algorithms by offering few possible execution paths into the scheduling opportunity.In order to demonstrate the underlying idea let us look at the most feasible parallel execution of a loop on an ILP-processor which has multiple execution units that operate in parallel. Let us assume a RISC-like intermediate code for the loop body ... Read More

What are the types of Loop Scheduling?

Ginni
Updated on 20-Jul-2021 07:50:56

2K+ Views

Loops are an important source of parallelism for ILP-processors. Therefore, the regularity of the control structure can speed up computation. Loop scheduling is a central point of instruction schedulers that have been advanced for highly parallel ILP-processors, including VLIWs.Types of Loop SchedulingThere are two different types of loop scheduling are as follows −Loop unrollingThe basic concept of loop unrolling is to repeat the loop body multiple times and to discard unnecessary inter-iteration code, including decrementing the loop count, verification for loop end, and branching back conditionally between iterations.This will result in a shortened implementation time. Loop unrolling can be executed ... Read More

Advertisements