Skip to content
The Computer Science
TheCScience
  • Engineering Subjects
    • Human Values
    • Computer System Architecture
    • Digital Communication
    • Internet of Things
  • NCERT Solutions
    • Class 12
    • Class 11
  • HackerRank solutions
    • HackerRank Algorithms Problems Solutions
    • HackerRank C solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
The Computer Science
TheCScience

Arithmetic Pipeline in Computer Architecture

YASH PAL, December 26, 2025February 23, 2026

Arithmetic Pipeline in Computer Architecture – The simplest structure of a pipeline may be considered as a combination of registers and combinational circuits. The register holds the data, and the combinational circuit performs the sub-operations in that particular segment.

Arithmetic Pipeline

In Computer Architecture arithmetic pipeline is generally implemented in very high-speed computers to implement the complex arithmetic functions. This is used to perform floating-point operations, multiplication of fixed-point numbers, and similar computations.

The arithmetic pipeline structure can be illustrated with an example. Suppose the desired operation is defined as

Fi = (Ai * Bi) + (Ci * Di) for i=1,2,.....5

To perform the above operation, each sub-operation is to be implemented in a segment within a pipeline. Each segment has one or two registers and a combinational circuit, as shown in the figure below. All the registers receive and store new data with every clock pulse. There are seven registers with two multipliers and one adder combinational circuit.

Arithmetic pipeline
Arithmetic Pipeline Example

Three segments may be considered as shown in the above figure. All these segments perform their functions separately. Once segment 1 completes its operation, it passes its output to segment 2, and segment 2 passes its output to segment 3 after completing its own operation. The table below shows the sub-operations performed in each segment.

SegmentRegister Transfer LanguageFunction
Segment 1R1 ← Ai, R2 ← Bi, R3 ← Ci, R4 ← DiInput data
Segment 2R5 ← R1 * R2, R6 ← R3 * R4Multiplication
Segment 3R7 ← R5 + R6Addition
Segment operations in the arithmetic pipeline

All seven registers (R1 to R7) are loaded with new data on occurence of a clock pulse. The effect of each clock pulse is given table below.

Clock
Plse
Seg
ment1
R1
Seg
ment1
R2
Seg
ment1
R3
Seg
ment1
R4
Seg
ment2
R5
Seg
ment2
R6
Seg
ment3
R7
1A1B1C1D1–––
2A2B2C2D2A1 * B1C1 * D1–
3A3B3C3D3A2 * B2C2 * D2A1*B1 + C1*D1
4A4B4C4D4A3 * B3C3 * D3A2*B2 + C2*D2
5A5B5C5D5A4* B4C4 * D4A3*B3 + C3*D3
6–––A5 * B5C5 * D5A4*B4 + C4*D4
7–––––A5*B5 + C5*D5
Content of registers in pipeline example

The above table indicates that the first clock pulse transfers A1, B1, C1, and D1 into registers R1, R2, R3, and R4. The second clock pulse transfers the product of R1 and R2 into R5 and the product of R3 and R4 into R6. The same clock pulse transfer A2, B2, C2 and D2 into R1, R2, R3 and R4. The third clock pulse operates on all three segments simultaneously.

It places A3, B3, C3, and D3 into R1, R2, R3, and R4, transfers the product of R1 and R2 into R5 and the product of R3 and R4 into R6, and places the sum of R5 and R6 into R7. These sub-operations show that three clock pulses are taken to fill the pipe and to retrieve the first output from R7. After that, each clock produces a new output and moves the data one step down in the pipeline. It is important to note that when no input data are available, the clock must continue until the last output emerges from the pipeline.


Related Questions and Answers

How does the arithmetic pipeline work?

An arithmetic pipeline divides an arithmetic operation into sub-operations for execution in the pipeline segments. It is more useful for vector processing.

Computer System Architecture engineering subjects Computer System Architectureengineering subjects

Post navigation

Previous post
Next post

Basic structure of a computer
Functional Units of a Computer
Development of Computers
Von Neumann and Harvard Machine Architecture
Flynn Classification
Computer Structure Architecture
Basic Computer Data Types
Arithmetic Complement
Real Numbers Representation
Interfacing Logic Devices
Levels of Design Abstraction
Performance Metrics

Register Transfer Language
Memory Transfer
Arithmetic Micro-operations
Arithmetic Complements
Logic Micro-operations
Shift Micro-operations
Bus Architecture
Data Transfer
Bus and Memory Transfer
Central Processing Unit
CPU Bus Architecture

Difference between Computer Architecture and Organization
Computer Register and Types
Common Bus System
Instruction Format
Instruction Types
Instruction Cycle
Fetch Decode Execute Instruction Cycle
Timing and Control of Instruction Cycle
Input-Output and Interrupt
Memory Reference Instructions
Addressing Modes
Design of a basic computer
Design of Accumulator Unit
Design of Control Unit
Difference between Hardwired Control and Microprogrammed Control

Basic Function of a Computer
Register organization
General Register Organization
Stack organization
Infix to Reverse Polish Notation Conversion
Instruction Types and their classifications
Data transfer and manipulation
Program control
RISC and CISC
Difference between RISC and CISC

Parallel Processing
Pipeline
Types of Pipeline
Arithmetic Pipeline
Instruction Pipeline
Hazards
RISC Pipeline
Vector Processing
Array Processors

Machine Language
Assembly Language
Arithmetic and Logical Operations
Subroutine
Data Representation
Addition and Subtraction
Adder Circuits
Shift and Add Multiplication Method
Booth's Algorithm
Restoring Division Algorithm
Non-Restoring Division Algorithm
Array Multiplier
Hardwired control and Microprogrammed control Difference

Memory Classification
Memory Characteristics
Memory Organization
Memory Types
Auxiliary Memory
Associative Memory
Cache Memory
Virtual Memory
Paging and Segmentation Difference
Multiprocessor
Interconnection Structures
Interprocessor Arbitration
Interprocessor Communication and Synchronization
Cache Coherence
Shared Memory Multiprocessors

Input Output Interface
Asynchronous Data Transfer
Modes of Data Transfer
Input-Output Programming
Priority Interrupt
Microprogramming
Control Memory
Address Sequencing
Micro Program Examples
Direct Memory Access
Input-Output Processor
Serial Communication

TheCScience

We at TheCScience.com are working towards the goal to give free education to every person by publishing in dept article about Secondary, Senior-Secondary, and Graduation level subjects.

Pages

About US

Contact US

Privacy Policy

DMCA

Our Tools

Hosting - get 20% off

Engineering Subjects

Internet of Things

Human Values

Digital Communication

Computer System Architecture

Programming Tutorials

Data Structure and Algorithm

C

Java

NCERT

Class 12th

©2026 TheCScience | WordPress Theme by SuperbThemes