Found 312 Articles for Computer Architecture

What is Multiport Memory?

Ginni
Updated on 27-Jul-2021 14:40:08

3K+ Views

Multiport memory is a memory that helps in providing more than one access port to separate processors or to separate parts of one processor. A bus can be used to achieve this kind of access.This mechanism applies to interconnected computers too. A multiport memory system uses separate buses between each CPU and each memory module.Each processor bus is linked to each memory module. A processor bus includes three components as an address, information, and control lines. These components are required to connect with memory. The memory module has four ports and each port includes one of the buses.A module should ... Read More

What is Time-shared Common Bus in Computer Architecture?

Ginni
Updated on 27-Jul-2021 14:38:37

2K+ Views

In the time-shared common bus, there are numerous processors linked by a common direction to the memory unit in a common-bus multiprocessor system. The figure shows the organization of time-shared common buses for five processors.There is only one processor that can interact with the memory of another processor. The processor that is in control of the bus at the time implements transfer operations. Any processor that needs to start a transfer should first check the availability condition of the bus.During the bus is available, the processor can start a connection with the destination unit to introduce the transfer. A command ... Read More

Difference between Shared Memory Multiprocessors and Message-Passing Multiprocessors in Computer Architecture.

Ginni
Updated on 27-Jul-2021 14:35:51

5K+ Views

Shared Memory MultiprocessorsIn shared-memory multiprocessors, numerous processors are accessing one or more shared memory modules. The processors may be physically connected to the memory modules in many ways, but logically every processor is connected to every memory module.One of the major characteristics of shared memory multiprocessors is that all processors have equally direct access to one large memory address space. The limitation of shared memory multiprocessors is memory access latency.The figure shows shared-memory multiprocessors.Shared memory multiprocessors have a major benefit over other multiprocessors since all the processors sent a similar view of the memory.These processors are also termed Uniform Memory ... Read More

What are the characteristics of Multiprocessor?

Ginni
Updated on 27-Jul-2021 14:33:45

22K+ Views

A multiprocessor is a single computer that has multiple processors. It is possible that the processors in the multiprocessor system can communicate and cooperate at various levels of solving a given problem. The communications between the processors take place by sending messages from one processor to another, or by sharing a common memory.Characteristics of MultiprocessorThere are the major characteristics of multiprocessors are as follows −Parallel Computing − This involves the simultaneous application of multiple processors. These processors are developed using a single architecture to execute a common task. In general, processors are identical and they work together in such a ... Read More

What is Multiprocessor?

Ginni
Updated on 27-Jul-2021 14:32:37

6K+ Views

A multiprocessor is a data processing system that can execute more than one program or more than one arithmetic operation simultaneously. It is also known as a multiprocessing system. Multiprocessor uses with more than one processor and is similar to multiprogramming that allows multiple threads to be used for a single procedure.The term ‘multiprocessor’ can also be used to describe several separate computers running together. It is also referred to as clustering. A system is called a multiprocessor system only if it includes two or more elements that can implement instructions independently.A multiprocessor system employs a distributed approach. In the ... Read More

What is Page Replacement in Computer Architecture?

Ginni
Updated on 27-Jul-2021 14:31:04

10K+ Views

A virtual memory organization is a consolidation of hardware and software systems. It can make efficient utilization of memory space all the software operations are handled by the memory management software.The hardware mapping system and the memory management software together form the structure of virtual memory.When the program implementation starts, one or more pages are transferred into the main memory and the page table is set to denote their location. The program is implemented from the main memory just before a reference is created for a page that is not in memory. This event is defined as a page fault.When ... Read More

How to Address Mapping using Pages in Computer Architecture?

Ginni
Updated on 27-Jul-2021 14:30:09

4K+ Views

The table execution of the address mapping is interpreted if the data in the address space and the memory space are each split into a collection of fixed sizes. The physical memory is broken down into sets of similar size known as blocks, which can range from 64 to 4096 words each. The term page defines a set of address spaces of a similar size.Example − Suppose a page or block consists of 1K words, then address space can be divided into 1024 pages and main memory can be divided into 32 blocks.Even though both a page and a block ... Read More

What is the relationship between Address and Memory Space in a Virtual Memory System?

Ginni
Updated on 27-Jul-2021 14:27:53

6K+ Views

Addresses that are used by programmers are known as virtual addresses, and the set of such addresses is known as the address space. Space or spot where the address is saved in the main memory is referred to as location or physical address and the set of such locations is known as the memory space.Therefore, the address space is the set of addresses generated by programs as they reference instructions and data. The memory space holds the actual main memory locations that are directly addressable for processing.Example − Consider, main-memory having a capacity of 32K words (K = 1024). 15 ... Read More

Discuss the Set Associative Mapping in Computer Architecture?

Ginni
Updated on 27-Jul-2021 14:26:21

11K+ Views

Set associative mapping combines direct mapping with fully associative mapping by arrangement lines of a cache into sets. The sets are persistent using a direct mapping scheme. However, the lines within each set are treated as a small fully associative cache where any block that can save in the set can be stored to any line inside the set.The diagram represents this arrangement using a sample cache that uses four lines to a set.A set-associative cache that includes k lines per set is known as a k way set-associative cache. Because the mapping approach uses the memory address only like ... Read More

What is Direct Mapping Process in Computer Architecture?

Ginni
Updated on 03-Nov-2023 14:14:21

24K+ Views

Direct mapping is a procedure used to assign each memory block in the main memory to a particular line in the cache. If a line is already filled with a memory block and a new block needs to be loaded, then the old block is discarded from the cache.The figure shows how multiple blocks from the example are mapped to each line in the cache.Just like locating a word within a block, bits are taken from the main memory address to uniquely describe the line in the cache where a block can be stored.Example − Consider a cache with = ... Read More

Previous 1 ... 5 6 7 8 9 ... 32 Next
Advertisements