SlideShare ist ein Scribd-Unternehmen logo
1 von 19
By : 
Ravi Kumar Parmar 
Student ,BCA V semester(Roll-42) 
School of Computer And Systems Sciences 
Jaipur National University 
Jaipur
 The graphics processing unit (GPU) has become 
an integral part of today’s mainstream 
computing systems. Over the past six years, 
there has been a marked increase in the 
performance and capabilities of GPUs. 
 GPU is a graphical processing unit which enables 
you run high definitions graphics on your PC, 
which are the emend of modern computing. Like 
the CPU (Central Processing Unit), it is a single-chip 
processor. The GPU has hundreds of cores as 
compared to the 4 or 8 in the latest CPUs. The 
primary job of the GPU is to compute 3D 
functions.
 This has already been undertaken by a number of 
graphics processor vendors, such as in NVidia's Pure 
video technology, and AT i's, A vivo. Both companies’ 
technologies offload a number of the most 
computationally intensive aspects of MPEG decoding 
to the GPU, in order to speed up the process over 
the CPU alone so we will concentrate our work 
on the post-decoding phases. 
 With this paper we aim to fill the existing gap in the 
literature using the broader perspective of SOA. We 
do not restrict our self to specific problems but give 
an overview of the multitude of existing application 
examples and the promising future employment of 
graphics hardware in SOAs. By classifying the use 
cases into the layer of reference architecture, we 
show which specific advantage of GPUs is most 
beneficial at each layer
 Control hardware dominates processors 
 Complex, difficult to build and verify 
 Takes substantial fraction of die Scales poorly 
 Pay for max throughput, sustain average 
throughput 
 Quadratic dependency checking 
 Control hardware doesn’t do any math! 
 Over the past few years, the GPU has 
evolved from a fixed-function special-purpose 
processor into a full-fledged parallel 
programmable processor with additional 
fixed-function special-purpose functionality.
 The Graphics Pipeline 
- The input to the GPU is a list of 
geometric primitives, typically triangles, in a 
3-D world coordinate system.Through many 
steps, Vertex Operations: The input primitives 
are formed from individual vertices. Each 
vertex must be transformed into screen space 
and shaded, typically through computing their 
interaction with the lights in the scene. 
Because typical scenes have tens to hundreds 
of thousands of vertices, and each vertex can 
be computed independently, this stage is well 
suited for parallel hardware.
 Evolution of GPU Architecture 
- The fixed-function pipeline lacked the 
generality to efficiently express more complicated 
shading and lighting operations that are essential 
for complex effects. The key step was replacing 
the fixed-function per-vertex and per-fragment 
operations with user-specified programs run on 
each vertex and fragment. Over the past six years, 
these vertex programs and fragment programs 
have become increasingly more capable, with 
larger limits on their size and resource 
consumption, with more fully featured instruction 
sets, and with more flexible control-flow 
operations.
 Architecture Of Modern Gpu 
- we noted that the GPU is built for different 
application demands than the CPU: large parallel 
computation requirements with an emphasis on 
throughput rather than latency. Consequently, the 
architecture of the GPU has progressed in a different 
direction than that of the CPU. 
- The CPU divides the pipeline in time, applying 
all resources in the processor to each stage in turn. 
GPUs have historically taken a different approach. The 
GPU divides the resources of the processor among the 
different stages, such that the pipeline is divided in 
space, not time. The part of the processor working on 
one stage feeds its output directly into a different part 
that works on the next stage.
 NVIDIA 
– Tesla HPC specific GPUs have evolved 
from GeForce series 
 AMD 
– Fire Stream HPC specific GPUs have 
evolved from (ATI) Radeon series 
 Intel 
– Knights Corner many-core x86 chip is 
like hybrid between a GPU and many-core CPU
 Large computational requirements 
 Massive parallelism 
 Graphics pipeline designed for 
independent operations 
 Long latencies tolerable 
 Deep, feed-forward pipelines 
 Hacks are OK—can tolerate lack of 
accuracy 
 GPUs are good at parallel, arithmetically 
intense, streaming-memory problems
 In addition to query processing, large web search 
engines need to perform many other operations 
including web crawl-ing, index building, and 
data mining steps for tasks such as link analysis 
and spam and duplicate detection. We focus 
here on query processing and in particular on 
one phase of this step as explained further 
below. We believe that this part is suitable for 
implementation on GPUs as it is fairly simple in 
structure but nonetheless consumes a 
disproportionate amount of the overall system 
resources. In contrast, we do not think that 
implementation of a complete search engine on 
a GPU is currently realistic.
 The Gpu Programming Model 
- The programmable units of the GPU 
follow a single program multiple-data (SPMD) 
programming model. For efficiency, the GPU 
processes many elements (vertices or 
fragments) in parallel using the same program. 
Each element is independent from the other 
elements, and in the base programming model, 
elements cannot communicate with each 
other. All GPU programs must be structured in 
this way: many parallel elements, each 
processed in parallel by a single program.
 General-Purpose Computing on the GPU 
- Steps to show the simpler and direct way that 
today’s GPU computing applications are written. 
1. Programming a GPU for Graphics: We begin with the 
same GPU pipeline that we described in Section II, 
concentrating on the programmable aspects of this 
pipeline. 
2. The programmer specifies geometry that covers a region 
on the screen. The rasterizer generates a fragment at 
each pixel location covered by that geometry. 
3. Each fragment is shaded by the fragment program. 
4. The fragment program computes the value of the 
fragment by a combination of math operations and 
global memory reads from a global Btexture [memory]. 
5. The resulting image can then be used as texture on 
future passes through the graphics pipeline.
We observe that different use cases weight 
the criteria differently—for example a VDI 
deployment values high VM-to-GPU 
consolidation ratios (e.g., multiplexing) 
while a consumer running a VM to access a 
game or CAD application unavailable on his 
host values performance and likely fidelity. A 
tech support person maintaining a library of 
different configurations and an IT 
administrator running server VMs are both 
likely to value portability and secure 
isolation (interposition).
 Front-end Virtualization 
- Front-end virtualization introduces a virtualization 
boundary at a relatively high level in the stack, and runs the 
graphics driver in the host/hypervisor. This approach does 
not rely on any GPU vendor- or model-specific de- tails. 
 Back-end Virtualization 
-The most obvious back-end virtualization technique 
is fixed pass-through: the permanent association of a virtual 
machine with full exclusive access to a physical GPU. Recent 
chipset features, such as Intel’s VT-d, make fixed pass-through 
practical without requiring any special knowledge of 
a GPU’s programming interfaces. However, fixed pass-through 
is not a general solution. It completely forgoes any 
multiplexing and packing machines with one GPU per virtual 
machine (plus one for the host) is not feasible.
 This paper presents our evaluation and analysis of the efficiency of GPU 
computing for data-parallel scientific applications. Starting with a 
bimolecular code that calculates electrostatic properties in a data-parallel 
manner (i.e., GEM), we evaluate our different implementations 
of GEM across three metrics: performance, energy consumption, and 
energy efficiency. 
 In the future, we will continue this work by investigating the effects of 
memory layout (global, constant, texture) on GPU performance and 
efficiency. In addition, we will delve further into potential techniques for 
proactively reducing power and conserving energy on the gpu. 
 There is much future work in developing reliable benchmarks which 
specifically stress the performance weaknesses of a virtualization layer. 
Our tests show API overheads of about 2 to 120 times that of a native 
GPU. As a result, the performance of a virtualized GPU can be highly 
dependent on subtle implementation details of the application under 
test. 
 Back-end virtualization holds much promise for performance, breadth of 
GPU feature support, and ease of driver maintenance. While fixed pass-through 
is easy, none of the more advanced techniques have been 
demonstrated .
[1].ftp://download.nvidia.com/developer/cud 
a/seminar/TDCI_ Arch.pdf 
[2].http://cs.utsa.edu/~qitian/seminar/Spring 
11/03_04_11/GPU.pdf 
[3].https://www.usenix.org/legacy/event/wio 
v08/tech/full_papers/dowty/dowty.pdf 
[4].http://courses.cs.washington.edu/courses/ 
cse471/13sp/lectures/GPUsStudents.pdf
Graphics processing unit ppt

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

CPU vs. GPU presentation
CPU vs. GPU presentationCPU vs. GPU presentation
CPU vs. GPU presentation
 
Introduction to GPU Programming
Introduction to GPU ProgrammingIntroduction to GPU Programming
Introduction to GPU Programming
 
GPU - Basic Working
GPU - Basic WorkingGPU - Basic Working
GPU - Basic Working
 
Graphics Processing Unit by Saurabh
Graphics Processing Unit by SaurabhGraphics Processing Unit by Saurabh
Graphics Processing Unit by Saurabh
 
GPU - An Introduction
GPU - An IntroductionGPU - An Introduction
GPU - An Introduction
 
CPU vs GPU Comparison
CPU  vs GPU ComparisonCPU  vs GPU Comparison
CPU vs GPU Comparison
 
GRAPHICS PROCESSING UNIT (GPU)
GRAPHICS PROCESSING UNIT (GPU)GRAPHICS PROCESSING UNIT (GPU)
GRAPHICS PROCESSING UNIT (GPU)
 
GPU Programming
GPU ProgrammingGPU Programming
GPU Programming
 
Snapdragon Processor
Snapdragon ProcessorSnapdragon Processor
Snapdragon Processor
 
GPU Architecture NVIDIA (GTX GeForce 480)
GPU Architecture NVIDIA (GTX GeForce 480)GPU Architecture NVIDIA (GTX GeForce 480)
GPU Architecture NVIDIA (GTX GeForce 480)
 
Graphics processing unit
Graphics processing unitGraphics processing unit
Graphics processing unit
 
Graphics card
Graphics cardGraphics card
Graphics card
 
Gpu presentation
Gpu presentationGpu presentation
Gpu presentation
 
Multicore Processor Technology
Multicore Processor TechnologyMulticore Processor Technology
Multicore Processor Technology
 
Graphics card ppt
Graphics card pptGraphics card ppt
Graphics card ppt
 
Cuda
CudaCuda
Cuda
 
Graphic card
Graphic cardGraphic card
Graphic card
 
Tensor Processing Unit (TPU)
Tensor Processing Unit (TPU)Tensor Processing Unit (TPU)
Tensor Processing Unit (TPU)
 
Graphic Processing Unit
Graphic Processing UnitGraphic Processing Unit
Graphic Processing Unit
 
10. GPU - Video Card (Display, Graphics, VGA)
10. GPU - Video Card (Display, Graphics, VGA)10. GPU - Video Card (Display, Graphics, VGA)
10. GPU - Video Card (Display, Graphics, VGA)
 

Ähnlich wie Graphics processing unit ppt

A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONSA SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONScseij
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Editor IJARCET
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Editor IJARCET
 
Graphics Processing Unit: An Introduction
Graphics Processing Unit: An IntroductionGraphics Processing Unit: An Introduction
Graphics Processing Unit: An Introductionijtsrd
 
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDAIRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDAIRJET Journal
 
GPGPU programming with CUDA
GPGPU programming with CUDAGPGPU programming with CUDA
GPGPU programming with CUDASavith Satheesh
 
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the CoupledCpu-GPU ArchitectureRevisiting Co-Processing for Hash Joins on the CoupledCpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecturemohamedragabslideshare
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
High Performance Medical Reconstruction Using Stream Programming Paradigms
High Performance Medical Reconstruction Using Stream Programming ParadigmsHigh Performance Medical Reconstruction Using Stream Programming Paradigms
High Performance Medical Reconstruction Using Stream Programming ParadigmsQuEST Global (erstwhile NeST Software)
 
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~Kohei KaiGai
 
Challenges and Opportunities of FPGA Acceleration in Big Data
Challenges and Opportunities of FPGA Acceleration in Big DataChallenges and Opportunities of FPGA Acceleration in Big Data
Challenges and Opportunities of FPGA Acceleration in Big DataIRJET Journal
 
Hybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESHybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESSubhajit Sahu
 
Image Processing Application on Graphics processors
Image Processing Application on Graphics processorsImage Processing Application on Graphics processors
Image Processing Application on Graphics processorsCSCJournals
 
GPU Computing: A brief overview
GPU Computing: A brief overviewGPU Computing: A brief overview
GPU Computing: A brief overviewRajiv Kumar
 
An exposition of performance comparison of graphic processing unit virtualiza...
An exposition of performance comparison of graphic processing unit virtualiza...An exposition of performance comparison of graphic processing unit virtualiza...
An exposition of performance comparison of graphic processing unit virtualiza...Asif Farooq
 
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...IJCSIS Research Publications
 

Ähnlich wie Graphics processing unit ppt (20)

A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONSA SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
 
Gpu
GpuGpu
Gpu
 
Gpu
GpuGpu
Gpu
 
Amd fusion apus
Amd fusion apusAmd fusion apus
Amd fusion apus
 
Graphics Processing Unit: An Introduction
Graphics Processing Unit: An IntroductionGraphics Processing Unit: An Introduction
Graphics Processing Unit: An Introduction
 
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDAIRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
 
GPGPU programming with CUDA
GPGPU programming with CUDAGPGPU programming with CUDA
GPGPU programming with CUDA
 
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the CoupledCpu-GPU ArchitectureRevisiting Co-Processing for Hash Joins on the CoupledCpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
High Performance Medical Reconstruction Using Stream Programming Paradigms
High Performance Medical Reconstruction Using Stream Programming ParadigmsHigh Performance Medical Reconstruction Using Stream Programming Paradigms
High Performance Medical Reconstruction Using Stream Programming Paradigms
 
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~
GPGPU Accelerates PostgreSQL ~Unlock the power of multi-thousand cores~
 
Challenges and Opportunities of FPGA Acceleration in Big Data
Challenges and Opportunities of FPGA Acceleration in Big DataChallenges and Opportunities of FPGA Acceleration in Big Data
Challenges and Opportunities of FPGA Acceleration in Big Data
 
Hybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESHybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTES
 
Image Processing Application on Graphics processors
Image Processing Application on Graphics processorsImage Processing Application on Graphics processors
Image Processing Application on Graphics processors
 
GPU Computing: A brief overview
GPU Computing: A brief overviewGPU Computing: A brief overview
GPU Computing: A brief overview
 
An exposition of performance comparison of graphic processing unit virtualiza...
An exposition of performance comparison of graphic processing unit virtualiza...An exposition of performance comparison of graphic processing unit virtualiza...
An exposition of performance comparison of graphic processing unit virtualiza...
 
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...
An Exposition of Performance Comparison of Graphic Processing Unit Virtualiza...
 
NVIDIA CUDA
NVIDIA CUDANVIDIA CUDA
NVIDIA CUDA
 

Kürzlich hochgeladen

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 

Kürzlich hochgeladen (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 

Graphics processing unit ppt

  • 1. By : Ravi Kumar Parmar Student ,BCA V semester(Roll-42) School of Computer And Systems Sciences Jaipur National University Jaipur
  • 2.  The graphics processing unit (GPU) has become an integral part of today’s mainstream computing systems. Over the past six years, there has been a marked increase in the performance and capabilities of GPUs.  GPU is a graphical processing unit which enables you run high definitions graphics on your PC, which are the emend of modern computing. Like the CPU (Central Processing Unit), it is a single-chip processor. The GPU has hundreds of cores as compared to the 4 or 8 in the latest CPUs. The primary job of the GPU is to compute 3D functions.
  • 3.  This has already been undertaken by a number of graphics processor vendors, such as in NVidia's Pure video technology, and AT i's, A vivo. Both companies’ technologies offload a number of the most computationally intensive aspects of MPEG decoding to the GPU, in order to speed up the process over the CPU alone so we will concentrate our work on the post-decoding phases.  With this paper we aim to fill the existing gap in the literature using the broader perspective of SOA. We do not restrict our self to specific problems but give an overview of the multitude of existing application examples and the promising future employment of graphics hardware in SOAs. By classifying the use cases into the layer of reference architecture, we show which specific advantage of GPUs is most beneficial at each layer
  • 4.  Control hardware dominates processors  Complex, difficult to build and verify  Takes substantial fraction of die Scales poorly  Pay for max throughput, sustain average throughput  Quadratic dependency checking  Control hardware doesn’t do any math!  Over the past few years, the GPU has evolved from a fixed-function special-purpose processor into a full-fledged parallel programmable processor with additional fixed-function special-purpose functionality.
  • 5.  The Graphics Pipeline - The input to the GPU is a list of geometric primitives, typically triangles, in a 3-D world coordinate system.Through many steps, Vertex Operations: The input primitives are formed from individual vertices. Each vertex must be transformed into screen space and shaded, typically through computing their interaction with the lights in the scene. Because typical scenes have tens to hundreds of thousands of vertices, and each vertex can be computed independently, this stage is well suited for parallel hardware.
  • 6.
  • 7.  Evolution of GPU Architecture - The fixed-function pipeline lacked the generality to efficiently express more complicated shading and lighting operations that are essential for complex effects. The key step was replacing the fixed-function per-vertex and per-fragment operations with user-specified programs run on each vertex and fragment. Over the past six years, these vertex programs and fragment programs have become increasingly more capable, with larger limits on their size and resource consumption, with more fully featured instruction sets, and with more flexible control-flow operations.
  • 8.  Architecture Of Modern Gpu - we noted that the GPU is built for different application demands than the CPU: large parallel computation requirements with an emphasis on throughput rather than latency. Consequently, the architecture of the GPU has progressed in a different direction than that of the CPU. - The CPU divides the pipeline in time, applying all resources in the processor to each stage in turn. GPUs have historically taken a different approach. The GPU divides the resources of the processor among the different stages, such that the pipeline is divided in space, not time. The part of the processor working on one stage feeds its output directly into a different part that works on the next stage.
  • 9.
  • 10.  NVIDIA – Tesla HPC specific GPUs have evolved from GeForce series  AMD – Fire Stream HPC specific GPUs have evolved from (ATI) Radeon series  Intel – Knights Corner many-core x86 chip is like hybrid between a GPU and many-core CPU
  • 11.  Large computational requirements  Massive parallelism  Graphics pipeline designed for independent operations  Long latencies tolerable  Deep, feed-forward pipelines  Hacks are OK—can tolerate lack of accuracy  GPUs are good at parallel, arithmetically intense, streaming-memory problems
  • 12.  In addition to query processing, large web search engines need to perform many other operations including web crawl-ing, index building, and data mining steps for tasks such as link analysis and spam and duplicate detection. We focus here on query processing and in particular on one phase of this step as explained further below. We believe that this part is suitable for implementation on GPUs as it is fairly simple in structure but nonetheless consumes a disproportionate amount of the overall system resources. In contrast, we do not think that implementation of a complete search engine on a GPU is currently realistic.
  • 13.  The Gpu Programming Model - The programmable units of the GPU follow a single program multiple-data (SPMD) programming model. For efficiency, the GPU processes many elements (vertices or fragments) in parallel using the same program. Each element is independent from the other elements, and in the base programming model, elements cannot communicate with each other. All GPU programs must be structured in this way: many parallel elements, each processed in parallel by a single program.
  • 14.  General-Purpose Computing on the GPU - Steps to show the simpler and direct way that today’s GPU computing applications are written. 1. Programming a GPU for Graphics: We begin with the same GPU pipeline that we described in Section II, concentrating on the programmable aspects of this pipeline. 2. The programmer specifies geometry that covers a region on the screen. The rasterizer generates a fragment at each pixel location covered by that geometry. 3. Each fragment is shaded by the fragment program. 4. The fragment program computes the value of the fragment by a combination of math operations and global memory reads from a global Btexture [memory]. 5. The resulting image can then be used as texture on future passes through the graphics pipeline.
  • 15. We observe that different use cases weight the criteria differently—for example a VDI deployment values high VM-to-GPU consolidation ratios (e.g., multiplexing) while a consumer running a VM to access a game or CAD application unavailable on his host values performance and likely fidelity. A tech support person maintaining a library of different configurations and an IT administrator running server VMs are both likely to value portability and secure isolation (interposition).
  • 16.  Front-end Virtualization - Front-end virtualization introduces a virtualization boundary at a relatively high level in the stack, and runs the graphics driver in the host/hypervisor. This approach does not rely on any GPU vendor- or model-specific de- tails.  Back-end Virtualization -The most obvious back-end virtualization technique is fixed pass-through: the permanent association of a virtual machine with full exclusive access to a physical GPU. Recent chipset features, such as Intel’s VT-d, make fixed pass-through practical without requiring any special knowledge of a GPU’s programming interfaces. However, fixed pass-through is not a general solution. It completely forgoes any multiplexing and packing machines with one GPU per virtual machine (plus one for the host) is not feasible.
  • 17.  This paper presents our evaluation and analysis of the efficiency of GPU computing for data-parallel scientific applications. Starting with a bimolecular code that calculates electrostatic properties in a data-parallel manner (i.e., GEM), we evaluate our different implementations of GEM across three metrics: performance, energy consumption, and energy efficiency.  In the future, we will continue this work by investigating the effects of memory layout (global, constant, texture) on GPU performance and efficiency. In addition, we will delve further into potential techniques for proactively reducing power and conserving energy on the gpu.  There is much future work in developing reliable benchmarks which specifically stress the performance weaknesses of a virtualization layer. Our tests show API overheads of about 2 to 120 times that of a native GPU. As a result, the performance of a virtualized GPU can be highly dependent on subtle implementation details of the application under test.  Back-end virtualization holds much promise for performance, breadth of GPU feature support, and ease of driver maintenance. While fixed pass-through is easy, none of the more advanced techniques have been demonstrated .
  • 18. [1].ftp://download.nvidia.com/developer/cud a/seminar/TDCI_ Arch.pdf [2].http://cs.utsa.edu/~qitian/seminar/Spring 11/03_04_11/GPU.pdf [3].https://www.usenix.org/legacy/event/wio v08/tech/full_papers/dowty/dowty.pdf [4].http://courses.cs.washington.edu/courses/ cse471/13sp/lectures/GPUsStudents.pdf