SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 4 Issue 1, December 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 702
Graphics Processing Unit: An Introduction
Matthew N. O. Sadiku, Adedamola A. Omotoso, Sarhan M. Musa
Roy G. Perry College of Engineering, Prairie View A&M University, Prairie View, Texas
ABSTRACT
Graphics Processing Unit (GPU)isa processor(orelectronicchip)forgraphics.
GPUs are massively parallel processors used widely used for 3D graphic and
many non-graphic applications. As the demand for graphics applications
increases, GPU has become indispensable. The use of GPUs has now matured
to a point where there are countless industrial applications. This paper
provides a brief introduction on GPUs, their properties,andtheirapplications.
KEYWORDS: graphics processing unit, GPU computing, visual processing unit,
heterogeneous computer system
How to cite this paper: Matthew N. O.
Sadiku | Adedamola A. Omotoso | Sarhan
M. Musa "Graphics Processing Unit: An
Introduction"
Published in
International Journal
of Trend in Scientific
Research and
Development(ijtsrd),
ISSN: 2456-6470,
Volume-4 | Issue-1,
December 2019, pp.702-704, URL:
www.ijtsrd.com/papers/ijtsrd29647.pdf
Copyright © 2019 by author(s) and
International Journal ofTrendinScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
INRODUCTION
Recently, computer performance has increased
tremendously due to the outstanding growth of the number
of transistors. This growth has impacted the world of
scientific computing with the arrival of graphics processing
unit (GPU), which can perform graphical and non-graphical
computations [1]. The introduction of GPU in recent years
has opened a way to perform faster calculations than
central processing unit (CPU).
GPU is sometimes called visual processingunit(VPU).GPUis
an ubiquitous, electronic chip which is mounted on a video
card in every PC, laptop,desktopcomputer,andworkstation.
It is a programmable logic chip specialized for display
functions. It is designed to rapidly manipulate and alter
memory. Architecturally, the CPU consists of only few cores
with lots of cache memory that can handle a few software
threads at a time. A GPU is composed of hundreds of cores
that can handle thousands of threads simultaneously. A CPU
consists of four to eight CPU cores, while the GPU consists of
hundreds of cores. This massive parallel architecture gives
the GPU its high compute performance. GPU may be
regarded as a coprocessor to the CPU which has its own
DRAM and runs many threads in parallel. The difference
between CPU and GPU is shown in Figure 1 [2].
Figure 1 the difference between CPU and GPU [2].
The term GPU was popularized by NVIDIA Corporation in 1999 when thecompanyintroducedthefirstGPU.NVIDIA madeGPU
fully programmable for scientificapplicationsandsupporthigher-level languagessuchasFORTRAN,CandC++.NVIDIA'sCUDA
(Compute Unified Device Architecture) platform introduced in 2007 has become the dominant proprietary framework [3].
Besides NVIDIA, other GPU vendors include Intel, ATI, Sony, and IBM.
IJTSRD29647
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 703
GPU BASICS
GPU is specialized for compute-intensive, highly data parallel computation, which what graphics rendering is all about.
Although GPU can be used for 2D data, it is essential for rendering of 3D animations and video. GPU has a unique design of
‘many-core’ architecture, and each core is able to carry out thousands of threads simultaneously. The memory ofGPUconsists
of a large number of cache blocks, and each block can be independently accessed [4].
Before GPU was invented, graphics on a personal computer were performed by a video graphics array (VGA) controller. GPUs
offer parallel computing power that usually requires a computer or a supercomputer to accomplish.
Figure 2 Block diagram of GPU: “VS” is a vertex shader and “PS” is a pixel shader [5].
As shown in Figure 2 [5], GPU has a vertex shader, rasterizer and pixel shader. The shader transforms geometry, a rasterizer
rasterizes geometry, and a pixel shader draws pixels. Notice that both vertex shader and pixel shader are programmable.
Basically, computation on a GPU is a three-step process: copy data to a GPU memory, operate GPU processing, and copy the
results back from the GPU memory.
APPICATIONS
Graphics remains the leading application of GPUs since they
were originally created for rendering graphics. Due to their
cost and performance, they have become the new standard
of image processing and for non-graphicsapplications.Some
typical applications of GPUincludeGPUcomputing,scientific
computation, and video decoding.
GPU computing:
This is the application of a GPU to do general purpose
scientific and engineering computing. In recent years,
substantial efforts were made to adapt many algorithms for
massively-parallel GPU-based systems since the GPU can
perform many calculations simultaneously.
Scientific/Engineering Computation:
Classic numerical methods, such as solution of linear
equations and FFT, have been adapted formassivelyparallel
GPU architectures. Computer scientists, along with
researchers in fields such as medical imaging and
electromagnetic have used GPUs to accelerate a range of
scientific computations.
Video decoding:
For a GPU implementation, a decoderusesinnovationsinthe
areas of inverse transforms, inverse quantization, loop
filtering using waves, and performance-adaptive loop
filtering. These techniques are directed atacceleratingvideo
encoding using a GPU as comparedtoencodingusingjust the
CPU. The video frames may be collocated to enable parallel
tasking of the GPU.
Other applications include general-purpose graphics
processing units (GPGPU), mobile computers, membrane
computing, scientific computing, electromagnetic modeling
(using finite elements, finite difference, Monte Carlo, etc.),
vectorization, game physics, computational biophysics,
medical imaging, image processing and restoration, control
systems (such as humanoid robots), de-noising, filtering,
interpolation, gaming, and reconstruction,
BENEFTIS AND LIMITATIONS
GPU has the following benefits [6]:
Performs same operations simultaneously on multiple
pieces of data
Organizes operations to be as independent as possible
Arranges data in GPU memory to maximize rate of data
access
The limitations of GPU include memory accesses, data
movement between host and GPU, architectural
dependencies, energy consumption and costs. Perhaps the
most severe limitation is that each thread of execution can
only write a single output value to a single memory location
in a gathered fashion [7]. Most GPUs such as CUDA have no
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 704
standard library, no parallel data structures, and no
synchronization primitives. Although getting started with
GPU programming can be simple, it can take months and
years to fully master GPU hardware. Current GPU cache
hierarchies are somehow inefficient in the face of streaming
data.
CONCLUSION
GPUs are coprocessors that basically perform the rendering
of 2D and 3D graphics. Today’s GPU is not only a powerful
graphics engine but also a highly parallel programmable
processor. GPU has become an indispensable tool when it
comes to large computing because it provides
unprecedented computational power for scientific
applications. Digital images and videos can be processed
efficiently in GPU by exploiting its feature of parallel
execution. More information about GPU can be found in [8].
REFERENCES
[1] A. C. Ahamed and F. Magoulès, “Conjugate gradient
method with graphics processing unit acceleration:
CUDA vs OpenCL,” Advances in Engineering Software,
vol. 111, 2017, pp. 32–42.
[2] A. Chauhan. “Graphics processing unit architectures,”
https://www.cs.indiana.edu/~achauhan/Teaching/B6
49/2011-Fall/StudentPresns/gpu-arch.pdf
[3] “Graphics processing unit,” Wikipedia, the free
encyclopedia
https://en.wikipedia.org/wiki/Graphics_processing_un
it
[4] H. Hsieh and C. Chu, “Particle swarm optimization
(PSO)-based tool path planning for 5-axis flank milling
accelerated by graphics processing unit (GPU),”
International Journal of Computer Integrated
Manufacturing, vol. 24, no. 7, 2011, pp. 676-687.
[5] N. Masuda et al., “Computer generated holography
using a graphics processing unit,” Optics Express, vol.
14, no. 2, Jan. 2006.
[6] P. Blakely, “Introduction to GPU hardware and to
CUDA,”
http://people.ds.cam.ac.uk/pmb39/GPULectures/Lect
ure_1.pdf
[7] J. A. Anderson, C. D. Lorenz, and A. Travesset, “General
purpose molecular dynamics simulations fully
implemented on graphics processing units,” Journal of
Computational Physics, vol. 227, 2008, pp. 5342–5359.
[8] V. Kindratenko (ed.), Numerical Computations with
GPUs. Spinger, 2014.

More Related Content

PDF
VisionizeBeforeVisulaize_IEVC_Final
PDF
Example Application of GPU
PPTX
graphics processing unit ppt
PPTX
Schematic diagrams of GPUs' architecture and Time evolution of theoretical FL...
PPTX
Nvidia (History, GPU Architecture and New Pascal Architecture)
PDF
GPGPU_report_v3
VisionizeBeforeVisulaize_IEVC_Final
Example Application of GPU
graphics processing unit ppt
Schematic diagrams of GPUs' architecture and Time evolution of theoretical FL...
Nvidia (History, GPU Architecture and New Pascal Architecture)
GPGPU_report_v3

What's hot (19)

PPTX
Graphics processing unit
PDF
GPU - Basic Working
PDF
Introduction to GPU Programming
PPT
Gpu and The Brick Wall
PDF
The road to multi/many core computing
PPTX
GRAPHICS PROCESSING UNIT (GPU)
PDF
GPU - An Introduction
PDF
Gpu presentation
PDF
GPU power consumption and performance trends
PPTX
Graphics processing unit (GPU)
PDF
Cuda Based Performance Evaluation Of The Computational Efficiency Of The Dct ...
PPTX
Graphic Processing Unit (GPU)
PPTX
Graphics Processing Units
PPT
Vpu technology &gpgpu computing
PDF
Evolution and Advancement in Chipsets
PDF
Medical imaging computing based on graphical processing units for high perfor...
PDF
Gpu Systems
PDF
01 From K to Fugaku
PPT
Monte Carlo on GPUs
Graphics processing unit
GPU - Basic Working
Introduction to GPU Programming
Gpu and The Brick Wall
The road to multi/many core computing
GRAPHICS PROCESSING UNIT (GPU)
GPU - An Introduction
Gpu presentation
GPU power consumption and performance trends
Graphics processing unit (GPU)
Cuda Based Performance Evaluation Of The Computational Efficiency Of The Dct ...
Graphic Processing Unit (GPU)
Graphics Processing Units
Vpu technology &gpgpu computing
Evolution and Advancement in Chipsets
Medical imaging computing based on graphical processing units for high perfor...
Gpu Systems
01 From K to Fugaku
Monte Carlo on GPUs
Ad

Similar to Graphics Processing Unit: An Introduction (20)

PDF
GPU Computing: An Introduction
PDF
PDF
PPTX
Introduction to GPU
PPTX
presentaion on graphic process unit.pptx
PDF
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
PPTX
graphics processing unit Type and explain
PPTX
GPU Computing: A brief overview
PPTX
GPU in Computer Science advance topic .pptx
PDF
Newbie’s guide to_the_gpgpu_universe
PDF
Computing using GPUs
PPTX
Graphics processing unit ppt
PPTX
GPU Computing
PPT
Cuda intro
PDF
19564926 graphics-processing-unit
PDF
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)
PPTX
Graphics Processing unit ppt
PDF
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
PDF
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
PPTX
Gpu databases
GPU Computing: An Introduction
Introduction to GPU
presentaion on graphic process unit.pptx
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
graphics processing unit Type and explain
GPU Computing: A brief overview
GPU in Computer Science advance topic .pptx
Newbie’s guide to_the_gpgpu_universe
Computing using GPUs
Graphics processing unit ppt
GPU Computing
Cuda intro
19564926 graphics-processing-unit
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)
Graphics Processing unit ppt
IRJET-A Study on Parallization of Genetic Algorithms on GPUS using CUDA
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
Gpu databases
Ad

More from ijtsrd (20)

PDF
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
PDF
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
PDF
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
PDF
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
PDF
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
PDF
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
PDF
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
PDF
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
PDF
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
PDF
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
PDF
Automatic Accident Detection and Emergency Alert System using IoT
PDF
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
PDF
The Role of Media in Tribal Health and Educational Progress of Odisha
PDF
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
PDF
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
PDF
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
PDF
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
PDF
Vitiligo Treated Homoeopathically A Case Report
PDF
Vitiligo Treated Homoeopathically A Case Report
PDF
Uterine Fibroids Homoeopathic Perspectives
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
Automatic Accident Detection and Emergency Alert System using IoT
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
The Role of Media in Tribal Health and Educational Progress of Odisha
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
Vitiligo Treated Homoeopathically A Case Report
Vitiligo Treated Homoeopathically A Case Report
Uterine Fibroids Homoeopathic Perspectives

Recently uploaded (20)

PDF
01-Introduction-to-Information-Management.pdf
PDF
Classroom Observation Tools for Teachers
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
RMMM.pdf make it easy to upload and study
PDF
Trump Administration's workforce development strategy
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Yogi Goddess Pres Conference Studio Updates
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
Pharma ospi slides which help in ospi learning
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Microbial disease of the cardiovascular and lymphatic systems
01-Introduction-to-Information-Management.pdf
Classroom Observation Tools for Teachers
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
RMMM.pdf make it easy to upload and study
Trump Administration's workforce development strategy
Module 4: Burden of Disease Tutorial Slides S2 2025
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Final Presentation General Medicine 03-08-2024.pptx
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
O7-L3 Supply Chain Operations - ICLT Program
Yogi Goddess Pres Conference Studio Updates
Weekly quiz Compilation Jan -July 25.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Pharma ospi slides which help in ospi learning
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
VCE English Exam - Section C Student Revision Booklet
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Microbial disease of the cardiovascular and lymphatic systems

Graphics Processing Unit: An Introduction

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 4 Issue 1, December 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 702 Graphics Processing Unit: An Introduction Matthew N. O. Sadiku, Adedamola A. Omotoso, Sarhan M. Musa Roy G. Perry College of Engineering, Prairie View A&M University, Prairie View, Texas ABSTRACT Graphics Processing Unit (GPU)isa processor(orelectronicchip)forgraphics. GPUs are massively parallel processors used widely used for 3D graphic and many non-graphic applications. As the demand for graphics applications increases, GPU has become indispensable. The use of GPUs has now matured to a point where there are countless industrial applications. This paper provides a brief introduction on GPUs, their properties,andtheirapplications. KEYWORDS: graphics processing unit, GPU computing, visual processing unit, heterogeneous computer system How to cite this paper: Matthew N. O. Sadiku | Adedamola A. Omotoso | Sarhan M. Musa "Graphics Processing Unit: An Introduction" Published in International Journal of Trend in Scientific Research and Development(ijtsrd), ISSN: 2456-6470, Volume-4 | Issue-1, December 2019, pp.702-704, URL: www.ijtsrd.com/papers/ijtsrd29647.pdf Copyright © 2019 by author(s) and International Journal ofTrendinScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) INRODUCTION Recently, computer performance has increased tremendously due to the outstanding growth of the number of transistors. This growth has impacted the world of scientific computing with the arrival of graphics processing unit (GPU), which can perform graphical and non-graphical computations [1]. The introduction of GPU in recent years has opened a way to perform faster calculations than central processing unit (CPU). GPU is sometimes called visual processingunit(VPU).GPUis an ubiquitous, electronic chip which is mounted on a video card in every PC, laptop,desktopcomputer,andworkstation. It is a programmable logic chip specialized for display functions. It is designed to rapidly manipulate and alter memory. Architecturally, the CPU consists of only few cores with lots of cache memory that can handle a few software threads at a time. A GPU is composed of hundreds of cores that can handle thousands of threads simultaneously. A CPU consists of four to eight CPU cores, while the GPU consists of hundreds of cores. This massive parallel architecture gives the GPU its high compute performance. GPU may be regarded as a coprocessor to the CPU which has its own DRAM and runs many threads in parallel. The difference between CPU and GPU is shown in Figure 1 [2]. Figure 1 the difference between CPU and GPU [2]. The term GPU was popularized by NVIDIA Corporation in 1999 when thecompanyintroducedthefirstGPU.NVIDIA madeGPU fully programmable for scientificapplicationsandsupporthigher-level languagessuchasFORTRAN,CandC++.NVIDIA'sCUDA (Compute Unified Device Architecture) platform introduced in 2007 has become the dominant proprietary framework [3]. Besides NVIDIA, other GPU vendors include Intel, ATI, Sony, and IBM. IJTSRD29647
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 703 GPU BASICS GPU is specialized for compute-intensive, highly data parallel computation, which what graphics rendering is all about. Although GPU can be used for 2D data, it is essential for rendering of 3D animations and video. GPU has a unique design of ‘many-core’ architecture, and each core is able to carry out thousands of threads simultaneously. The memory ofGPUconsists of a large number of cache blocks, and each block can be independently accessed [4]. Before GPU was invented, graphics on a personal computer were performed by a video graphics array (VGA) controller. GPUs offer parallel computing power that usually requires a computer or a supercomputer to accomplish. Figure 2 Block diagram of GPU: “VS” is a vertex shader and “PS” is a pixel shader [5]. As shown in Figure 2 [5], GPU has a vertex shader, rasterizer and pixel shader. The shader transforms geometry, a rasterizer rasterizes geometry, and a pixel shader draws pixels. Notice that both vertex shader and pixel shader are programmable. Basically, computation on a GPU is a three-step process: copy data to a GPU memory, operate GPU processing, and copy the results back from the GPU memory. APPICATIONS Graphics remains the leading application of GPUs since they were originally created for rendering graphics. Due to their cost and performance, they have become the new standard of image processing and for non-graphicsapplications.Some typical applications of GPUincludeGPUcomputing,scientific computation, and video decoding. GPU computing: This is the application of a GPU to do general purpose scientific and engineering computing. In recent years, substantial efforts were made to adapt many algorithms for massively-parallel GPU-based systems since the GPU can perform many calculations simultaneously. Scientific/Engineering Computation: Classic numerical methods, such as solution of linear equations and FFT, have been adapted formassivelyparallel GPU architectures. Computer scientists, along with researchers in fields such as medical imaging and electromagnetic have used GPUs to accelerate a range of scientific computations. Video decoding: For a GPU implementation, a decoderusesinnovationsinthe areas of inverse transforms, inverse quantization, loop filtering using waves, and performance-adaptive loop filtering. These techniques are directed atacceleratingvideo encoding using a GPU as comparedtoencodingusingjust the CPU. The video frames may be collocated to enable parallel tasking of the GPU. Other applications include general-purpose graphics processing units (GPGPU), mobile computers, membrane computing, scientific computing, electromagnetic modeling (using finite elements, finite difference, Monte Carlo, etc.), vectorization, game physics, computational biophysics, medical imaging, image processing and restoration, control systems (such as humanoid robots), de-noising, filtering, interpolation, gaming, and reconstruction, BENEFTIS AND LIMITATIONS GPU has the following benefits [6]: Performs same operations simultaneously on multiple pieces of data Organizes operations to be as independent as possible Arranges data in GPU memory to maximize rate of data access The limitations of GPU include memory accesses, data movement between host and GPU, architectural dependencies, energy consumption and costs. Perhaps the most severe limitation is that each thread of execution can only write a single output value to a single memory location in a gathered fashion [7]. Most GPUs such as CUDA have no
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD29647 | Volume – 4 | Issue – 1 | November-December 2019 Page 704 standard library, no parallel data structures, and no synchronization primitives. Although getting started with GPU programming can be simple, it can take months and years to fully master GPU hardware. Current GPU cache hierarchies are somehow inefficient in the face of streaming data. CONCLUSION GPUs are coprocessors that basically perform the rendering of 2D and 3D graphics. Today’s GPU is not only a powerful graphics engine but also a highly parallel programmable processor. GPU has become an indispensable tool when it comes to large computing because it provides unprecedented computational power for scientific applications. Digital images and videos can be processed efficiently in GPU by exploiting its feature of parallel execution. More information about GPU can be found in [8]. REFERENCES [1] A. C. Ahamed and F. Magoulès, “Conjugate gradient method with graphics processing unit acceleration: CUDA vs OpenCL,” Advances in Engineering Software, vol. 111, 2017, pp. 32–42. [2] A. Chauhan. “Graphics processing unit architectures,” https://www.cs.indiana.edu/~achauhan/Teaching/B6 49/2011-Fall/StudentPresns/gpu-arch.pdf [3] “Graphics processing unit,” Wikipedia, the free encyclopedia https://en.wikipedia.org/wiki/Graphics_processing_un it [4] H. Hsieh and C. Chu, “Particle swarm optimization (PSO)-based tool path planning for 5-axis flank milling accelerated by graphics processing unit (GPU),” International Journal of Computer Integrated Manufacturing, vol. 24, no. 7, 2011, pp. 676-687. [5] N. Masuda et al., “Computer generated holography using a graphics processing unit,” Optics Express, vol. 14, no. 2, Jan. 2006. [6] P. Blakely, “Introduction to GPU hardware and to CUDA,” http://people.ds.cam.ac.uk/pmb39/GPULectures/Lect ure_1.pdf [7] J. A. Anderson, C. D. Lorenz, and A. Travesset, “General purpose molecular dynamics simulations fully implemented on graphics processing units,” Journal of Computational Physics, vol. 227, 2008, pp. 5342–5359. [8] V. Kindratenko (ed.), Numerical Computations with GPUs. Spinger, 2014.