Ginni has Published 1580 Articles

What are the relationships between programming languages and parallel architectures?

Ginni

Ginni

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

2K+ 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 ... Read More

Implementation of Global Instruction Scheduling in computer architecture

Ginni

Ginni

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

458 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 ... Read More

What is Global Scheduling?

Ginni

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 ... Read More

What are the implementations of software pipelining?

Ginni

Ginni

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

198 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 ... Read More

What is Software Pipelining?

Ginni

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 ... Read More

What are the types of Loop Scheduling?

Ginni

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 ... Read More

What is Basic block scheduling?

Ginni

Ginni

Updated on 20-Jul-2021 07:48:36

2K+ Views

Basic block scheduling is the clean but least effective code scheduling technique. Therefore, only instructions inside a basic block are acceptable for reordering. As a result, the feasible speed-up is definite by both true data and control dependencies. Basic block schedulers are typically used for slightly and moderately parallel ILP-Processors, ... Read More

What are the different levels of Code Scheduling in computer architecture?

Ginni

Ginni

Updated on 20-Jul-2021 07:47:00

2K+ Views

Code scheduling is used to cover dependency detection and resolution and parallel optimization. Code scheduling is generally adept in conjunction with traditional compilation. A code scheduler gets as input a set, or a sequence, of executable instruction, and a set of precedence constraints enforced on them, frequently in the form ... Read More

What is VLIW Architecture?

Ginni

Ginni

Updated on 20-Jul-2021 07:45:15

2K+ Views

VLIW stands for Very long instruction word. It is an instruction set architecture designed to take complete benefit of instruction-level parallelism (ILP) for revised implementation. Central processing unit processors enables programs to determine instructions to execute in sequence only although a VLIW processors enable programs to explicitly define instructions to ... Read More

How to remove Load-use delay in Computer Architecture?

Ginni

Ginni

Updated on 20-Jul-2021 07:44:00

242 Views

The layout of a processor pipeline affects load-use delay. The figure shows the traditional RISC, MIPS, and CISC pipeline layouts and the associated load-use delays.In the case of a traditional four-stage RISC pipeline, first, the registers are accessed for the components of an address calculation, such as the content of ... Read More

Advertisements