SlideShare ist ein Scribd-Unternehmen logo
1 von 3
Downloaden Sie, um offline zu lesen
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 87
MULTICORE PROCESSOR TECHNOLOGY- ADVANTAGES AND
CHALLENGES
Anil Sethi1
, Himanshu Kushwah2
1
(Department of Electronics, Keshav Mahavidyalaya, University of Delhi, Delhi, India)
anil_sethi14@yahoo.co.in,
2
(Department of Electronics, Keshav Mahavidyalaya, University of Delhi, Delhi, India)
kushwah.du@gmail.com
Abstract
Until recent times, we have worked with processors having a single computing/processing unit (CPU), also called a core. The
clock frequency of the processor, which determines the speed of it, cannot be exceeded beyond a certain limit as with the
increasing frequency, the power dissipation increases and therefore the amount of heating. So manufacturers came up with a new
design of processors, called Multicore processors. A multicore processor has two or more independent computing/processing
units (cores) on the same chip. Multiple cores have advantage that they run on lower frequency as compared to the single
processing unit, which reduces the power dissipation or temperature. These multiple cores work together to increase the
multitasking capability or performance of the system by operating on multiple instructions simultaneously in an efficient manner.
This also means that with multithreaded applications, the amount of parallel computing or parallelism is increased. The
applications or algorithms must be designed in such a way that their subroutines take full advantage of the multicore technology.
Each core or computing unit has its own independent interface with the system bus.. But along with all these advantages, there
are certain issues or challenges that must be addressed carefully when we add more cores. In this paper, we discuss about
multicore processor technology. In addition to this, we also discuss various challenges faced such as power and temperature
(thermal issue), interconnect issue etc. when more cores are added.
Key Words: CMP (Chip Multiprocessor), Clock, Core, ILP (Instructions Level parallelism), TLP (Thread level
Parallelism).
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
The multicore processor comprises of two or more cores or
computational/processing units that operate in parallel to
read and execute instructions. These multiple processing
units or cores are fabricated on a single die. So, its also
called a Chip Multiprocessor (CMP). The key factor about
multicore processor is that it gives the same performance of
a single faster processor at lower power dissipation and at a
lower clock frequency by handling more tasks or
instructions in parallel. [1] This enhances the ILP
(Instructions Level Parallelism). The performance of a
processor is a function of three major factors, which
includes IPC (instructions per cycle), CPI (clock cycles per
instruction) and clock cycle (or clock frequency). The IPC
can be increased by increasing ILP and TLP (thread level
parallelism). The CPI can be improved by the techniques of
pipelining. But there is a limiting factor towards increasing
the clock frequency. [2]
The dynamic power dissipation is given by-
P = QCV2
f 1.1
 Q- Number of Transistors
 C- Load Capacitance
 V- Supply Voltage
 f- Clock Frequency
So, if we increase the clock frequency, the power dissipation
increases which in turn causes overheating. So, the idea of
multicore technology is to use multiple cores instead of one
(like single processor) at a comparatively lower frequency,
but an overall improvement in the performance is delivered
through multiple cores operating simultaneously on multiple
instructions.[1] Multicore processors work on multiple
instructions and multiple data. Multiple cores execute
multiple threads (multiple processes/instructions) while
using different parts of memory (multiple data). This
enhances TLP. The main memory is shared by all cores.
Each core is associated with its own cache and they all share
the system bus.[3]
Fig.1. Quad cores sharing memory and bus interface
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 88
Intel came up with its first dual core processor in 2005. A
dual core processor contains two cores- (Intel Core Duo,
AMD Phenom II X2), a quad core processor has four cores
(Intel core i5 and i7 processors, AMD Phenom II X4), a
hexa core processor has six cores(AMD Phenom II X6, Intel
Core i7 Extreme Edition 980X), a Octa core processor has
eight cores (AMD FX-8350, Intel Xeon E7-2820), a deca
core has ten cores ( Intel Xeon E7 2850) or more. There are
various topologies to interconnect cores such as Ring
topology, Bus topology, Two-dimensional mesh and
crossbar. The choice of a particular topology is a crucial
factor as it affects performance parameters like speed,
latency etc. The type of topology also affects area consumed
on a chip and power dissipation.
In addition to this, multicore technology uses homogeneous
and heterogeneous cores. In homogeneous configuration, all
the cores are identical and each core has same hardware.
These cores use divide and rule approach for improving the
performance by dividing a more complex application into
less complex applications and execute them simultaneously.
There are many other benefits of this approach such as
reusability, simpler design etc.[1]
In heterogeneous cores, there are dedicated application
specific cores that work on specialized applications. For
example a system comprising of a DSP core that handles a
multimedia application requiring intensive mathematical
computations, while other cores handle some other
applications simultaneously. Heterogeneous core is more
complex, but has its own benefits also. Multicore Processors
sometimes take advantage of both homogeneous and
heterogeneous configurations to improve performance. The
IBM multicore processor, CELL uses this approach. [1]
Various applications that benefit from multicore technology
are multimedia applications, DSP , servers, graphics,
compilers etc. and also applications which exhibit thread
level parallelism. The efficient use of multicore technology
requires high level of parallelism.[3] Some multicore
processors allow one or more cores which are not required at
times to turn off to save power.
Fig.2. Multiple threads in different Cores[3]
The performance of a multicore processor strongly depends
on the design of algorithm or application which is governed
by Amdahl’s Law. This law was given by Geve Amdahl, a
computer architect. This law is used to compute the
theoretical maximum speed with multiple processors in
parallel computing. This law states that the speed of a
process in parallel computing is limited by the time needed
for the sequential part of the process. For example , if a
process requires X hours to complete on a single core, and a
portion of the process that takes Y hours to execute which
can not be parallelized, while remaining (X-Y) hours can be
parallelized, then regardless of the number of processors,
the minimum time required for the execution can not be less
then (X-Y) hours.[4]
2. MULTICORE ADVANTAGES
The good processing speed of the multicore processors is
due to the multiple cores which operate simultaneously on
instructions, at lower frequency than the single core. At the
same clock frequency, the multicore processor will process
more data than the single core processor. In addition to this,
multicore processors deliver high performance and handle
complex tasks at a comparatively lower energy or lower
power as compared with a single core, which is crucial
factor in appliances such as mobile phones, laptop etc.
which operate on batteries. Also, since the cores are
fabricated close to each other on the same chip, the signals
travel shorter distance between them due to which there is
less attenuation of signals. Since the signals don’t attenuate
much, more data is transferred in a given time and there is
no need of repeating the signals
3. CHALLENGES OF MULTICORE
PROCESSOR
So far, we have seen the benefits of multicore technology
but there are some problems that arise when more cores are
added. The various challenges that are faced with the
addition of new cores are power and temperature issues, the
level of parallelism in the application or algorithms,
interconnect issues etc. Now we discuss the challenges in
detail:-
3.1 Thermal Issues (Power and temperature):
 To reduce the unnecessary power consumption, the
multicore design also has to make use of a separate
power management unit that can manage or control
unnecessary wastage of power. For this to happen, the
power management unit has to turn off or shut down
the cores which don’t operate at times or the cores that
are not required at times. Also, the cores run at a
comparatively lower frequency than a single processor
to reduce the power dissipation.
 The architecture of the core must be such that the
amount of heat generated in the chip is well distributed
across the chip. The power consumption is also a
function of number of transistors on a chip. When
more cores are added, the transistor density also
increases which contributes to the power consumption.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 89
The core which overheats in a multicore configuration
is called a hot-spot.
 There are various ways to tackle the issue of power
dissipation and temperature such as thread migration,
DVFS (Dynamic Voltage and Frequency Scaling) etc.
In the thread migration technique, a high power
consuming process or thread is moved to a different
core and a low power consuming process or thread is
moved to an overheated core. Also, in order to cool an
overheated core, the work which is being handled by
the overheated core is divided among other cores.
 In DVFS (Dynamic Voltage and Frequency Scaling)
technique, voltage and frequency of the hot core is
reduced since the power dissipation or heating is a
function of both voltage and frequency. This slightly
affects the overall performance also.[2]
3.2 Level of Parallelism:
One of the biggest factors affecting the performance of a
multicore processor is the level of parallelism of the process/
application.
 The lesser the time required to complete a process,
better will be the performance. Performance is directly
related to the amount of parallelism because more the
number of processes that can be executed
simultaneously more will be the parallelism.
Parallelism can be considered at two levels ILP and
TLP.
 TLP increases overall parallelism by breaking a
program into many threads (Small Processes) and
execute them simultaneously.
 To achieve a high level of parallelism and an overall
high performance, software developers must write such
algorithms that can take full advantage of multicore
design. In other words, all the cores should be used in
the most efficient manner. If the algorithms written are
not compatible with the multicore design, then it may
happen that one or more cores starve for data. In such a
case, the process will run on one of the cores, while
other cores will sit idle. So, in a nutshell, the success of
multicore technology strongly depends on the way the
algorithms are written. Also, companies like Microsoft
and Apple have designed their operating systems
which can run efficiently on multicore configuration.
3.3 Interconnect Issues:
Since there are so many components on chip in a multicore
processor like cores, caches, network controllers etc., the
interaction between them can affect the performance if the
interconnection issues are not resolved properly. In the
initial processors, bus was used for communication between
the components. In order to reduce the latency, crossbar and
mesh topologies are used for interconnection of components.
Also, as the parallelism increases at the thread level,
communication also increases off-chip for memory access,
I/O etc. For issues like this, packet based interconnection is
actively used. This packet based interconnection has been
used by Intel (Quick path interconnect) and is also being
used by AMD.[1][2]
4. CONCLUSIONS
In this paper, we reviewed the basic concepts of the
multicore technology. We studied that it is possible to
increase the performance of a processor without increasing
the clock frequency, by simply adding more cores. The
limitation of a single core processor at a high clock
frequency has opened the gates for multicore technology and
has become the trend of the industries today. However,
adding more cores also gives rise to certain issues or
challenges that must be carefully addressed in order to get
the most out of multicore technology. We also studied
various challenges associated with increasing the number of
cores like power and temperature (thermal issues), level of
parallelism, interconnect issues etc. The applications/
algorithms which run on multicore environment must be
compatible with it. Research is constantly going on in the
areas like developing more efficient applications/ algorithms
for multicore environment and also in other areas in order to
get the maximum performance throughput from multicore
processors. Industries are constantly working towards
achieving better and better performance from multicore
processors.
REFERENCES
[1]. Venu, Balaji. "Multicore processors- An overview."
[2]. Jr., Ransford Hyman. "Performance issues on
Multicore Processors”.
[3]. Barbic, Jernej. "Multicore architectures." 2007.
[4]. Martin, Christian. "Multicore Processors: Challenges,
Opportunities, emerging Trends." Embedded World
2014 Exhibition and Conference . 2014.

Weitere ähnliche Inhalte

Was ist angesagt?

Research Scope in Parallel Computing And Parallel Programming
Research Scope in Parallel Computing And Parallel ProgrammingResearch Scope in Parallel Computing And Parallel Programming
Research Scope in Parallel Computing And Parallel ProgrammingShitalkumar Sukhdeve
 
Full introduction to_parallel_computing
Full introduction to_parallel_computingFull introduction to_parallel_computing
Full introduction to_parallel_computingSupasit Kajkamhaeng
 
Embedded systems unit4
Embedded systems unit4Embedded systems unit4
Embedded systems unit4baskaransece
 
Parallel computing and its applications
Parallel computing and its applicationsParallel computing and its applications
Parallel computing and its applicationsBurhan Ahmed
 
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
 
Multicore processing
Multicore processingMulticore processing
Multicore processingguestc0be34a
 
Reduce course notes class xi
Reduce course notes class xiReduce course notes class xi
Reduce course notes class xiSyed Zaid Irshad
 
Introduction to heterogeneous_computing_for_hpc
Introduction to heterogeneous_computing_for_hpcIntroduction to heterogeneous_computing_for_hpc
Introduction to heterogeneous_computing_for_hpcSupasit Kajkamhaeng
 
Embedded systems unit2
Embedded systems unit2  Embedded systems unit2
Embedded systems unit2 baskaransece
 
Example : parallelize a simple problem
Example : parallelize a simple problemExample : parallelize a simple problem
Example : parallelize a simple problemMrMaKKaWi
 
High performance computing with accelarators
High performance computing with accelaratorsHigh performance computing with accelarators
High performance computing with accelaratorsEmmanuel college
 
MTE104-L1: Introduction to Mechatronics
MTE104-L1: Introduction to MechatronicsMTE104-L1: Introduction to Mechatronics
MTE104-L1: Introduction to MechatronicsAbdalla Ahmed
 
Embedded systems unit 5
Embedded systems unit 5Embedded systems unit 5
Embedded systems unit 5baskaransece
 
Embedded systems unit1
Embedded systems unit1Embedded systems unit1
Embedded systems unit1baskaransece
 
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
 
Introduction To Parallel Computing
Introduction To Parallel ComputingIntroduction To Parallel Computing
Introduction To Parallel ComputingJörn Dinkla
 
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...Bharath Sudharsan
 

Was ist angesagt? (20)

Parallel Computing
Parallel Computing Parallel Computing
Parallel Computing
 
Research Scope in Parallel Computing And Parallel Programming
Research Scope in Parallel Computing And Parallel ProgrammingResearch Scope in Parallel Computing And Parallel Programming
Research Scope in Parallel Computing And Parallel Programming
 
Full introduction to_parallel_computing
Full introduction to_parallel_computingFull introduction to_parallel_computing
Full introduction to_parallel_computing
 
Embedded systems unit4
Embedded systems unit4Embedded systems unit4
Embedded systems unit4
 
Parallel computing and its applications
Parallel computing and its applicationsParallel computing and its applications
Parallel computing and its applications
 
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
 
Multicore processing
Multicore processingMulticore processing
Multicore processing
 
Reduce course notes class xi
Reduce course notes class xiReduce course notes class xi
Reduce course notes class xi
 
Introduction to heterogeneous_computing_for_hpc
Introduction to heterogeneous_computing_for_hpcIntroduction to heterogeneous_computing_for_hpc
Introduction to heterogeneous_computing_for_hpc
 
Embedded systems unit2
Embedded systems unit2  Embedded systems unit2
Embedded systems unit2
 
Example : parallelize a simple problem
Example : parallelize a simple problemExample : parallelize a simple problem
Example : parallelize a simple problem
 
High performance computing with accelarators
High performance computing with accelaratorsHigh performance computing with accelarators
High performance computing with accelarators
 
MTE104-L1: Introduction to Mechatronics
MTE104-L1: Introduction to MechatronicsMTE104-L1: Introduction to Mechatronics
MTE104-L1: Introduction to Mechatronics
 
Embedded systems unit 5
Embedded systems unit 5Embedded systems unit 5
Embedded systems unit 5
 
Content
ContentContent
Content
 
Embedded systems unit1
Embedded systems unit1Embedded systems unit1
Embedded systems unit1
 
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...
 
Introduction To Parallel Computing
Introduction To Parallel ComputingIntroduction To Parallel Computing
Introduction To Parallel Computing
 
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...
ECML PKDD 2021 ML meets IoT Tutorial Part II: Creating ML based Self learning...
 
Distributed Computing
Distributed ComputingDistributed Computing
Distributed Computing
 

Ähnlich wie Multicore Processor Advantages and Challenges

TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KIT
TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KITTIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KIT
TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KITijesajournal
 
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMS
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMSCOMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMS
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMSijcsit
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSAIRCC Publishing Corporation
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSijcsit
 
SC17 Panel: Energy Efficiency Gains From HPC Software
SC17 Panel: Energy Efficiency Gains From HPC SoftwareSC17 Panel: Energy Efficiency Gains From HPC Software
SC17 Panel: Energy Efficiency Gains From HPC Softwareinside-BigData.com
 
1. What important part of the process switch operation is not shown .pdf
1. What important part of the process switch operation is not shown .pdf1. What important part of the process switch operation is not shown .pdf
1. What important part of the process switch operation is not shown .pdffathimaoptical
 
4838281 operating-system-scheduling-on-multicore-architectures
4838281 operating-system-scheduling-on-multicore-architectures4838281 operating-system-scheduling-on-multicore-architectures
4838281 operating-system-scheduling-on-multicore-architecturesIslam Samir
 
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTURE
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTUREHISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTURE
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTUREijcga
 
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...EUDAT
 
Hardback solution to accelerate multimedia computation through mgp in cmp
Hardback solution to accelerate multimedia computation through mgp in cmpHardback solution to accelerate multimedia computation through mgp in cmp
Hardback solution to accelerate multimedia computation through mgp in cmpeSAT Publishing House
 
Tutotial 2 answer
Tutotial 2 answerTutotial 2 answer
Tutotial 2 answerUdaya Kumar
 
Slot29-CH18-MultiCoreComputers-18-slides (1).pptx
Slot29-CH18-MultiCoreComputers-18-slides (1).pptxSlot29-CH18-MultiCoreComputers-18-slides (1).pptx
Slot29-CH18-MultiCoreComputers-18-slides (1).pptxvun24122002
 
Quad Core Processors - Technology Presentation
Quad Core Processors - Technology PresentationQuad Core Processors - Technology Presentation
Quad Core Processors - Technology Presentationvinaya.hs
 
Computer architecture multi core processor
Computer architecture multi core processorComputer architecture multi core processor
Computer architecture multi core processorMazin Alwaaly
 

Ähnlich wie Multicore Processor Advantages and Challenges (20)

TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KIT
TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KITTIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KIT
TIME CRITICAL MULTITASKING FOR MULTICORE MICROCONTROLLER USING XMOS® KIT
 
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMS
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMSCOMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMS
COMPARATIVE ANALYSIS OF SINGLE-CORE AND MULTI-CORE SYSTEMS
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
 
SC17 Panel: Energy Efficiency Gains From HPC Software
SC17 Panel: Energy Efficiency Gains From HPC SoftwareSC17 Panel: Energy Efficiency Gains From HPC Software
SC17 Panel: Energy Efficiency Gains From HPC Software
 
1. What important part of the process switch operation is not shown .pdf
1. What important part of the process switch operation is not shown .pdf1. What important part of the process switch operation is not shown .pdf
1. What important part of the process switch operation is not shown .pdf
 
4838281 operating-system-scheduling-on-multicore-architectures
4838281 operating-system-scheduling-on-multicore-architectures4838281 operating-system-scheduling-on-multicore-architectures
4838281 operating-system-scheduling-on-multicore-architectures
 
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTURE
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTUREHISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTURE
HISTORY AND FUTURE TRENDS OF MULTICORE COMPUTER ARCHITECTURE
 
035
035035
035
 
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...
High Performance & High Throughput Computing - EUDAT Summer School (Giuseppe ...
 
Hardback solution to accelerate multimedia computation through mgp in cmp
Hardback solution to accelerate multimedia computation through mgp in cmpHardback solution to accelerate multimedia computation through mgp in cmp
Hardback solution to accelerate multimedia computation through mgp in cmp
 
Tutotial 2 answer
Tutotial 2 answerTutotial 2 answer
Tutotial 2 answer
 
Slot29-CH18-MultiCoreComputers-18-slides (1).pptx
Slot29-CH18-MultiCoreComputers-18-slides (1).pptxSlot29-CH18-MultiCoreComputers-18-slides (1).pptx
Slot29-CH18-MultiCoreComputers-18-slides (1).pptx
 
1
11
1
 
Cluster computing report
Cluster computing reportCluster computing report
Cluster computing report
 
Nbvtalkatjntuvizianagaram
NbvtalkatjntuvizianagaramNbvtalkatjntuvizianagaram
Nbvtalkatjntuvizianagaram
 
Module 1 unit 3
Module 1  unit 3Module 1  unit 3
Module 1 unit 3
 
Aca module 1
Aca module 1Aca module 1
Aca module 1
 
Quad Core Processors - Technology Presentation
Quad Core Processors - Technology PresentationQuad Core Processors - Technology Presentation
Quad Core Processors - Technology Presentation
 
Computer architecture multi core processor
Computer architecture multi core processorComputer architecture multi core processor
Computer architecture multi core processor
 

Mehr von eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

Mehr von eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Kürzlich hochgeladen

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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
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
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
(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 ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
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
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 

Kürzlich hochgeladen (20)

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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
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
 
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)
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
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...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
(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 ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 

Multicore Processor Advantages and Challenges

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 87 MULTICORE PROCESSOR TECHNOLOGY- ADVANTAGES AND CHALLENGES Anil Sethi1 , Himanshu Kushwah2 1 (Department of Electronics, Keshav Mahavidyalaya, University of Delhi, Delhi, India) anil_sethi14@yahoo.co.in, 2 (Department of Electronics, Keshav Mahavidyalaya, University of Delhi, Delhi, India) kushwah.du@gmail.com Abstract Until recent times, we have worked with processors having a single computing/processing unit (CPU), also called a core. The clock frequency of the processor, which determines the speed of it, cannot be exceeded beyond a certain limit as with the increasing frequency, the power dissipation increases and therefore the amount of heating. So manufacturers came up with a new design of processors, called Multicore processors. A multicore processor has two or more independent computing/processing units (cores) on the same chip. Multiple cores have advantage that they run on lower frequency as compared to the single processing unit, which reduces the power dissipation or temperature. These multiple cores work together to increase the multitasking capability or performance of the system by operating on multiple instructions simultaneously in an efficient manner. This also means that with multithreaded applications, the amount of parallel computing or parallelism is increased. The applications or algorithms must be designed in such a way that their subroutines take full advantage of the multicore technology. Each core or computing unit has its own independent interface with the system bus.. But along with all these advantages, there are certain issues or challenges that must be addressed carefully when we add more cores. In this paper, we discuss about multicore processor technology. In addition to this, we also discuss various challenges faced such as power and temperature (thermal issue), interconnect issue etc. when more cores are added. Key Words: CMP (Chip Multiprocessor), Clock, Core, ILP (Instructions Level parallelism), TLP (Thread level Parallelism). --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION The multicore processor comprises of two or more cores or computational/processing units that operate in parallel to read and execute instructions. These multiple processing units or cores are fabricated on a single die. So, its also called a Chip Multiprocessor (CMP). The key factor about multicore processor is that it gives the same performance of a single faster processor at lower power dissipation and at a lower clock frequency by handling more tasks or instructions in parallel. [1] This enhances the ILP (Instructions Level Parallelism). The performance of a processor is a function of three major factors, which includes IPC (instructions per cycle), CPI (clock cycles per instruction) and clock cycle (or clock frequency). The IPC can be increased by increasing ILP and TLP (thread level parallelism). The CPI can be improved by the techniques of pipelining. But there is a limiting factor towards increasing the clock frequency. [2] The dynamic power dissipation is given by- P = QCV2 f 1.1  Q- Number of Transistors  C- Load Capacitance  V- Supply Voltage  f- Clock Frequency So, if we increase the clock frequency, the power dissipation increases which in turn causes overheating. So, the idea of multicore technology is to use multiple cores instead of one (like single processor) at a comparatively lower frequency, but an overall improvement in the performance is delivered through multiple cores operating simultaneously on multiple instructions.[1] Multicore processors work on multiple instructions and multiple data. Multiple cores execute multiple threads (multiple processes/instructions) while using different parts of memory (multiple data). This enhances TLP. The main memory is shared by all cores. Each core is associated with its own cache and they all share the system bus.[3] Fig.1. Quad cores sharing memory and bus interface
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 88 Intel came up with its first dual core processor in 2005. A dual core processor contains two cores- (Intel Core Duo, AMD Phenom II X2), a quad core processor has four cores (Intel core i5 and i7 processors, AMD Phenom II X4), a hexa core processor has six cores(AMD Phenom II X6, Intel Core i7 Extreme Edition 980X), a Octa core processor has eight cores (AMD FX-8350, Intel Xeon E7-2820), a deca core has ten cores ( Intel Xeon E7 2850) or more. There are various topologies to interconnect cores such as Ring topology, Bus topology, Two-dimensional mesh and crossbar. The choice of a particular topology is a crucial factor as it affects performance parameters like speed, latency etc. The type of topology also affects area consumed on a chip and power dissipation. In addition to this, multicore technology uses homogeneous and heterogeneous cores. In homogeneous configuration, all the cores are identical and each core has same hardware. These cores use divide and rule approach for improving the performance by dividing a more complex application into less complex applications and execute them simultaneously. There are many other benefits of this approach such as reusability, simpler design etc.[1] In heterogeneous cores, there are dedicated application specific cores that work on specialized applications. For example a system comprising of a DSP core that handles a multimedia application requiring intensive mathematical computations, while other cores handle some other applications simultaneously. Heterogeneous core is more complex, but has its own benefits also. Multicore Processors sometimes take advantage of both homogeneous and heterogeneous configurations to improve performance. The IBM multicore processor, CELL uses this approach. [1] Various applications that benefit from multicore technology are multimedia applications, DSP , servers, graphics, compilers etc. and also applications which exhibit thread level parallelism. The efficient use of multicore technology requires high level of parallelism.[3] Some multicore processors allow one or more cores which are not required at times to turn off to save power. Fig.2. Multiple threads in different Cores[3] The performance of a multicore processor strongly depends on the design of algorithm or application which is governed by Amdahl’s Law. This law was given by Geve Amdahl, a computer architect. This law is used to compute the theoretical maximum speed with multiple processors in parallel computing. This law states that the speed of a process in parallel computing is limited by the time needed for the sequential part of the process. For example , if a process requires X hours to complete on a single core, and a portion of the process that takes Y hours to execute which can not be parallelized, while remaining (X-Y) hours can be parallelized, then regardless of the number of processors, the minimum time required for the execution can not be less then (X-Y) hours.[4] 2. MULTICORE ADVANTAGES The good processing speed of the multicore processors is due to the multiple cores which operate simultaneously on instructions, at lower frequency than the single core. At the same clock frequency, the multicore processor will process more data than the single core processor. In addition to this, multicore processors deliver high performance and handle complex tasks at a comparatively lower energy or lower power as compared with a single core, which is crucial factor in appliances such as mobile phones, laptop etc. which operate on batteries. Also, since the cores are fabricated close to each other on the same chip, the signals travel shorter distance between them due to which there is less attenuation of signals. Since the signals don’t attenuate much, more data is transferred in a given time and there is no need of repeating the signals 3. CHALLENGES OF MULTICORE PROCESSOR So far, we have seen the benefits of multicore technology but there are some problems that arise when more cores are added. The various challenges that are faced with the addition of new cores are power and temperature issues, the level of parallelism in the application or algorithms, interconnect issues etc. Now we discuss the challenges in detail:- 3.1 Thermal Issues (Power and temperature):  To reduce the unnecessary power consumption, the multicore design also has to make use of a separate power management unit that can manage or control unnecessary wastage of power. For this to happen, the power management unit has to turn off or shut down the cores which don’t operate at times or the cores that are not required at times. Also, the cores run at a comparatively lower frequency than a single processor to reduce the power dissipation.  The architecture of the core must be such that the amount of heat generated in the chip is well distributed across the chip. The power consumption is also a function of number of transistors on a chip. When more cores are added, the transistor density also increases which contributes to the power consumption.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 09 | September-2015, Available @ http://www.ijret.org 89 The core which overheats in a multicore configuration is called a hot-spot.  There are various ways to tackle the issue of power dissipation and temperature such as thread migration, DVFS (Dynamic Voltage and Frequency Scaling) etc. In the thread migration technique, a high power consuming process or thread is moved to a different core and a low power consuming process or thread is moved to an overheated core. Also, in order to cool an overheated core, the work which is being handled by the overheated core is divided among other cores.  In DVFS (Dynamic Voltage and Frequency Scaling) technique, voltage and frequency of the hot core is reduced since the power dissipation or heating is a function of both voltage and frequency. This slightly affects the overall performance also.[2] 3.2 Level of Parallelism: One of the biggest factors affecting the performance of a multicore processor is the level of parallelism of the process/ application.  The lesser the time required to complete a process, better will be the performance. Performance is directly related to the amount of parallelism because more the number of processes that can be executed simultaneously more will be the parallelism. Parallelism can be considered at two levels ILP and TLP.  TLP increases overall parallelism by breaking a program into many threads (Small Processes) and execute them simultaneously.  To achieve a high level of parallelism and an overall high performance, software developers must write such algorithms that can take full advantage of multicore design. In other words, all the cores should be used in the most efficient manner. If the algorithms written are not compatible with the multicore design, then it may happen that one or more cores starve for data. In such a case, the process will run on one of the cores, while other cores will sit idle. So, in a nutshell, the success of multicore technology strongly depends on the way the algorithms are written. Also, companies like Microsoft and Apple have designed their operating systems which can run efficiently on multicore configuration. 3.3 Interconnect Issues: Since there are so many components on chip in a multicore processor like cores, caches, network controllers etc., the interaction between them can affect the performance if the interconnection issues are not resolved properly. In the initial processors, bus was used for communication between the components. In order to reduce the latency, crossbar and mesh topologies are used for interconnection of components. Also, as the parallelism increases at the thread level, communication also increases off-chip for memory access, I/O etc. For issues like this, packet based interconnection is actively used. This packet based interconnection has been used by Intel (Quick path interconnect) and is also being used by AMD.[1][2] 4. CONCLUSIONS In this paper, we reviewed the basic concepts of the multicore technology. We studied that it is possible to increase the performance of a processor without increasing the clock frequency, by simply adding more cores. The limitation of a single core processor at a high clock frequency has opened the gates for multicore technology and has become the trend of the industries today. However, adding more cores also gives rise to certain issues or challenges that must be carefully addressed in order to get the most out of multicore technology. We also studied various challenges associated with increasing the number of cores like power and temperature (thermal issues), level of parallelism, interconnect issues etc. The applications/ algorithms which run on multicore environment must be compatible with it. Research is constantly going on in the areas like developing more efficient applications/ algorithms for multicore environment and also in other areas in order to get the maximum performance throughput from multicore processors. Industries are constantly working towards achieving better and better performance from multicore processors. REFERENCES [1]. Venu, Balaji. "Multicore processors- An overview." [2]. Jr., Ransford Hyman. "Performance issues on Multicore Processors”. [3]. Barbic, Jernej. "Multicore architectures." 2007. [4]. Martin, Christian. "Multicore Processors: Challenges, Opportunities, emerging Trends." Embedded World 2014 Exhibition and Conference . 2014.