SlideShare a Scribd company logo
1 of 5
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 464
HARDBACK SOLUTION TO ACCELERATE MULTIMEDIA
COMPUTATION THROUGH MGP IN CMP
Jimcy Babu1
, Kavitha .V2
, K.V.Ramakrishnan3
1
M Tech, CMRIT, Bangalore
2
Ph D Scholar, Jain University
3
Professor
Abstract
Current multimedia applications are becoming more and more complex; thereby it increases workload for General purpose
processors (GPPs). This resulted in the advent of Chip multiprocessors (CMPs). In most of the cases CMPs were not fully utilized.
Hence, how to achieve the contemporary multimedia requirement like speed i.e. completion time, by using CMP became a
question.
In this project work a solution had been put forward to tackle the crisis. The idea behind the solution is the proper exploitation of
the parallelism thereby accelerating the multimedia computation in CMPs. To achieve the less completion time, four levels of
parallelism has been considered i.e. Data Level, Thread Level, Instruction Level and Memory Level called as Multi-Grain
Parallelism (MGP). POSIX thread concept is used to implement Data Level, Thread Level, Instruction Level and for Memory
Level, pre-fetch concept. To run, Linux based platform is required. Here UBUNTU 12.02 version is used.
This project also performs a comparison between serial computation and parallel computation at different levels, based on
completion time. The experimental results show that parallel computation consumes less time as compared to that of serial
computation. Thereby, making it viable for multimedia applications
Keywords: Chip Multiprocessor (CMP), Data Level Parallelism (DLP), Thread Level Parallelism (TLP), Instruction
Level Parallelism (ILP), Memory Level Parallelism (MLP), POSIX thread (p-thread), Pre-fetch.
--------------------------------------------------------------------***------------------------------------------------------------------
1. INTRODUCTION
Advances in IC technology have led to billions of transistors
on chip keeping up with Moore’s law. The initial trend was
of CPU’s with wider instruction issue and instruction
execution involving prediction and speculation. This was the
superscalar approach which was argued against due to its
diminishing performance for increasing issue width due to
limited amount of parallelism in instructions in non-
scientific applications and the complex hardware needed.
Many factors both technological and marketing are driving
the semiconductor industry to implement multiple
processors per chip.
Hence instead of a complex superscalar processor, an
alternate approach, the Chip Multiprocessor (CMP) or
multi-core processor was proposed. The CMP combines
much simpler processors or cores on a single chip or die.
Each core is a complete processor unit itself and works as a
team with the other cores on chip. It is now proven that this
approach is the only way to build high performance
architectures and CMPs perform equal or better than the
superscalar approach.
Chip Multiprocessor- also called Multi-core
microprocessors or CMP for short are now the only way to
build high performance microprocessors, for a variety of
reasons. Large uniprocessor are no longer scaling in
performance, because it is only possible to extract a limited
amount of parallelism from a typical instruction stream
using conventional superscalar instruction issue techniques.
Along with the numerous opportunities of the CMPs, there
are also a lot of challenges that keep us from exploiting their
full potential. Numerous bottlenecks have appeared that
have to be dealt with before we can fully benefit from
CMPs. These bottlenecks have tapered off the performance
increase of CMPs in recent years [4].
The rest of the paper is organised as follows. Section 2
analyses the related work carried. Section 3 comprises of
methods for the parallel programming. Section 4, describes
the simulation result
2. RELATED WORK
For real-time multimedia applications, performance is the
key constraint. A fair comparison of energy must therefore
also consider performance. As a result, the energy of SMT
and CMP at the same performance is compared in [5]. The
complexity arises because each performance point can be
obtained by CMP and SMT using several combinations of
frequency and processor micro-architecture. For a CMP or
SMT with a given core architecture, varying the processor
frequency provides a continuum of performance points. Any
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 465
of these points could be achieved either as a fixed-frequency
design or in a system with DVS support. Data for CMP and
SMT systems were collected using all combinations of core
architectures and frequencies.
For all systems and workloads considered in [5] and for all
performance regions, CMP architecture gives the least EPI.
It is also found that the best SMT and the best CMP
configuration for a given performance target have different
architecture and frequency/voltage. Therefore, their relative
energy efficiency depends on a subtle interplay between
various factors such as capacitance, voltage, IPC, frequency
and the level of clock gating, as well as workload features.
Although CMP shows a clear energy advantage for four-
thread or higher workloads, it comes at the cost of increased
Silicon area. Therefore paper investigated a hybrid solution
where a CMP is build out of SMT cores, and found it to be
an effective compromise.
The work in [6], relates the techniques to increase
Instruction level parallelism by improving balanced
scheduling with compiler optimization. This study combines
Balanced Scheduling with three compiler optimization:
Loop Unrolling, Trace Scheduling and Locality Analysis.
The researchers “Huiyang Zhou and Thomas M. Conte”
developed a method to improve Memory Level Parallelism
[7]. This technique parallelizes sequential cache misses
speculatively. Value prediction has great potential to
enhance MLP by overlapping sequential cache misses.
3. PARALLEL PROGRAMMING METHOD
The main objective is to accelerate the multimedia
application, thereby reducing the completion time. The
objective is accomplished by making use of the concept of
Multi-Grain parallelism (MGP) in the Chip Multiprocessor
(CMP). To exploit the different levels of parallelism, p-
thread notion is used.
POSIX Thread (p-thread) is a standard for programming
with threads and it defines a set of C-types functions and
constants. More widely, p-threads are a technique that a
program can spawn concurrent units of processing that can
then be consigned by the Operating System to multiple
processing cores.
Multithreading increases resource utilization by
multiplexing the execution of multiple threads on the same
pipeline. Clearly, the advantage of multithreading is
achieving the high speeds by allocating multiple threads to
multiple processing cores, as all cores of CPU or all CPU’s
if more than one is used operates at the same time.
This method exploits the parallelism from the following
levels: Data Level Parallelism, Instruction Level
Parallelism, Thread Level Parallelism and Memory Level
Parallelism.
3.1 Data Level Parallelism
In parallel computing environment, Data parallelism is a
form of parallelization of computing in multiple processors.
Data Parallelism focuses on distributing data across different
parallel computing nodes. The concept used to achieve Data
Level Parallelism is Single Instruction Multiple Data
(SIMD) architecture.
In a multiprocessor system executing a single set of
instructions (SIMD), data parallelism is achieved when each
processor performs the same task on different pieces of
distributed data. In some situations, a single execution
thread controls operations on all pieces of data. In others,
different threads control the operation, but they execute the
same code.
In this parallelism the simple ALU functions like addition
and multiplication are considered which are stored in a
register. The serial execution of the program is done by
dividing to tasks and its real time of execution is noted.
The parallel programming is done using POSIX threads
where the different tasks (addition & multiplication) are
divided into threads and these threads perform tasks
simultaneously thereby reducing the real time. Here the
main thread holds the control and wait until the other thread
execution is completed simultaneously.
A single thread performs the given tasks completely at a
time indicating SIMD (Single Instruction Multiple Data).
3.2 Thread Level Parallelism
In thread-Level Parallelism (TLP) instead of having to wait
for other threads, it has a capability that enables a program,
often a high-end program such as a data or web application
to work with multiple threads at the same time. Therefore
programs that support this ability are able to do a lot more
even under high levels of workloads.
Here we divide the tasks to different threads and one thread
is meant to perform a single task and other threads will
perform other tasks. The control is taken by the main threads
and waits for the rest threads to complete the tasks. The
serial version of the execution takes more time
comparatively than the parallel which can be observed very
clearly.
Hence here one can observe the efficiency of having
parallelism concept instead of sequential in multi-core
systems using POSIX threads. Comparatively Thread Level
Parallelism achieves the highest level of Parallelism
amongst other levels of parallelism.
3.3 Instruction Level Parallelism
The potential overlap among instructions is called
instruction level parallelism (ILP). It is a measure of how
many of the operations in a computer program can be
performed simultaneously. Here the superscalar technology
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 466
can be adapted for better utilisation of Instruction level
parallelism.
It deals with simultaneously performing of all the tasks at a
time. The same tasks are performed by threads where there
is no inter dependency of data.
Suppose consider,
A=(X*X) +(Y*Y) + (Z*Z)
Fig 1: Figure for Instruction Level Parallelism
In parallel executions, different tasks are executed
simultaneously. The instruction level parallelism is achieved
with real time analysis and comparison with sequential
execution is also noted.
3.4 Memory Level Parallelism
Memory Level Parallelism (MLP) is a term in computer
architecture. It refers to the ability to have pending multiple
memory operations at the same time, in particular cache
misses or translation look aside buffer misses. The concept
used to achieve Memory Level Parallelism (MLP) is the pre-
fetch technique.
There are two ways in which pre-fetching can occur:
 Initiated by hardware,
 Initiated by software.
In this implementation, software pre-fetch is used. Software
pre-fetching involves identifying when your application will
need a particular set of data, then using special pre-fetch
instructions to tell the processor to get this data in advance.
The time consumption for both without pre-fetch and with
pre-fetch was noted. There was a less time consumption
comparatively with using pre-fetch instructions.
Fig 2: Simple illustration for without pre-fetch and with pre-
fetch [internet]
Figure 2, explains about the concept used for Memory Level
Parallelism, both for with and without pre-fetch.
4. SIMULATION RESULTS
Table 1: Summary Table
Level of
Parallelism
Serial
Operation
(Seconds)
Parallel
Operation
(Seconds)
Data Level and
Thread Level
Parallelism
0.029 0.013
Instruction
Level
Parallelism
0.013 0.005
Memory Level
Parallelism
0.75 0.68
The table 1 shows the summary of the simulation result. It
shows the time taken to perform both serial and parallel
operation in Data Level Parallelism, Thread Level
Parallelism, Instruction Level Parallelism and pre-fetch in
Memory Level Parallelism.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 467
Fig 3: Summary Bar Chart for DLP_TLP and ILP
Fig 4: Summary Bar Chart for MLP
Bar Chart shows the time differences for different levels of
parallelism.
Figure 3 shows the bar chart for the obtained simulation
results for Serial computation and parallel computation for
Data Level, Thread Level and Instruction Level. Here the
Data and Thread levels are integrated which is shown as
DLP_TLP.
Figure 4 shows the bar chart for the simulation result for
Memory Level. Memory level is implemented using the pre-
fetch concept. It shows the time differences for with pre-
fetch and without pre-fetch operation. From the result, time
taken with pre-fetch is more as compared with without pre-
fetch.
5. CONCLUSIONS AND FUTURE SCOPE
In this implementation, different methods are implemented
to exploit different levels of parallelism. POSIX Thread
concept is used to implement the Data Level, Thread Level
and Instruction Level Parallelism. Instruction Level
Parallelism is based on superscalar architecture. Memory
level is achieved using the Pre-fetch concept. The simulation
results show that all the levels of parallelism can be
achieved.
The time difference for serial as well as parallel computation
is also compared. From the simulation result it is shown that
completion time is more for serial computation as compared
to that of parallel. Hence parallel computation can accelerate
multimedia application in Chip Multiprocessors.
As a future research, the following work can be performed;
integration of all the levels can be performed along with
extension to multiple processors on chip. It can be further
configured for different workloads especially in case of
multimedia application.
ACKNOWLEDGMENTS
I would like to express my sincere thanks to my guide Mrs.
Kavitha. V, Ph D Scholar, Jain University for her timely
guidance and encouragement to make this project, a success
REFERENCES
[1]. Xiaoping Huang, Xiaoya Fan, Shengbing Zhang And
Liwen Shi, “Investigation On Multi-Grain Parallelism In
Chip Multiprocessor For Multimedia Application”,
proceeding of IEEE 2009, Computer School, Northwestern
Polytechnical University, China.
[2]. Man-Lap Li, Ruchira Scscnka, Sarita V. Adve, Yen-
Kuang Chen, Erid Debes, “The ALPbench Benchmark Suite
For Complex Multimedia Application”, Proceeding of the
2005 International Symposium On Workload
Characterization, October, 2005.
[3]. KunleOlukotun, LanceHammond of Stanford University
and James Laudon of Sun Microsystems, “Chip
Multiprocessor Architecture: Techniques to Improve
Throughput and Latency”, 2007.
[4]. Bushra Ahsan, Fatma Omara and Mohamed
Zahran,Department of Computer Science, “Chip
Multiprocessor: Challenges and Opportunities”,
INFOS2008, March 27-29, 2008 Cairo-Egypt.
[5]. Ruchira Sasanka, Sarita V. Adve, Yen-Kuang and Eric
Debes , “The Energy Efficiency of CMP v/s SMT for
multimedia workloads”, June 26–July 1, 2004, SaintMalo,
France, Copyright 2004.
[6]. Jack L.Lo and SusanJ.Eggers; “Improving Balanced
Scheduling with Compiler Optimization that Increase
Instruction Level Parallelism”, Department Of Computer
Science and Engineering, University Of Washington, 1995.
[7]. Huiyang Zhou and Thomas M. Conte, Department of
Electrical and Computer Engineering,“Enhancing Memory
Level Parallelism via Recovery-Free Value Prediction”,
June 23-26, 2003, SanFrancisco, California, USA,
Copyright 2003.
[8]. Kostas Bousias, Nabil Hasasneh, Chris Jesshope,
“Instruction-level parallelism through Micro threading- A
Scalable Approach to Chip Multiprocessor”, Computer
Journal, March 2006,49(21): 211-233.
[9] http://en.wikipedia.org/wiki/C_(programming_language)
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 468
[10].http://en.wikipedia.org/wiki/C++_(programming_langu
age)
[11]. http://en.wikipedia.org/wiki/ubuntu
[12]. http://en.wikipedia.org

More Related Content

What's hot

DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTINGDYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTINGcscpconf
 
(Im2col)accelerating deep neural networks on low power heterogeneous architec...
(Im2col)accelerating deep neural networks on low power heterogeneous architec...(Im2col)accelerating deep neural networks on low power heterogeneous architec...
(Im2col)accelerating deep neural networks on low power heterogeneous architec...Bomm Kim
 
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...ijceronline
 
Convolutional Neural Network and Feature Transformation for Distant Speech Re...
Convolutional Neural Network and Feature Transformation for Distant Speech Re...Convolutional Neural Network and Feature Transformation for Distant Speech Re...
Convolutional Neural Network and Feature Transformation for Distant Speech Re...IJECEIAES
 
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...ijdpsjournal
 
A multi path routing algorithm for ip
A multi path routing algorithm for ipA multi path routing algorithm for ip
A multi path routing algorithm for ipAlvianus Dengen
 
Design and Implementation of Low Power DSP Core with Programmable Truncated V...
Design and Implementation of Low Power DSP Core with Programmable Truncated V...Design and Implementation of Low Power DSP Core with Programmable Truncated V...
Design and Implementation of Low Power DSP Core with Programmable Truncated V...ijsrd.com
 
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...ijmnct
 
Performance Analysis of multithreaded applications based on Hardware Simulati...
Performance Analysis of multithreaded applications based on Hardware Simulati...Performance Analysis of multithreaded applications based on Hardware Simulati...
Performance Analysis of multithreaded applications based on Hardware Simulati...Maria Stylianou
 
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUS
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUSAVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUS
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUScsandit
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)inventionjournals
 
Image transmission in wireless sensor networks
Image transmission in wireless sensor networksImage transmission in wireless sensor networks
Image transmission in wireless sensor networkseSAT Publishing House
 
Performance comparison of row per slave and rows set per slave method in pvm ...
Performance comparison of row per slave and rows set per slave method in pvm ...Performance comparison of row per slave and rows set per slave method in pvm ...
Performance comparison of row per slave and rows set per slave method in pvm ...eSAT Journals
 

What's hot (19)

DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTINGDYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
 
035
035035
035
 
Chapter 4 pc
Chapter 4 pcChapter 4 pc
Chapter 4 pc
 
(Im2col)accelerating deep neural networks on low power heterogeneous architec...
(Im2col)accelerating deep neural networks on low power heterogeneous architec...(Im2col)accelerating deep neural networks on low power heterogeneous architec...
(Im2col)accelerating deep neural networks on low power heterogeneous architec...
 
Chapter 1 pc
Chapter 1 pcChapter 1 pc
Chapter 1 pc
 
Lj2419141918
Lj2419141918Lj2419141918
Lj2419141918
 
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
 
Convolutional Neural Network and Feature Transformation for Distant Speech Re...
Convolutional Neural Network and Feature Transformation for Distant Speech Re...Convolutional Neural Network and Feature Transformation for Distant Speech Re...
Convolutional Neural Network and Feature Transformation for Distant Speech Re...
 
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...
A PROGRESSIVE MESH METHOD FOR PHYSICAL SIMULATIONS USING LATTICE BOLTZMANN ME...
 
shashank_micro92_00697015
shashank_micro92_00697015shashank_micro92_00697015
shashank_micro92_00697015
 
A multi path routing algorithm for ip
A multi path routing algorithm for ipA multi path routing algorithm for ip
A multi path routing algorithm for ip
 
Design and Implementation of Low Power DSP Core with Programmable Truncated V...
Design and Implementation of Low Power DSP Core with Programmable Truncated V...Design and Implementation of Low Power DSP Core with Programmable Truncated V...
Design and Implementation of Low Power DSP Core with Programmable Truncated V...
 
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...
A CLUSTER BASED STABLE ROUTING PROTOCOL USING BINARY PARTICLE SWARM OPTIMIZAT...
 
Modern processors
Modern processorsModern processors
Modern processors
 
Performance Analysis of multithreaded applications based on Hardware Simulati...
Performance Analysis of multithreaded applications based on Hardware Simulati...Performance Analysis of multithreaded applications based on Hardware Simulati...
Performance Analysis of multithreaded applications based on Hardware Simulati...
 
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUS
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUSAVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUS
AVOIDING DUPLICATED COMPUTATION TO IMPROVE THE PERFORMANCE OF PFSP ON CUDA GPUS
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
Image transmission in wireless sensor networks
Image transmission in wireless sensor networksImage transmission in wireless sensor networks
Image transmission in wireless sensor networks
 
Performance comparison of row per slave and rows set per slave method in pvm ...
Performance comparison of row per slave and rows set per slave method in pvm ...Performance comparison of row per slave and rows set per slave method in pvm ...
Performance comparison of row per slave and rows set per slave method in pvm ...
 

Viewers also liked

A novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacksA novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attackseSAT Publishing House
 
Cloud storage limit monitoring measures
Cloud storage limit monitoring measuresCloud storage limit monitoring measures
Cloud storage limit monitoring measureseSAT Publishing House
 
Mining elevated service itemsets on transactional recordsets using slicing
Mining elevated service itemsets on transactional recordsets using slicingMining elevated service itemsets on transactional recordsets using slicing
Mining elevated service itemsets on transactional recordsets using slicingeSAT Publishing House
 
Temperature analysis of lna with improved linearity for rf receiver
Temperature analysis of lna with improved linearity for rf receiverTemperature analysis of lna with improved linearity for rf receiver
Temperature analysis of lna with improved linearity for rf receivereSAT Publishing House
 
Picosecond optical pulse generation using cascaded
Picosecond optical pulse generation using cascadedPicosecond optical pulse generation using cascaded
Picosecond optical pulse generation using cascadedeSAT Publishing House
 
Simulation of different power transmission systems and their capacity of redu...
Simulation of different power transmission systems and their capacity of redu...Simulation of different power transmission systems and their capacity of redu...
Simulation of different power transmission systems and their capacity of redu...eSAT Publishing House
 
A challenge for security and service level agreement in cloud computinge
A challenge for security and service level agreement in cloud computingeA challenge for security and service level agreement in cloud computinge
A challenge for security and service level agreement in cloud computingeeSAT Publishing House
 
Optimizing the process parameters of friction stir welded joint of magnesium ...
Optimizing the process parameters of friction stir welded joint of magnesium ...Optimizing the process parameters of friction stir welded joint of magnesium ...
Optimizing the process parameters of friction stir welded joint of magnesium ...eSAT Publishing House
 
Finite element analysis on temperature distribution in turning process using ...
Finite element analysis on temperature distribution in turning process using ...Finite element analysis on temperature distribution in turning process using ...
Finite element analysis on temperature distribution in turning process using ...eSAT Publishing House
 
An analysis of desktop control and information retrieval from the internet us...
An analysis of desktop control and information retrieval from the internet us...An analysis of desktop control and information retrieval from the internet us...
An analysis of desktop control and information retrieval from the internet us...eSAT Publishing House
 
Behaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glassBehaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glasseSAT Publishing House
 
A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...eSAT Publishing House
 
In data streams using classification and clustering
In data streams using classification and clusteringIn data streams using classification and clustering
In data streams using classification and clusteringeSAT Publishing House
 
Effect of age and seasonal variations on leachate
Effect of age and seasonal variations on leachateEffect of age and seasonal variations on leachate
Effect of age and seasonal variations on leachateeSAT Publishing House
 
Impact resistance capacity of a green ultra high performance hybrid fibre rei...
Impact resistance capacity of a green ultra high performance hybrid fibre rei...Impact resistance capacity of a green ultra high performance hybrid fibre rei...
Impact resistance capacity of a green ultra high performance hybrid fibre rei...eSAT Publishing House
 
Applications of matlab in optimization of bridge
Applications of matlab in optimization of bridgeApplications of matlab in optimization of bridge
Applications of matlab in optimization of bridgeeSAT Publishing House
 
Unity 7 gui baesd design platform for ubuntu touch mobile os
Unity 7 gui baesd design platform for ubuntu touch mobile osUnity 7 gui baesd design platform for ubuntu touch mobile os
Unity 7 gui baesd design platform for ubuntu touch mobile oseSAT Publishing House
 
Cost effective and efficient industrial tank cleaning process
Cost effective and efficient industrial tank cleaning processCost effective and efficient industrial tank cleaning process
Cost effective and efficient industrial tank cleaning processeSAT Publishing House
 

Viewers also liked (20)

A novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacksA novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacks
 
Cloud storage limit monitoring measures
Cloud storage limit monitoring measuresCloud storage limit monitoring measures
Cloud storage limit monitoring measures
 
Mining elevated service itemsets on transactional recordsets using slicing
Mining elevated service itemsets on transactional recordsets using slicingMining elevated service itemsets on transactional recordsets using slicing
Mining elevated service itemsets on transactional recordsets using slicing
 
Temperature analysis of lna with improved linearity for rf receiver
Temperature analysis of lna with improved linearity for rf receiverTemperature analysis of lna with improved linearity for rf receiver
Temperature analysis of lna with improved linearity for rf receiver
 
Picosecond optical pulse generation using cascaded
Picosecond optical pulse generation using cascadedPicosecond optical pulse generation using cascaded
Picosecond optical pulse generation using cascaded
 
Simulation of different power transmission systems and their capacity of redu...
Simulation of different power transmission systems and their capacity of redu...Simulation of different power transmission systems and their capacity of redu...
Simulation of different power transmission systems and their capacity of redu...
 
Ivrs based news extracting system
Ivrs based news extracting systemIvrs based news extracting system
Ivrs based news extracting system
 
A challenge for security and service level agreement in cloud computinge
A challenge for security and service level agreement in cloud computingeA challenge for security and service level agreement in cloud computinge
A challenge for security and service level agreement in cloud computinge
 
Optimizing the process parameters of friction stir welded joint of magnesium ...
Optimizing the process parameters of friction stir welded joint of magnesium ...Optimizing the process parameters of friction stir welded joint of magnesium ...
Optimizing the process parameters of friction stir welded joint of magnesium ...
 
Finite element analysis on temperature distribution in turning process using ...
Finite element analysis on temperature distribution in turning process using ...Finite element analysis on temperature distribution in turning process using ...
Finite element analysis on temperature distribution in turning process using ...
 
An analysis of desktop control and information retrieval from the internet us...
An analysis of desktop control and information retrieval from the internet us...An analysis of desktop control and information retrieval from the internet us...
An analysis of desktop control and information retrieval from the internet us...
 
Statistical process control
Statistical process controlStatistical process control
Statistical process control
 
Behaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glassBehaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glass
 
A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...
 
In data streams using classification and clustering
In data streams using classification and clusteringIn data streams using classification and clustering
In data streams using classification and clustering
 
Effect of age and seasonal variations on leachate
Effect of age and seasonal variations on leachateEffect of age and seasonal variations on leachate
Effect of age and seasonal variations on leachate
 
Impact resistance capacity of a green ultra high performance hybrid fibre rei...
Impact resistance capacity of a green ultra high performance hybrid fibre rei...Impact resistance capacity of a green ultra high performance hybrid fibre rei...
Impact resistance capacity of a green ultra high performance hybrid fibre rei...
 
Applications of matlab in optimization of bridge
Applications of matlab in optimization of bridgeApplications of matlab in optimization of bridge
Applications of matlab in optimization of bridge
 
Unity 7 gui baesd design platform for ubuntu touch mobile os
Unity 7 gui baesd design platform for ubuntu touch mobile osUnity 7 gui baesd design platform for ubuntu touch mobile os
Unity 7 gui baesd design platform for ubuntu touch mobile os
 
Cost effective and efficient industrial tank cleaning process
Cost effective and efficient industrial tank cleaning processCost effective and efficient industrial tank cleaning process
Cost effective and efficient industrial tank cleaning process
 

Similar to IJRET Journal Accelerates Multimedia Computation through MGP in CMP

Concurrent Matrix Multiplication on Multi-core Processors
Concurrent Matrix Multiplication on Multi-core ProcessorsConcurrent Matrix Multiplication on Multi-core Processors
Concurrent Matrix Multiplication on Multi-core ProcessorsCSCJournals
 
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORS
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORSSTUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORS
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORSijdpsjournal
 
A Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceA Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceAM Publications
 
A REVIEW ON PARALLEL COMPUTING
A REVIEW ON PARALLEL COMPUTINGA REVIEW ON PARALLEL COMPUTING
A REVIEW ON PARALLEL COMPUTINGAmy Roman
 
Comprehensive Performance Evaluation on Multiplication of Matrices using MPI
Comprehensive Performance Evaluation on Multiplication of Matrices using MPIComprehensive Performance Evaluation on Multiplication of Matrices using MPI
Comprehensive Performance Evaluation on Multiplication of Matrices using MPIijtsrd
 
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORS
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORSAFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORS
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORScscpconf
 
Affect of parallel computing on multicore processors
Affect of parallel computing on multicore processorsAffect of parallel computing on multicore processors
Affect of parallel computing on multicore processorscsandit
 
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...Implementation of Speed Efficient Image Processing algorithm on Multi-Process...
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...AM Publications
 
A novel mrp so c processor for dispatch time curtailment
A novel mrp so c processor for dispatch time curtailmentA novel mrp so c processor for dispatch time curtailment
A novel mrp so c processor for dispatch time curtailmenteSAT Publishing House
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPIJSRED
 
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
 
Time critical multitasking for multicore
Time critical multitasking for multicoreTime critical multitasking for multicore
Time critical multitasking for multicoreijesajournal
 
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...IEEEMEMTECHSTUDENTPROJECTS
 
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...IEEEGLOBALSOFTSTUDENTSPROJECTS
 

Similar to IJRET Journal Accelerates Multimedia Computation through MGP in CMP (20)

Concurrent Matrix Multiplication on Multi-core Processors
Concurrent Matrix Multiplication on Multi-core ProcessorsConcurrent Matrix Multiplication on Multi-core Processors
Concurrent Matrix Multiplication on Multi-core Processors
 
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORS
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORSSTUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORS
STUDY OF VARIOUS FACTORS AFFECTING PERFORMANCE OF MULTI-CORE PROCESSORS
 
A Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceA Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High Performance
 
A REVIEW ON PARALLEL COMPUTING
A REVIEW ON PARALLEL COMPUTINGA REVIEW ON PARALLEL COMPUTING
A REVIEW ON PARALLEL COMPUTING
 
Comprehensive Performance Evaluation on Multiplication of Matrices using MPI
Comprehensive Performance Evaluation on Multiplication of Matrices using MPIComprehensive Performance Evaluation on Multiplication of Matrices using MPI
Comprehensive Performance Evaluation on Multiplication of Matrices using MPI
 
1.prallelism
1.prallelism1.prallelism
1.prallelism
 
1.prallelism
1.prallelism1.prallelism
1.prallelism
 
50120140505008
5012014050500850120140505008
50120140505008
 
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORS
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORSAFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORS
AFFECT OF PARALLEL COMPUTING ON MULTICORE PROCESSORS
 
Affect of parallel computing on multicore processors
Affect of parallel computing on multicore processorsAffect of parallel computing on multicore processors
Affect of parallel computing on multicore processors
 
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...Implementation of Speed Efficient Image Processing algorithm on Multi-Process...
Implementation of Speed Efficient Image Processing algorithm on Multi-Process...
 
A novel mrp so c processor for dispatch time curtailment
A novel mrp so c processor for dispatch time curtailmentA novel mrp so c processor for dispatch time curtailment
A novel mrp so c processor for dispatch time curtailment
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MP
 
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
 
Time critical multitasking for multicore
Time critical multitasking for multicoreTime critical multitasking for multicore
Time critical multitasking for multicore
 
Chap2 slides
Chap2 slidesChap2 slides
Chap2 slides
 
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...
IEEE 2014 JAVA PARALLEL DISTRIBUTED PROJECTS Streaming applications on bus ba...
 
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT Streaming applications on bus bas...
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
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
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
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
 

Recently uploaded (20)

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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...
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.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...
 

IJRET Journal Accelerates Multimedia Computation through MGP in CMP

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 464 HARDBACK SOLUTION TO ACCELERATE MULTIMEDIA COMPUTATION THROUGH MGP IN CMP Jimcy Babu1 , Kavitha .V2 , K.V.Ramakrishnan3 1 M Tech, CMRIT, Bangalore 2 Ph D Scholar, Jain University 3 Professor Abstract Current multimedia applications are becoming more and more complex; thereby it increases workload for General purpose processors (GPPs). This resulted in the advent of Chip multiprocessors (CMPs). In most of the cases CMPs were not fully utilized. Hence, how to achieve the contemporary multimedia requirement like speed i.e. completion time, by using CMP became a question. In this project work a solution had been put forward to tackle the crisis. The idea behind the solution is the proper exploitation of the parallelism thereby accelerating the multimedia computation in CMPs. To achieve the less completion time, four levels of parallelism has been considered i.e. Data Level, Thread Level, Instruction Level and Memory Level called as Multi-Grain Parallelism (MGP). POSIX thread concept is used to implement Data Level, Thread Level, Instruction Level and for Memory Level, pre-fetch concept. To run, Linux based platform is required. Here UBUNTU 12.02 version is used. This project also performs a comparison between serial computation and parallel computation at different levels, based on completion time. The experimental results show that parallel computation consumes less time as compared to that of serial computation. Thereby, making it viable for multimedia applications Keywords: Chip Multiprocessor (CMP), Data Level Parallelism (DLP), Thread Level Parallelism (TLP), Instruction Level Parallelism (ILP), Memory Level Parallelism (MLP), POSIX thread (p-thread), Pre-fetch. --------------------------------------------------------------------***------------------------------------------------------------------ 1. INTRODUCTION Advances in IC technology have led to billions of transistors on chip keeping up with Moore’s law. The initial trend was of CPU’s with wider instruction issue and instruction execution involving prediction and speculation. This was the superscalar approach which was argued against due to its diminishing performance for increasing issue width due to limited amount of parallelism in instructions in non- scientific applications and the complex hardware needed. Many factors both technological and marketing are driving the semiconductor industry to implement multiple processors per chip. Hence instead of a complex superscalar processor, an alternate approach, the Chip Multiprocessor (CMP) or multi-core processor was proposed. The CMP combines much simpler processors or cores on a single chip or die. Each core is a complete processor unit itself and works as a team with the other cores on chip. It is now proven that this approach is the only way to build high performance architectures and CMPs perform equal or better than the superscalar approach. Chip Multiprocessor- also called Multi-core microprocessors or CMP for short are now the only way to build high performance microprocessors, for a variety of reasons. Large uniprocessor are no longer scaling in performance, because it is only possible to extract a limited amount of parallelism from a typical instruction stream using conventional superscalar instruction issue techniques. Along with the numerous opportunities of the CMPs, there are also a lot of challenges that keep us from exploiting their full potential. Numerous bottlenecks have appeared that have to be dealt with before we can fully benefit from CMPs. These bottlenecks have tapered off the performance increase of CMPs in recent years [4]. The rest of the paper is organised as follows. Section 2 analyses the related work carried. Section 3 comprises of methods for the parallel programming. Section 4, describes the simulation result 2. RELATED WORK For real-time multimedia applications, performance is the key constraint. A fair comparison of energy must therefore also consider performance. As a result, the energy of SMT and CMP at the same performance is compared in [5]. The complexity arises because each performance point can be obtained by CMP and SMT using several combinations of frequency and processor micro-architecture. For a CMP or SMT with a given core architecture, varying the processor frequency provides a continuum of performance points. Any
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 465 of these points could be achieved either as a fixed-frequency design or in a system with DVS support. Data for CMP and SMT systems were collected using all combinations of core architectures and frequencies. For all systems and workloads considered in [5] and for all performance regions, CMP architecture gives the least EPI. It is also found that the best SMT and the best CMP configuration for a given performance target have different architecture and frequency/voltage. Therefore, their relative energy efficiency depends on a subtle interplay between various factors such as capacitance, voltage, IPC, frequency and the level of clock gating, as well as workload features. Although CMP shows a clear energy advantage for four- thread or higher workloads, it comes at the cost of increased Silicon area. Therefore paper investigated a hybrid solution where a CMP is build out of SMT cores, and found it to be an effective compromise. The work in [6], relates the techniques to increase Instruction level parallelism by improving balanced scheduling with compiler optimization. This study combines Balanced Scheduling with three compiler optimization: Loop Unrolling, Trace Scheduling and Locality Analysis. The researchers “Huiyang Zhou and Thomas M. Conte” developed a method to improve Memory Level Parallelism [7]. This technique parallelizes sequential cache misses speculatively. Value prediction has great potential to enhance MLP by overlapping sequential cache misses. 3. PARALLEL PROGRAMMING METHOD The main objective is to accelerate the multimedia application, thereby reducing the completion time. The objective is accomplished by making use of the concept of Multi-Grain parallelism (MGP) in the Chip Multiprocessor (CMP). To exploit the different levels of parallelism, p- thread notion is used. POSIX Thread (p-thread) is a standard for programming with threads and it defines a set of C-types functions and constants. More widely, p-threads are a technique that a program can spawn concurrent units of processing that can then be consigned by the Operating System to multiple processing cores. Multithreading increases resource utilization by multiplexing the execution of multiple threads on the same pipeline. Clearly, the advantage of multithreading is achieving the high speeds by allocating multiple threads to multiple processing cores, as all cores of CPU or all CPU’s if more than one is used operates at the same time. This method exploits the parallelism from the following levels: Data Level Parallelism, Instruction Level Parallelism, Thread Level Parallelism and Memory Level Parallelism. 3.1 Data Level Parallelism In parallel computing environment, Data parallelism is a form of parallelization of computing in multiple processors. Data Parallelism focuses on distributing data across different parallel computing nodes. The concept used to achieve Data Level Parallelism is Single Instruction Multiple Data (SIMD) architecture. In a multiprocessor system executing a single set of instructions (SIMD), data parallelism is achieved when each processor performs the same task on different pieces of distributed data. In some situations, a single execution thread controls operations on all pieces of data. In others, different threads control the operation, but they execute the same code. In this parallelism the simple ALU functions like addition and multiplication are considered which are stored in a register. The serial execution of the program is done by dividing to tasks and its real time of execution is noted. The parallel programming is done using POSIX threads where the different tasks (addition & multiplication) are divided into threads and these threads perform tasks simultaneously thereby reducing the real time. Here the main thread holds the control and wait until the other thread execution is completed simultaneously. A single thread performs the given tasks completely at a time indicating SIMD (Single Instruction Multiple Data). 3.2 Thread Level Parallelism In thread-Level Parallelism (TLP) instead of having to wait for other threads, it has a capability that enables a program, often a high-end program such as a data or web application to work with multiple threads at the same time. Therefore programs that support this ability are able to do a lot more even under high levels of workloads. Here we divide the tasks to different threads and one thread is meant to perform a single task and other threads will perform other tasks. The control is taken by the main threads and waits for the rest threads to complete the tasks. The serial version of the execution takes more time comparatively than the parallel which can be observed very clearly. Hence here one can observe the efficiency of having parallelism concept instead of sequential in multi-core systems using POSIX threads. Comparatively Thread Level Parallelism achieves the highest level of Parallelism amongst other levels of parallelism. 3.3 Instruction Level Parallelism The potential overlap among instructions is called instruction level parallelism (ILP). It is a measure of how many of the operations in a computer program can be performed simultaneously. Here the superscalar technology
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 466 can be adapted for better utilisation of Instruction level parallelism. It deals with simultaneously performing of all the tasks at a time. The same tasks are performed by threads where there is no inter dependency of data. Suppose consider, A=(X*X) +(Y*Y) + (Z*Z) Fig 1: Figure for Instruction Level Parallelism In parallel executions, different tasks are executed simultaneously. The instruction level parallelism is achieved with real time analysis and comparison with sequential execution is also noted. 3.4 Memory Level Parallelism Memory Level Parallelism (MLP) is a term in computer architecture. It refers to the ability to have pending multiple memory operations at the same time, in particular cache misses or translation look aside buffer misses. The concept used to achieve Memory Level Parallelism (MLP) is the pre- fetch technique. There are two ways in which pre-fetching can occur:  Initiated by hardware,  Initiated by software. In this implementation, software pre-fetch is used. Software pre-fetching involves identifying when your application will need a particular set of data, then using special pre-fetch instructions to tell the processor to get this data in advance. The time consumption for both without pre-fetch and with pre-fetch was noted. There was a less time consumption comparatively with using pre-fetch instructions. Fig 2: Simple illustration for without pre-fetch and with pre- fetch [internet] Figure 2, explains about the concept used for Memory Level Parallelism, both for with and without pre-fetch. 4. SIMULATION RESULTS Table 1: Summary Table Level of Parallelism Serial Operation (Seconds) Parallel Operation (Seconds) Data Level and Thread Level Parallelism 0.029 0.013 Instruction Level Parallelism 0.013 0.005 Memory Level Parallelism 0.75 0.68 The table 1 shows the summary of the simulation result. It shows the time taken to perform both serial and parallel operation in Data Level Parallelism, Thread Level Parallelism, Instruction Level Parallelism and pre-fetch in Memory Level Parallelism.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 467 Fig 3: Summary Bar Chart for DLP_TLP and ILP Fig 4: Summary Bar Chart for MLP Bar Chart shows the time differences for different levels of parallelism. Figure 3 shows the bar chart for the obtained simulation results for Serial computation and parallel computation for Data Level, Thread Level and Instruction Level. Here the Data and Thread levels are integrated which is shown as DLP_TLP. Figure 4 shows the bar chart for the simulation result for Memory Level. Memory level is implemented using the pre- fetch concept. It shows the time differences for with pre- fetch and without pre-fetch operation. From the result, time taken with pre-fetch is more as compared with without pre- fetch. 5. CONCLUSIONS AND FUTURE SCOPE In this implementation, different methods are implemented to exploit different levels of parallelism. POSIX Thread concept is used to implement the Data Level, Thread Level and Instruction Level Parallelism. Instruction Level Parallelism is based on superscalar architecture. Memory level is achieved using the Pre-fetch concept. The simulation results show that all the levels of parallelism can be achieved. The time difference for serial as well as parallel computation is also compared. From the simulation result it is shown that completion time is more for serial computation as compared to that of parallel. Hence parallel computation can accelerate multimedia application in Chip Multiprocessors. As a future research, the following work can be performed; integration of all the levels can be performed along with extension to multiple processors on chip. It can be further configured for different workloads especially in case of multimedia application. ACKNOWLEDGMENTS I would like to express my sincere thanks to my guide Mrs. Kavitha. V, Ph D Scholar, Jain University for her timely guidance and encouragement to make this project, a success REFERENCES [1]. Xiaoping Huang, Xiaoya Fan, Shengbing Zhang And Liwen Shi, “Investigation On Multi-Grain Parallelism In Chip Multiprocessor For Multimedia Application”, proceeding of IEEE 2009, Computer School, Northwestern Polytechnical University, China. [2]. Man-Lap Li, Ruchira Scscnka, Sarita V. Adve, Yen- Kuang Chen, Erid Debes, “The ALPbench Benchmark Suite For Complex Multimedia Application”, Proceeding of the 2005 International Symposium On Workload Characterization, October, 2005. [3]. KunleOlukotun, LanceHammond of Stanford University and James Laudon of Sun Microsystems, “Chip Multiprocessor Architecture: Techniques to Improve Throughput and Latency”, 2007. [4]. Bushra Ahsan, Fatma Omara and Mohamed Zahran,Department of Computer Science, “Chip Multiprocessor: Challenges and Opportunities”, INFOS2008, March 27-29, 2008 Cairo-Egypt. [5]. Ruchira Sasanka, Sarita V. Adve, Yen-Kuang and Eric Debes , “The Energy Efficiency of CMP v/s SMT for multimedia workloads”, June 26–July 1, 2004, SaintMalo, France, Copyright 2004. [6]. Jack L.Lo and SusanJ.Eggers; “Improving Balanced Scheduling with Compiler Optimization that Increase Instruction Level Parallelism”, Department Of Computer Science and Engineering, University Of Washington, 1995. [7]. Huiyang Zhou and Thomas M. Conte, Department of Electrical and Computer Engineering,“Enhancing Memory Level Parallelism via Recovery-Free Value Prediction”, June 23-26, 2003, SanFrancisco, California, USA, Copyright 2003. [8]. Kostas Bousias, Nabil Hasasneh, Chris Jesshope, “Instruction-level parallelism through Micro threading- A Scalable Approach to Chip Multiprocessor”, Computer Journal, March 2006,49(21): 211-233. [9] http://en.wikipedia.org/wiki/C_(programming_language)
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 07 | Jul-2014, Available @ http://www.ijret.org 468 [10].http://en.wikipedia.org/wiki/C++_(programming_langu age) [11]. http://en.wikipedia.org/wiki/ubuntu [12]. http://en.wikipedia.org