SlideShare una empresa de Scribd logo
1 de 6
Descargar para leer sin conexión
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
1 | P a g e
INCREASING THE THROUGHPUT USING EIGHT STAGE PIPELINING
Ms. Sobiya Ambreen
Department of Electronics and Communication VVIET, Mysuru, India.
ABSTRACT
Using re-programmable logic components along with HDL languages encompasses wider and wider areas of
practical applications, becoming a standard of complex digital system design. One of the basic tasks, which are
to be carried out in the process of design, is obtaining the highest efficiency of the solution under design.
Thereby designers are still looking for methods making it possible to speed up design processing time.
Pipelining mechanism is one of these methods. It helps to speed up some dedicated operations. In the early
stage of design, a given unit described by high level language, is divided into some independent parts, which are
synchronized with each other via intermediate registers and synchronization signal (pipelining mechanism). 8-
stage pipelining is the key implementation technique used to make fast CPUs. It is an optimization technique
used to speed up instruction execution. Throughput of an instruction pipeline is increased while latency is
decreased for each instruction execution. This new 8-stage pipelining includes two instruction fetch, one
instruction decode, two execution, two memory and one write back stages. It describes advantages of both
speed and suitability for synthesizable RISC design.
INTRODUCTION
Pipelining is an implementation technique whereby multiple instructions are overlapped in execution; it takes
advantage of parallelism that exists among the actions needed to execute an instruction. Today, pipelining is the
key implementation technique used to make fast CPUs. A pipeline is like an assembly line. In an automobile
assembly line, there are many steps, each contributing something to the construction of the car. Each step
operates in parallel with the other steps, though on a different car. In a computer pipeline, each step in the
pipeline completes a part of an instruction. Like the assembly line, different steps are completing different parts
of different instructions in parallel. Each of these steps is called a pipe stage or a pipe segment. The stages are
connected one to the next to form a pipe instructions enter at one end, progress through the stages, and exit at
the other end, just as cars would in an assembly line.
In an automobile assembly line, throughput is defined as the number of cars per hour and is determined by how
often a completed car exits the assembly line. Likewise, the throughput of an instruction pipeline is determined
by how often an instruction exits the pipeline. Because the pipe stages are hooked together, all the stages must
be ready to proceed at the same time, just as we would require in an assembly line. The time required between
moving an instruction one step down the pipeline is a processor cycle. Because all stages proceed at the same
time, the length of a processor cycle is determined by the time required for the slowest pipe stage, just as in an
auto assembly line, the longest step would determine the time between advancing the line. In a computer, this
processor cycle is usually one clock cycle (sometimes it is two, rarely more).
OBJECTIVE
Increasing the throughput and decreasing the latency per instruction.
The pipeline designer’s goal is to balance the length of each pipeline stage, just as the designer of the assembly
line tries to balance the time for each step in the process. If the stages are perfectly balanced, then the time per
instruction on the pipelined processor assuming ideal conditions is equal to
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
2 | P a g e
Under these conditions, the speedup from pipelining equals the number of pipe stages, just as an assembly line
with n stages can ideally produce cars n times as fast. Usually, however, the stages will not be perfectly
balanced; furthermore, pipelining does involve some overhead. Thus, the time per instruction on the pipelined
processor will not have its minimum possible value, yet it can be close. Pipelining yields a reduction in the
average execution time per instruction. Depending on what you consider as the base line, the reduction can be
viewed as decreasing the number of clock Cycles Per Instruction (CPI), as decreasing the clock cycle time, or as
a combination. If the starting point is a processor that takes multiple clock cycles per instruction, then pipelining
is usually viewed as reducing the CPI. This is the primary view we will take. If the starting point is a processor
that takes one (long) clock cycle per instruction, then pipelining decreases the clock cycle time.
The speed of execution of programs is influenced by many factors. One way to improve performance is to use
faster circuit technology to build the processor and the main memory. Another possibility is to arrange the
hardware so that more than one operation can be performed at the same time. In this way, the number of
operations performed per second is increased even though the elapsed time needed to perform any one operation
is not changed.
SCOPE OF WORK
Two real-time applications of pipelining technology are, graphics hardware for processing pixels is extremely
latency tolerant not unusual to find pipelines that have 10’s of stages[1]
. Graphics pipelines are never flushed,
high clock rate is extremely important because of large number of pixels (> 1 Million) that have to be supplied
every screen, at >30 updates per second. Microprocessor instruction pipelines are not very latency tolerant, most
CPU pipelines are only about 5-10 stages. Works and researches on pipelining always aim to increase
throughput and decrease latency.
LITERATURE SURVEY
Pipelining increases the number of simultaneously executing instructions and the rate at which instructions are
started and completed. Pipelining does not reduce the time it takes to complete an individual instruction, also
called the latency. Pipelining improves instruction throughput rather than individual instruction execution time
or latency [1].VHSIC hardware description language (VHDL) is defined, VHDL is a formal notation intended
for use in all phases of the creation of electronic systems. Because it is both machine readable and human
readable, it supports the development, verification, synthesis, and testing of hardware designs; the
communication of hardware design data; and the maintenance, modification, and procurement of hardware. Its
primary audiences are the implementers of tools supporting the language and the advanced users of the
language [12], [13].Reduced Instruction Set Computer (RISC) architectures are the basis of modern high
performance processors. They have a simplified instruction set, with register to register arithmetic instructions,
memory can only be accessed by load and store instructions, usually with single and simple addressing mode;
the instruction have the fixed size and few simple formats. RISC processors use pipelining and their instruction
set allows tight control of their pipeline by the software. Optimizing compilers perform instruction scheduling
so as to exploit the parallelism offered by the pipeline data path. RISC processors achieve high performance at
low cost: the smaller and simpler circuits allow higher clock rates; the data path can use pipelining, and the
compiler can exploit it. In addition, design time, design cost and silicon areas are reduced [14].
METHODOLOGY
8-stage pipelining describes the basic operation of the CPU pipeline, which includes descriptions of the delay
instructions. The CPU has an eight-stage instruction pipeline; each stage takes one PCycle (one cycle of
PClock, which runs at twice the frequency of Master Clock). Thus, the execution of each instruction takes at
least eight PCycles (four Master Clock cycles)[16]
. An instruction can take longer for example, if the required
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
3 | P a g e
data is not in the cache, the data must be retrieved from main memory. Once the pipeline has been filled, eight
instructions are executed simultaneously. Figure 1 shows the eight stages of the instruction pipeline; the next
section describes the pipeline stages.
Figure 1: Instruction Pipeline Stages.
Pipeline stages
This section describes each of the eight pipeline stages:
IF - Instruction Fetch, First Half
IS - Instruction Fetch, Second Half
RF - Register Fetch
EX – Execution
DF - Data Fetch, First Half
DS - Data Fetch, Second Half
TC - Tag Check
WB - Write Back
IF - Instruction Fetch, First Half: During the IF stage, the following occurs:
1. Branch logic selects an instruction address and the instruction cache fetch begins.
2. The instruction translation look aside buffer (ITLB) begins the virtual-to-physical address translation.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
4 | P a g e
IS - Instruction Fetch, Second Half: During the IS stage, the instruction cache fetch and the virtual-to-physical
address translation are completed as shown in figure 2.
RF - Register Fetch: During the RF stage, the following occurs:
1. The instruction decoder (IDEC) decodes the instruction and checks for interlock conditions.
2. The instruction cache tag is checked against the page frame number obtained from the ITLB.
3. Any required operands are fetched from the register file.
EX – Execution: During the EX stage, one of the following occurs:
1. The arithmetic logic unit (ALU) performs the arithmetic or logical operation for register-to-register instructions.
2. The ALU calculates the data virtual address for load and store instructions.
3. The ALU determines whether the branch condition is true and calculates the virtual branch target address for
branch instructions.
Figure 2: Block diagram of eight stage pipelining.
DF – Data Fetch, First Half: During the DF stage, one of the following occurs:
1. The data cache fetches and the data virtual-to-physical translation begins for load and store instructions.
2. The branch instruction address translation and translation look aside buffer (TLB) update begins for branch
instructions [10]
.
3. No operations are performed during the DF, DS, and TC stages for register-to-register instructions.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
5 | P a g e
DS - Data Fetch, Second Half: During the DS stage, one of the following occurs:
The data cache fetch and data virtual-to-physical translation are completed for load and store instructions. The
Shifter aligns data to its word or double word boundary.
TC - Tag Check: For load and store instructions, the cache performs the tag check during the TC stage. The
physical address from the TLB is checked against the cache tag to determine if there is a hit or a miss.
WB - Write Back: For register-to-register instructions, the instruction result is written back to the register file
during the WB stage. Branch instructions perform no operation during this stage.
SOFTWARE REQUIREMENTS
1. Xilinx version 9.2.
2. VHDL language.
CONCLUSION
The work presented here describes a functional pipeline implementation design of a RISC processor designed
using VHDL. Individual components of eight stage pipelining were designed using VHDL modules. The VHDL
designs of the RISC processor were all simulated using Modelsim Simulator to ensure that the processors were
functional, being simulated by the VHDL designs. The number of clock cycles per instructions is proportional
to number of stages in pipelining. But the time required to execute an instruction is inversely proportional to
number of pipelining stages. The goal was to increase the number of clock cycles and simultaneously decrease
the execution time per instruction. As expected higher throughput and lower latency are successfully obtained.
Higher the number of stages of pipelining complexity increases.
REFERENCES
[1] Patterson, D. A., Hennessy, J. L., “Computer Organization and Design: The Hardware/Software Interface”,
2nd edition, Morgan Kaufmann Publishers, San Francisco, CA, 1998.
[2] “Xilinx, XC4000 Series Field Programmable Gate Arrays Product Specification”, ver. 1.6, 1999.
[3] Altera, FLEX “10K Embedded Programmable Logic Device Family Data Sheet”, ver. 4.2., 2003.
[4] Altera, “MAX 7000 Programmable Logic Device Family Data Sheet”, ver. 6.02, 2002.
[5] MIPS Technologies, www.mips.com.
[6] SPIM, http://www.cs.wisc.edu/~larus/spim.html.
[7] Altera, “MAX+PLUS II Getting Started Manual”, ver. 6.0, 1995.
[8] Diab, H., Demashkieh, I., “A reconfigurable microprocessor teaching tool”, IEEE Proceedings A, vol. 137,
issue 5, September 1990.
[9] Gray, J., “Designing a Simple FPGA-Optimized RISC CPU and System-on-a-Chip”, 2000.
[10] Altera, University Program UP2 Development Kit User Guide, ver. 3.0, 2003.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 6 JUNE-2015
6 | P a g e
[11] MIPS Technologies, “MIPS32™ Architecture For Programmers Volume I: Introduction to the MIPS32™
Architecture”, rev. 2.0, 2003.
[12] Brown, S., Vranesic, Z.,”Fundamentals of Digital Logic with VHDL Design, McGraw-Hill Publishers”,
2002.
[13] IEEE. “IEEE Standard VHDL Language Reference Manual”. IEEE, New York, NY, 2002. IEEE Standard
1076-2002.
[14] Land. B, “Electrical Engineering 475 Microprocessor Architectures”,
http://instruct1.cit.cornell.edu/Courses/ee475/
[15] Takahashi, R., Ohiwa, H., “Situated Learning on FPGA for Superscalar Microprocessor Design
Education”, IEEE Proceedings of the 16
th
Symposium on Integrated Circuits and System Design, 2003.
[16] Altera, ByteBlaster MV Parallel Port Download Cable, ver. 3.3, 2002.
[17] Larus, J. R., “SPIM S20: A MIPS R2000 Simulator”, 1993.

Más contenido relacionado

La actualidad más candente

Pipelining and ILP (Instruction Level Parallelism)
Pipelining and ILP (Instruction Level Parallelism) Pipelining and ILP (Instruction Level Parallelism)
Pipelining and ILP (Instruction Level Parallelism) A B Shinde
 
PCIe Gen 3.0 Presentation @ 4th FPGA Camp
PCIe Gen 3.0 Presentation @ 4th FPGA CampPCIe Gen 3.0 Presentation @ 4th FPGA Camp
PCIe Gen 3.0 Presentation @ 4th FPGA CampFPGA Central
 
Arm processors' architecture
Arm processors'   architectureArm processors'   architecture
Arm processors' architectureDr.YNM
 
RISC and CISC Processors
RISC and CISC ProcessorsRISC and CISC Processors
RISC and CISC ProcessorsAdeel Rasheed
 
1 Computer Architecture
1 Computer Architecture1 Computer Architecture
1 Computer Architecturefika sweety
 
0 introduction to computer architecture
0 introduction to computer architecture0 introduction to computer architecture
0 introduction to computer architectureaamc1100
 
Multi Processors And Multi Computers
 Multi Processors And Multi Computers Multi Processors And Multi Computers
Multi Processors And Multi ComputersNemwos
 
Superscalar and VLIW architectures
Superscalar and VLIW architecturesSuperscalar and VLIW architectures
Superscalar and VLIW architecturesAmit Kumar Rathi
 
Software hardware co-design using xilinx zynq soc
Software hardware co-design using xilinx zynq socSoftware hardware co-design using xilinx zynq soc
Software hardware co-design using xilinx zynq socHossam Hassan
 
RISC-V Introduction
RISC-V IntroductionRISC-V Introduction
RISC-V IntroductionYi-Hsiu Hsu
 
Cache memory principles
Cache memory principlesCache memory principles
Cache memory principlesbit allahabad
 

La actualidad más candente (20)

ARM CORTEX M3 PPT
ARM CORTEX M3 PPTARM CORTEX M3 PPT
ARM CORTEX M3 PPT
 
Pipelining and ILP (Instruction Level Parallelism)
Pipelining and ILP (Instruction Level Parallelism) Pipelining and ILP (Instruction Level Parallelism)
Pipelining and ILP (Instruction Level Parallelism)
 
Arm
ArmArm
Arm
 
PCI express
PCI expressPCI express
PCI express
 
PCIe Gen 3.0 Presentation @ 4th FPGA Camp
PCIe Gen 3.0 Presentation @ 4th FPGA CampPCIe Gen 3.0 Presentation @ 4th FPGA Camp
PCIe Gen 3.0 Presentation @ 4th FPGA Camp
 
R&c
R&cR&c
R&c
 
Arm processors' architecture
Arm processors'   architectureArm processors'   architecture
Arm processors' architecture
 
RISC and CISC Processors
RISC and CISC ProcessorsRISC and CISC Processors
RISC and CISC Processors
 
3 Pipelining
3 Pipelining3 Pipelining
3 Pipelining
 
1 Computer Architecture
1 Computer Architecture1 Computer Architecture
1 Computer Architecture
 
Risc processors
Risc processorsRisc processors
Risc processors
 
ARM Architecture
ARM ArchitectureARM Architecture
ARM Architecture
 
0 introduction to computer architecture
0 introduction to computer architecture0 introduction to computer architecture
0 introduction to computer architecture
 
Multi Processors And Multi Computers
 Multi Processors And Multi Computers Multi Processors And Multi Computers
Multi Processors And Multi Computers
 
Superscalar and VLIW architectures
Superscalar and VLIW architecturesSuperscalar and VLIW architectures
Superscalar and VLIW architectures
 
Software hardware co-design using xilinx zynq soc
Software hardware co-design using xilinx zynq socSoftware hardware co-design using xilinx zynq soc
Software hardware co-design using xilinx zynq soc
 
RISC-V Introduction
RISC-V IntroductionRISC-V Introduction
RISC-V Introduction
 
AVR ATmega32
AVR ATmega32AVR ATmega32
AVR ATmega32
 
Cache memory principles
Cache memory principlesCache memory principles
Cache memory principles
 
Pcie basic
Pcie basicPcie basic
Pcie basic
 

Similar a INCREASING THE THROUGHPUT USING EIGHT STAGE PIPELINING

Pipeline Mechanism
Pipeline MechanismPipeline Mechanism
Pipeline MechanismAshik Iqbal
 
Pipelining in Computer System Achitecture
Pipelining in Computer System AchitecturePipelining in Computer System Achitecture
Pipelining in Computer System AchitectureYashiUpadhyay3
 
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORDESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORVLSICS Design
 
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORDESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORVLSICS Design
 
Design and Analysis of A 32-bit Pipelined MIPS Risc Processor
Design and Analysis of A 32-bit Pipelined MIPS Risc ProcessorDesign and Analysis of A 32-bit Pipelined MIPS Risc Processor
Design and Analysis of A 32-bit Pipelined MIPS Risc ProcessorVLSICS Design
 
Pipelining 16 computers Artitacher pdf
Pipelining   16 computers Artitacher  pdfPipelining   16 computers Artitacher  pdf
Pipelining 16 computers Artitacher pdfMadhuGupta99385
 
Automatically partitioning packet processing applications for pipelined archi...
Automatically partitioning packet processing applications for pipelined archi...Automatically partitioning packet processing applications for pipelined archi...
Automatically partitioning packet processing applications for pipelined archi...Ashley Carter
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture designssuser87fa0c1
 
Pipeline & Nonpipeline Processor
Pipeline & Nonpipeline ProcessorPipeline & Nonpipeline Processor
Pipeline & Nonpipeline ProcessorSmit Shah
 
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...IDES Editor
 
Cse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solutionCse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solutionShobha Kumar
 

Similar a INCREASING THE THROUGHPUT USING EIGHT STAGE PIPELINING (20)

Pipeline Computing by S. M. Risalat Hasan Chowdhury
Pipeline Computing by S. M. Risalat Hasan ChowdhuryPipeline Computing by S. M. Risalat Hasan Chowdhury
Pipeline Computing by S. M. Risalat Hasan Chowdhury
 
Pipeline Mechanism
Pipeline MechanismPipeline Mechanism
Pipeline Mechanism
 
Pipelining in Computer System Achitecture
Pipelining in Computer System AchitecturePipelining in Computer System Achitecture
Pipelining in Computer System Achitecture
 
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORDESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
 
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSORDESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
DESIGN AND ANALYSIS OF A 32-BIT PIPELINED MIPS RISC PROCESSOR
 
Design and Analysis of A 32-bit Pipelined MIPS Risc Processor
Design and Analysis of A 32-bit Pipelined MIPS Risc ProcessorDesign and Analysis of A 32-bit Pipelined MIPS Risc Processor
Design and Analysis of A 32-bit Pipelined MIPS Risc Processor
 
1.My Presentation.pptx
1.My Presentation.pptx1.My Presentation.pptx
1.My Presentation.pptx
 
W04505116121
W04505116121W04505116121
W04505116121
 
Pipeline
PipelinePipeline
Pipeline
 
Pipelining 16 computers Artitacher pdf
Pipelining   16 computers Artitacher  pdfPipelining   16 computers Artitacher  pdf
Pipelining 16 computers Artitacher pdf
 
Pipelining slides
Pipelining slides Pipelining slides
Pipelining slides
 
Coa.ppt2
Coa.ppt2Coa.ppt2
Coa.ppt2
 
Automatically partitioning packet processing applications for pipelined archi...
Automatically partitioning packet processing applications for pipelined archi...Automatically partitioning packet processing applications for pipelined archi...
Automatically partitioning packet processing applications for pipelined archi...
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
Pipeline & Nonpipeline Processor
Pipeline & Nonpipeline ProcessorPipeline & Nonpipeline Processor
Pipeline & Nonpipeline Processor
 
Assembly p1
Assembly p1Assembly p1
Assembly p1
 
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...
Implementing True Zero Cycle Branching in Scalar and Superscalar Pipelined Pr...
 
Cse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solutionCse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solution
 
10_Pipeline.pdf
10_Pipeline.pdf10_Pipeline.pdf
10_Pipeline.pdf
 
CO Module 5
CO Module 5CO Module 5
CO Module 5
 

Más de ijiert bestjournal

CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMPijiert bestjournal
 
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...ijiert bestjournal
 
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAFCOMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAFijiert bestjournal
 
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINEijiert bestjournal
 
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY ijiert bestjournal
 
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAINREVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAINijiert bestjournal
 
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...ijiert bestjournal
 
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...ijiert bestjournal
 
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...ijiert bestjournal
 
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR ijiert bestjournal
 
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFTDESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFTijiert bestjournal
 
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...ijiert bestjournal
 
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENTHEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENTijiert bestjournal
 
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH ijiert bestjournal
 
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW ijiert bestjournal
 
DESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERSDESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERSijiert bestjournal
 
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...ijiert bestjournal
 
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...ijiert bestjournal
 
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...ijiert bestjournal
 

Más de ijiert bestjournal (20)

CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
 
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAFCOMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
 
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
 
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAINREVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
 
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
 
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
 
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
 
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
 
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFTDESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
 
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
 
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENTHEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
 
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
 
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
 
DESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERSDESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERS
 
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
 
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
 
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
 
MAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHINGMAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHING
 

Último

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSrknatarajan
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 

Último (20)

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 

INCREASING THE THROUGHPUT USING EIGHT STAGE PIPELINING

  • 1. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 1 | P a g e INCREASING THE THROUGHPUT USING EIGHT STAGE PIPELINING Ms. Sobiya Ambreen Department of Electronics and Communication VVIET, Mysuru, India. ABSTRACT Using re-programmable logic components along with HDL languages encompasses wider and wider areas of practical applications, becoming a standard of complex digital system design. One of the basic tasks, which are to be carried out in the process of design, is obtaining the highest efficiency of the solution under design. Thereby designers are still looking for methods making it possible to speed up design processing time. Pipelining mechanism is one of these methods. It helps to speed up some dedicated operations. In the early stage of design, a given unit described by high level language, is divided into some independent parts, which are synchronized with each other via intermediate registers and synchronization signal (pipelining mechanism). 8- stage pipelining is the key implementation technique used to make fast CPUs. It is an optimization technique used to speed up instruction execution. Throughput of an instruction pipeline is increased while latency is decreased for each instruction execution. This new 8-stage pipelining includes two instruction fetch, one instruction decode, two execution, two memory and one write back stages. It describes advantages of both speed and suitability for synthesizable RISC design. INTRODUCTION Pipelining is an implementation technique whereby multiple instructions are overlapped in execution; it takes advantage of parallelism that exists among the actions needed to execute an instruction. Today, pipelining is the key implementation technique used to make fast CPUs. A pipeline is like an assembly line. In an automobile assembly line, there are many steps, each contributing something to the construction of the car. Each step operates in parallel with the other steps, though on a different car. In a computer pipeline, each step in the pipeline completes a part of an instruction. Like the assembly line, different steps are completing different parts of different instructions in parallel. Each of these steps is called a pipe stage or a pipe segment. The stages are connected one to the next to form a pipe instructions enter at one end, progress through the stages, and exit at the other end, just as cars would in an assembly line. In an automobile assembly line, throughput is defined as the number of cars per hour and is determined by how often a completed car exits the assembly line. Likewise, the throughput of an instruction pipeline is determined by how often an instruction exits the pipeline. Because the pipe stages are hooked together, all the stages must be ready to proceed at the same time, just as we would require in an assembly line. The time required between moving an instruction one step down the pipeline is a processor cycle. Because all stages proceed at the same time, the length of a processor cycle is determined by the time required for the slowest pipe stage, just as in an auto assembly line, the longest step would determine the time between advancing the line. In a computer, this processor cycle is usually one clock cycle (sometimes it is two, rarely more). OBJECTIVE Increasing the throughput and decreasing the latency per instruction. The pipeline designer’s goal is to balance the length of each pipeline stage, just as the designer of the assembly line tries to balance the time for each step in the process. If the stages are perfectly balanced, then the time per instruction on the pipelined processor assuming ideal conditions is equal to
  • 2. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 2 | P a g e Under these conditions, the speedup from pipelining equals the number of pipe stages, just as an assembly line with n stages can ideally produce cars n times as fast. Usually, however, the stages will not be perfectly balanced; furthermore, pipelining does involve some overhead. Thus, the time per instruction on the pipelined processor will not have its minimum possible value, yet it can be close. Pipelining yields a reduction in the average execution time per instruction. Depending on what you consider as the base line, the reduction can be viewed as decreasing the number of clock Cycles Per Instruction (CPI), as decreasing the clock cycle time, or as a combination. If the starting point is a processor that takes multiple clock cycles per instruction, then pipelining is usually viewed as reducing the CPI. This is the primary view we will take. If the starting point is a processor that takes one (long) clock cycle per instruction, then pipelining decreases the clock cycle time. The speed of execution of programs is influenced by many factors. One way to improve performance is to use faster circuit technology to build the processor and the main memory. Another possibility is to arrange the hardware so that more than one operation can be performed at the same time. In this way, the number of operations performed per second is increased even though the elapsed time needed to perform any one operation is not changed. SCOPE OF WORK Two real-time applications of pipelining technology are, graphics hardware for processing pixels is extremely latency tolerant not unusual to find pipelines that have 10’s of stages[1] . Graphics pipelines are never flushed, high clock rate is extremely important because of large number of pixels (> 1 Million) that have to be supplied every screen, at >30 updates per second. Microprocessor instruction pipelines are not very latency tolerant, most CPU pipelines are only about 5-10 stages. Works and researches on pipelining always aim to increase throughput and decrease latency. LITERATURE SURVEY Pipelining increases the number of simultaneously executing instructions and the rate at which instructions are started and completed. Pipelining does not reduce the time it takes to complete an individual instruction, also called the latency. Pipelining improves instruction throughput rather than individual instruction execution time or latency [1].VHSIC hardware description language (VHDL) is defined, VHDL is a formal notation intended for use in all phases of the creation of electronic systems. Because it is both machine readable and human readable, it supports the development, verification, synthesis, and testing of hardware designs; the communication of hardware design data; and the maintenance, modification, and procurement of hardware. Its primary audiences are the implementers of tools supporting the language and the advanced users of the language [12], [13].Reduced Instruction Set Computer (RISC) architectures are the basis of modern high performance processors. They have a simplified instruction set, with register to register arithmetic instructions, memory can only be accessed by load and store instructions, usually with single and simple addressing mode; the instruction have the fixed size and few simple formats. RISC processors use pipelining and their instruction set allows tight control of their pipeline by the software. Optimizing compilers perform instruction scheduling so as to exploit the parallelism offered by the pipeline data path. RISC processors achieve high performance at low cost: the smaller and simpler circuits allow higher clock rates; the data path can use pipelining, and the compiler can exploit it. In addition, design time, design cost and silicon areas are reduced [14]. METHODOLOGY 8-stage pipelining describes the basic operation of the CPU pipeline, which includes descriptions of the delay instructions. The CPU has an eight-stage instruction pipeline; each stage takes one PCycle (one cycle of PClock, which runs at twice the frequency of Master Clock). Thus, the execution of each instruction takes at least eight PCycles (four Master Clock cycles)[16] . An instruction can take longer for example, if the required
  • 3. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 3 | P a g e data is not in the cache, the data must be retrieved from main memory. Once the pipeline has been filled, eight instructions are executed simultaneously. Figure 1 shows the eight stages of the instruction pipeline; the next section describes the pipeline stages. Figure 1: Instruction Pipeline Stages. Pipeline stages This section describes each of the eight pipeline stages: IF - Instruction Fetch, First Half IS - Instruction Fetch, Second Half RF - Register Fetch EX – Execution DF - Data Fetch, First Half DS - Data Fetch, Second Half TC - Tag Check WB - Write Back IF - Instruction Fetch, First Half: During the IF stage, the following occurs: 1. Branch logic selects an instruction address and the instruction cache fetch begins. 2. The instruction translation look aside buffer (ITLB) begins the virtual-to-physical address translation.
  • 4. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 4 | P a g e IS - Instruction Fetch, Second Half: During the IS stage, the instruction cache fetch and the virtual-to-physical address translation are completed as shown in figure 2. RF - Register Fetch: During the RF stage, the following occurs: 1. The instruction decoder (IDEC) decodes the instruction and checks for interlock conditions. 2. The instruction cache tag is checked against the page frame number obtained from the ITLB. 3. Any required operands are fetched from the register file. EX – Execution: During the EX stage, one of the following occurs: 1. The arithmetic logic unit (ALU) performs the arithmetic or logical operation for register-to-register instructions. 2. The ALU calculates the data virtual address for load and store instructions. 3. The ALU determines whether the branch condition is true and calculates the virtual branch target address for branch instructions. Figure 2: Block diagram of eight stage pipelining. DF – Data Fetch, First Half: During the DF stage, one of the following occurs: 1. The data cache fetches and the data virtual-to-physical translation begins for load and store instructions. 2. The branch instruction address translation and translation look aside buffer (TLB) update begins for branch instructions [10] . 3. No operations are performed during the DF, DS, and TC stages for register-to-register instructions.
  • 5. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 5 | P a g e DS - Data Fetch, Second Half: During the DS stage, one of the following occurs: The data cache fetch and data virtual-to-physical translation are completed for load and store instructions. The Shifter aligns data to its word or double word boundary. TC - Tag Check: For load and store instructions, the cache performs the tag check during the TC stage. The physical address from the TLB is checked against the cache tag to determine if there is a hit or a miss. WB - Write Back: For register-to-register instructions, the instruction result is written back to the register file during the WB stage. Branch instructions perform no operation during this stage. SOFTWARE REQUIREMENTS 1. Xilinx version 9.2. 2. VHDL language. CONCLUSION The work presented here describes a functional pipeline implementation design of a RISC processor designed using VHDL. Individual components of eight stage pipelining were designed using VHDL modules. The VHDL designs of the RISC processor were all simulated using Modelsim Simulator to ensure that the processors were functional, being simulated by the VHDL designs. The number of clock cycles per instructions is proportional to number of stages in pipelining. But the time required to execute an instruction is inversely proportional to number of pipelining stages. The goal was to increase the number of clock cycles and simultaneously decrease the execution time per instruction. As expected higher throughput and lower latency are successfully obtained. Higher the number of stages of pipelining complexity increases. REFERENCES [1] Patterson, D. A., Hennessy, J. L., “Computer Organization and Design: The Hardware/Software Interface”, 2nd edition, Morgan Kaufmann Publishers, San Francisco, CA, 1998. [2] “Xilinx, XC4000 Series Field Programmable Gate Arrays Product Specification”, ver. 1.6, 1999. [3] Altera, FLEX “10K Embedded Programmable Logic Device Family Data Sheet”, ver. 4.2., 2003. [4] Altera, “MAX 7000 Programmable Logic Device Family Data Sheet”, ver. 6.02, 2002. [5] MIPS Technologies, www.mips.com. [6] SPIM, http://www.cs.wisc.edu/~larus/spim.html. [7] Altera, “MAX+PLUS II Getting Started Manual”, ver. 6.0, 1995. [8] Diab, H., Demashkieh, I., “A reconfigurable microprocessor teaching tool”, IEEE Proceedings A, vol. 137, issue 5, September 1990. [9] Gray, J., “Designing a Simple FPGA-Optimized RISC CPU and System-on-a-Chip”, 2000. [10] Altera, University Program UP2 Development Kit User Guide, ver. 3.0, 2003.
  • 6. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 6 JUNE-2015 6 | P a g e [11] MIPS Technologies, “MIPS32™ Architecture For Programmers Volume I: Introduction to the MIPS32™ Architecture”, rev. 2.0, 2003. [12] Brown, S., Vranesic, Z.,”Fundamentals of Digital Logic with VHDL Design, McGraw-Hill Publishers”, 2002. [13] IEEE. “IEEE Standard VHDL Language Reference Manual”. IEEE, New York, NY, 2002. IEEE Standard 1076-2002. [14] Land. B, “Electrical Engineering 475 Microprocessor Architectures”, http://instruct1.cit.cornell.edu/Courses/ee475/ [15] Takahashi, R., Ohiwa, H., “Situated Learning on FPGA for Superscalar Microprocessor Design Education”, IEEE Proceedings of the 16 th Symposium on Integrated Circuits and System Design, 2003. [16] Altera, ByteBlaster MV Parallel Port Download Cable, ver. 3.3, 2002. [17] Larus, J. R., “SPIM S20: A MIPS R2000 Simulator”, 1993.