SlideShare a Scribd company logo
1 of 26
GPU Computation in Bioinspired
    Algorithms. A review


      M.G. Arenas, A.M. Mora, G. Romero, P.A. Castillo
          Depto. Arquitectura y Tecnología de Computadores
GPU Computation in Bioinspired Algorithms. A review


1. Introduction
•   Growing interest in GPU computation

•   A GPU is able to perform graphics manipulation at high speed

•   Developers can write their own high-level programs to run on GPU

•   These architectures suited to run large computational problems
    (bioinformatics area)
GPU Computation in Bioinspired Algorithms. A review


1. Introduction
•   GPUs can be seen as SIMD multi-core processors

•   Internally the GPU contains a number of small processors that are
    used to perform calculations

•   Depending on the GPU, the number of threads that can be
    executed in parallel is in the order of hundreds
GPU Computation in Bioinspired Algorithms. A review



Index
1. Introduction
2. Throughput, parallelism and GPUs
3. GPUs Programming
4. Bioinspired Methods on GPUs
5. Conclusions
GPU Computation in Bioinspired Algorithms. A review


2. Throughput, parallelism and GPUs
•   For years, processor makers increased clock rates and instruction-
    level paralelism => sequential code run faster




•   Nowadays, they design multicore-chips
     => software adapted to
      multithreaded / multiprocess
GPU Computation in Bioinspired Algorithms. A review


2. Throughput, parallelism and GPUs
•   GPUs have matured, becoming general
    purpose computational devices for highly
    parallel work-loads
GPU Computation in Bioinspired Algorithms. A review



Index
1. Introduction
2. Throughput, parallelism and GPUs
3. GPUs Programming
4. Bioinspired Methods on GPUs
5. Conclusions
GPU Computation in Bioinspired Algorithms. A review


3. GPUs Programming. Programming Model
•   APIs based on C-like languages

•   nVidia => GeForce => CUDA

•   ATI => Radeon => Close to metal

•   Aple => OpenCL

•   Microsoft => DirectCompute
GPU Computation in Bioinspired Algorithms. A review


3. GPUs Programming. Programming Model
•   OpenCL applications:
     • GPUs, multi-core CPUs, FPGAs
     • portable across different platforms
     • keep functionality and correctness
GPU Computation in Bioinspired Algorithms. A review


3. GPUs Programming. Execution Model
•   Applications have serial portions and parallel portions
    (kernel)

•   A kernel applies a single stream of instructions to many
    data (SIMD)
GPU Computation in Bioinspired Algorithms. A review


3. GPUs Programming. Execution Model




•   Terminology:


    –   Each piece of data = work-item (thread)
    –   A kernel has thousands of work-items
    –   A kernel is organized into many work-groups (thread block)
    –   Each work-group process many work-items
GPU Computation in Bioinspired Algorithms. A review


3. GPUs Programming. Memory Model
•   Define how the data is stored and communicated
    between CPU and GPU

•   Global memory
     CPU->rw / work-items->rw
•   Constant memory
     CPU->rw / work-items->ro
•   Private memory
     CPU->X / single work-item->rw
•   Local memory
     CPU->X / work-group->rw
GPU Computation in Bioinspired Algorithms. A review



Index
1. Introduction
2. Throughput, parallelism and GPUs
3. GPUs Programming
4. Bioinspired Methods on GPUs
5. Conclusions
GPU Computation in Bioinspired Algorithms. A review


4. Bioinspired Methods on GPUs
•   Review of different evolutionary computation
    approaches using GPU

•   Master-slave
•   Fine-grained
•   Island-model

•   ANN on GPUs
GPU Computation in Bioinspired Algorithms. A review


4.1 Master-slave approaches:
•   Some actions are executed in the CPU (main loop)
•   Evaluation and mutation are run on GPU

•   Competition and selection are performed on the CPU, while
    mutation, reproduction and evaluation on the GPU




                           CPU



             GPU
GPU Computation in Bioinspired Algorithms. A review


4.1 Master-slave approaches

References
•   Zhang, S., He, Z.: Implementation of parallel genetic algorithm based on cuda.
    In et al., Z.C., Lecture Notes in Computer Science, vol 5821. 2009

•   Wong, M., Wong, T., Fok, K.: Parallel evolutionary algorithms on graphics
    processing unit. CEC 2005

•   Harding, S., Banzhaf, W.: Fast genetic programming and artificial
    developmental systems on gpus. High Performance Computing Systems and
    Applications. 2007
GPU Computation in Bioinspired Algorithms. A review


4.2 Fine-grained approaches:
•   The whole evolutionary process is run on the GPU
•   Each EA individual is set to each GPU processor
•   Store individuals and fitness in the GPU global memory

•   Problem: random number generation (on CPU)
GPU Computation in Bioinspired Algorithms. A review


4.2 Fine-grained approaches

References
•   Wong, M., Wong, T.: Parallel hybrid genetic algorithms on Consumer-Level
    graphics hardware. CEC 2006
•   Wong, M., Wong, T.: Implementation of parallel genetic algorithms on graphics
    processing units. Studies in Computational Intelligence, vol 187, pp. 197–216. 2009
•   Yu, Q., Chen, C., Pan, Z.: Parallel genetic algorithms on programmable graphics
    hardware. Lecture Notes in Computer Science, vol 3612, pp. 1051–1059. 2005
•   Luo, Z., Liu, H.: Cellular genetic algorithms and local search for 3-SAT problem on
    graphic hardware. CEC 2006
•   Li, J.,Wang, X., He, R., Chi, Z.: An efficient fine-grained parallel genetic algorithm
    based on GPU-Accelerated. Network and Parallel Computing Workshop. 2007
•   Li, J., Zhang, L., Liu, L.: A parallel immune algorithm based on fine-grained model
    with gpu-acceleration. International Conference on Innovative Computing. 2009
•   Vidal, P., Alba, E.: Cellular genetic algorithm on graphic processing units. NICSO
    2010
GPU Computation in Bioinspired Algorithms. A review


4.3 Coarse-grained approaches (island model):
•   Code an “island” (EA) on GPU
•   Generate the initial population on CPU and copy it to the GPU VRAM
•   Each subpopulation evolves in each GPU processor
•   At some generations, individuals in subpopulations are shuffled via the
    GPU VRAM
GPU Computation in Bioinspired Algorithms. A review


4.3 Island-model approaches

References
•   Pospichal, P., Jaros., J.: Gpu-based acceleration of the genetic algorithm.
    Technical report, GECOO competition (2009)

•   Tsutsui, S., Fujimoto, N.: Solving quadratic assignment problems by genetic
    algorithms with gpu computation: a case study. GECCO 2009

•   Luong, T.V., Melab, N., Talbi, E.G.: GPU-based Island Model for Evolutionary
    Algorithms. GECCO 2010

•   Pospichal, P., Jaros, J., Schwarz, J.: Parallel genetic algorithm on the cuda
    architecture. Lecture Notes in Computer Science, vol 6024. 2010

•   Pospichal, P., Schwarz, J., Jaros, J.: Parallel genetic algorithm solving 0/1
    knapsack problem running on the gpu. International Conference on Soft
    Computing 2010
GPU Computation in Bioinspired Algorithms. A review


4.4 ANN approaches

•   Widely used in pattern recognition

•   Usually the computation for ANN is inherently parallel

•   However, many algorithms require some steps that are
    difficult to parallelize
GPU Computation in Bioinspired Algorithms. A review


4.4 ANN approaches

References
•   http://www.irontaco.com/Documents/MeuthNeuralGPGPUSurvey.pdf
•   Kyoung-Su Oh, Keechul Jung, GPU implementation of neural networks, Pattern
    Recognition, vol. 37, n.6, 2004
•   Z.Luo, H. Liu and X.Wu, Artificial Neural Network Computation on Graphic
    Process Unit, IJCNN 2005
•   M. Martínez-Zarzuela et al. Fuzzy ART Neural Network Parallel Computing on
    the GPU. IWANN 2007



Libraries:
•   http://www.codeproject.com/KB/graphics/GPUNN.aspx
GPU Computation in Bioinspired Algorithms. A review



Index
1. Introduction
2. Throughput, parallelism and GPUs
3. GPUs Programming
4. Bioinspired Methods on GPUs
5. Conclusions
GPU Computation in Bioinspired Algorithms. A review


5. Conclusions

•   GPU computing approach

•   Overview current programming languages and
    software tools

•   Review the use of GPUs to implement
    bioinspired algorithms
GPU Computation in Bioinspired Algorithms. A review


5. Conclusions

•   Most of the bioinspired methods use the GPU to
    speed-up the fitness evaluation

•   Competition and selection are performed on CPU

•   Fitness, mutation and reproduction are performed
    on GPU

•   Speed-ups up to several thousands times higher
    on GPU compared to CPU sequential versions
GPU Computation in Bioinspired Algorithms. A review




Thank you!



           pedro@atc.ugr.es
           http://atc.ugr.es/~pedro/research/gpu/

More Related Content

Viewers also liked

Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...
Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...
Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...pacvslideshare
 
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...pacvslideshare
 
Hackahton smart cities 2016 (Mayo 2016)
Hackahton smart cities 2016 (Mayo 2016)Hackahton smart cities 2016 (Mayo 2016)
Hackahton smart cities 2016 (Mayo 2016)Pablo García Sánchez
 
Embodied Values fifediet
Embodied Values fifedietEmbodied Values fifediet
Embodied Values fifedietMike Small
 
Ming-Wei Lee(David)(MGM Awards).PDF
Ming-Wei Lee(David)(MGM Awards).PDFMing-Wei Lee(David)(MGM Awards).PDF
Ming-Wei Lee(David)(MGM Awards).PDFMing-Wei Lee
 
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016Nordnet Suomi
 
Benchmarking languages for evolutionary algorithms
Benchmarking languages for evolutionary algorithmsBenchmarking languages for evolutionary algorithms
Benchmarking languages for evolutionary algorithmsJuan J. Merelo
 
Data mining in security: Ja'far Alqatawna
Data mining in security: Ja'far AlqatawnaData mining in security: Ja'far Alqatawna
Data mining in security: Ja'far AlqatawnaMaribel García Arenas
 
Relato de Experiência de Monitoria da Disciplina de Estrutura de Dados, Estr...
Relato de Experiência de Monitoria da Disciplina de  Estrutura de Dados, Estr...Relato de Experiência de Monitoria da Disciplina de  Estrutura de Dados, Estr...
Relato de Experiência de Monitoria da Disciplina de Estrutura de Dados, Estr...Ronildo Oliveira
 
This was a triumph: Evolving intelligent bots for videogames. And for Science.
This was a triumph: Evolving intelligent bots for videogames. And for Science. This was a triumph: Evolving intelligent bots for videogames. And for Science.
This was a triumph: Evolving intelligent bots for videogames. And for Science. Pablo García Sánchez
 

Viewers also liked (20)

Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...
Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...
Predicción de tráfico mediante co-evolución de Redes Neuronales de Funciones ...
 
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...
Estudio de los indicadores de exposición al riesgo mediante un sistema de mon...
 
Kaggle Otto Group
Kaggle Otto GroupKaggle Otto Group
Kaggle Otto Group
 
Otto Challenge report
Otto Challenge reportOtto Challenge report
Otto Challenge report
 
Hackahton smart cities 2016 (Mayo 2016)
Hackahton smart cities 2016 (Mayo 2016)Hackahton smart cities 2016 (Mayo 2016)
Hackahton smart cities 2016 (Mayo 2016)
 
Smart city hackathon
Smart city hackathonSmart city hackathon
Smart city hackathon
 
Embodied Values fifediet
Embodied Values fifedietEmbodied Values fifediet
Embodied Values fifediet
 
aimbetter
aimbetteraimbetter
aimbetter
 
nihms185179
nihms185179nihms185179
nihms185179
 
futbol
futbolfutbol
futbol
 
Hatcopy
HatcopyHatcopy
Hatcopy
 
RFP Evaluation Training
RFP Evaluation TrainingRFP Evaluation Training
RFP Evaluation Training
 
OPP Residential Example 2015
OPP Residential Example 2015  OPP Residential Example 2015
OPP Residential Example 2015
 
Ming-Wei Lee(David)(MGM Awards).PDF
Ming-Wei Lee(David)(MGM Awards).PDFMing-Wei Lee(David)(MGM Awards).PDF
Ming-Wei Lee(David)(MGM Awards).PDF
 
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016
Inderesin analyysi - Stora Enso Nordnetin aamiaistilaisuudessa 1.3.2016
 
Con botas en los pies
Con botas en los piesCon botas en los pies
Con botas en los pies
 
Benchmarking languages for evolutionary algorithms
Benchmarking languages for evolutionary algorithmsBenchmarking languages for evolutionary algorithms
Benchmarking languages for evolutionary algorithms
 
Data mining in security: Ja'far Alqatawna
Data mining in security: Ja'far AlqatawnaData mining in security: Ja'far Alqatawna
Data mining in security: Ja'far Alqatawna
 
Relato de Experiência de Monitoria da Disciplina de Estrutura de Dados, Estr...
Relato de Experiência de Monitoria da Disciplina de  Estrutura de Dados, Estr...Relato de Experiência de Monitoria da Disciplina de  Estrutura de Dados, Estr...
Relato de Experiência de Monitoria da Disciplina de Estrutura de Dados, Estr...
 
This was a triumph: Evolving intelligent bots for videogames. And for Science.
This was a triumph: Evolving intelligent bots for videogames. And for Science. This was a triumph: Evolving intelligent bots for videogames. And for Science.
This was a triumph: Evolving intelligent bots for videogames. And for Science.
 

Similar to Iwann2011 gpus

Mauricio breteernitiz hpc-exascale-iscte
Mauricio breteernitiz hpc-exascale-iscteMauricio breteernitiz hpc-exascale-iscte
Mauricio breteernitiz hpc-exascale-isctembreternitz
 
GPU Computing for Data Science
GPU Computing for Data Science GPU Computing for Data Science
GPU Computing for Data Science Domino Data Lab
 
Hybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESHybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESSubhajit Sahu
 
Introduction to GPUs for Machine Learning
Introduction to GPUs for Machine LearningIntroduction to GPUs for Machine Learning
Introduction to GPUs for Machine LearningSri Ambati
 
GPU Performance Prediction Using High-level Application Models
GPU Performance Prediction Using High-level Application ModelsGPU Performance Prediction Using High-level Application Models
GPU Performance Prediction Using High-level Application ModelsFilipo Mór
 
A GPU Implementation of Generalized Graph Processing Algorithm GIM-V
A GPU Implementation of Generalized Graph Processing Algorithm GIM-VA GPU Implementation of Generalized Graph Processing Algorithm GIM-V
A GPU Implementation of Generalized Graph Processing Algorithm GIM-VKoichi Shirahata
 
Evolutionary Computing Technology - Genetic Algorithm
Evolutionary Computing Technology - Genetic AlgorithmEvolutionary Computing Technology - Genetic Algorithm
Evolutionary Computing Technology - Genetic AlgorithmSina Mohammadi
 
Rack Cluster Deployment for SDSC Supercomputer
Rack Cluster Deployment for SDSC SupercomputerRack Cluster Deployment for SDSC Supercomputer
Rack Cluster Deployment for SDSC SupercomputerRebekah Rodriguez
 
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...Insight Technology, Inc.
 
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production Scale
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production ScaleGPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production Scale
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production ScaleSpark Summit
 
Sc12 workshop-writeup
Sc12 workshop-writeupSc12 workshop-writeup
Sc12 workshop-writeupAaron Zauner
 
The Rise of Parallel Computing
The Rise of Parallel ComputingThe Rise of Parallel Computing
The Rise of Parallel Computingbakers84
 
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...chiportal
 
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scale
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production ScaleGPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scale
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scalesparktc
 
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)
Report on GPGPU at FCA  (Lyon, France, 11-15 October, 2010)Report on GPGPU at FCA  (Lyon, France, 11-15 October, 2010)
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)PhtRaveller
 

Similar to Iwann2011 gpus (20)

Mauricio breteernitiz hpc-exascale-iscte
Mauricio breteernitiz hpc-exascale-iscteMauricio breteernitiz hpc-exascale-iscte
Mauricio breteernitiz hpc-exascale-iscte
 
GPU Algorithms and trends 2018
GPU Algorithms and trends 2018GPU Algorithms and trends 2018
GPU Algorithms and trends 2018
 
GPU Computing for Data Science
GPU Computing for Data Science GPU Computing for Data Science
GPU Computing for Data Science
 
Hybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTESHybrid Multicore Computing : NOTES
Hybrid Multicore Computing : NOTES
 
Introduction to GPUs for Machine Learning
Introduction to GPUs for Machine LearningIntroduction to GPUs for Machine Learning
Introduction to GPUs for Machine Learning
 
GPU Performance Prediction Using High-level Application Models
GPU Performance Prediction Using High-level Application ModelsGPU Performance Prediction Using High-level Application Models
GPU Performance Prediction Using High-level Application Models
 
A GPU Implementation of Generalized Graph Processing Algorithm GIM-V
A GPU Implementation of Generalized Graph Processing Algorithm GIM-VA GPU Implementation of Generalized Graph Processing Algorithm GIM-V
A GPU Implementation of Generalized Graph Processing Algorithm GIM-V
 
Evolutionary Computing Technology - Genetic Algorithm
Evolutionary Computing Technology - Genetic AlgorithmEvolutionary Computing Technology - Genetic Algorithm
Evolutionary Computing Technology - Genetic Algorithm
 
Rack Cluster Deployment for SDSC Supercomputer
Rack Cluster Deployment for SDSC SupercomputerRack Cluster Deployment for SDSC Supercomputer
Rack Cluster Deployment for SDSC Supercomputer
 
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...
[db analytics showcase Sapporo 2018] B33 H2O4GPU and GoAI: harnessing the pow...
 
2014/07/17 Parallelize computer vision by GPGPU computing
2014/07/17 Parallelize computer vision by GPGPU computing2014/07/17 Parallelize computer vision by GPGPU computing
2014/07/17 Parallelize computer vision by GPGPU computing
 
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production Scale
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production ScaleGPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production Scale
GPU Support In Spark And GPU/CPU Mixed Resource Scheduling At Production Scale
 
Sc12 workshop-writeup
Sc12 workshop-writeupSc12 workshop-writeup
Sc12 workshop-writeup
 
The Rise of Parallel Computing
The Rise of Parallel ComputingThe Rise of Parallel Computing
The Rise of Parallel Computing
 
Dl2 computing gpu
Dl2 computing gpuDl2 computing gpu
Dl2 computing gpu
 
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...
TRACK F: OpenCL for ALTERA FPGAs, Accelerating performance and design product...
 
Connected Components Labeling
Connected Components LabelingConnected Components Labeling
Connected Components Labeling
 
Current Trends in HPC
Current Trends in HPCCurrent Trends in HPC
Current Trends in HPC
 
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scale
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production ScaleGPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scale
GPU Support in Spark and GPU/CPU Mixed Resource Scheduling at Production Scale
 
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)
Report on GPGPU at FCA  (Lyon, France, 11-15 October, 2010)Report on GPGPU at FCA  (Lyon, France, 11-15 October, 2010)
Report on GPGPU at FCA (Lyon, France, 11-15 October, 2010)
 

More from pacvslideshare

Aplicaciones de comunicación e interacción con los estudiantes (Telegram)
Aplicaciones de comunicación e interacción con los estudiantes (Telegram)Aplicaciones de comunicación e interacción con los estudiantes (Telegram)
Aplicaciones de comunicación e interacción con los estudiantes (Telegram)pacvslideshare
 
Finding self-organized criticality in collaborative work via repository mining
Finding self-organized criticality in collaborative work via repository miningFinding self-organized criticality in collaborative work via repository mining
Finding self-organized criticality in collaborative work via repository mining pacvslideshare
 
Servidores web de altas prestaciones. Tema 7
Servidores web de altas prestaciones. Tema 7Servidores web de altas prestaciones. Tema 7
Servidores web de altas prestaciones. Tema 7pacvslideshare
 
Servidores web de altas prestaciones. Tema 6
Servidores web de altas prestaciones. Tema 6Servidores web de altas prestaciones. Tema 6
Servidores web de altas prestaciones. Tema 6pacvslideshare
 
Servidores web de altas prestaciones. Tema 5
Servidores web de altas prestaciones. Tema 5Servidores web de altas prestaciones. Tema 5
Servidores web de altas prestaciones. Tema 5pacvslideshare
 
Servidores web de altas prestaciones. Tema 4
Servidores web de altas prestaciones. Tema 4Servidores web de altas prestaciones. Tema 4
Servidores web de altas prestaciones. Tema 4pacvslideshare
 
Servidores web de altas prestaciones. Tema 3
Servidores web de altas prestaciones. Tema 3Servidores web de altas prestaciones. Tema 3
Servidores web de altas prestaciones. Tema 3pacvslideshare
 
Servidores web de altas prestaciones. Tema 2
Servidores web de altas prestaciones. Tema 2Servidores web de altas prestaciones. Tema 2
Servidores web de altas prestaciones. Tema 2pacvslideshare
 
Servidores web de altas prestaciones. Tema 1
Servidores web de altas prestaciones. Tema 1Servidores web de altas prestaciones. Tema 1
Servidores web de altas prestaciones. Tema 1pacvslideshare
 
Servidores web de altas prestaciones. Tema 0. Presentación
Servidores web de altas prestaciones. Tema 0. PresentaciónServidores web de altas prestaciones. Tema 0. Presentación
Servidores web de altas prestaciones. Tema 0. Presentaciónpacvslideshare
 
Herramientas tic en docencia (2016)
Herramientas tic en docencia (2016)Herramientas tic en docencia (2016)
Herramientas tic en docencia (2016)pacvslideshare
 
Cloud Computing. Contenedores
Cloud Computing. ContenedoresCloud Computing. Contenedores
Cloud Computing. Contenedorespacvslideshare
 
Cloud Computing. Gestión de configuraciones. Vagrant
Cloud Computing. Gestión de configuraciones. VagrantCloud Computing. Gestión de configuraciones. Vagrant
Cloud Computing. Gestión de configuraciones. Vagrantpacvslideshare
 
Cloud Computing. Gestión de configuraciones. Ansible
Cloud Computing. Gestión de configuraciones. AnsibleCloud Computing. Gestión de configuraciones. Ansible
Cloud Computing. Gestión de configuraciones. Ansiblepacvslideshare
 
Cloud Computing. Gestión de configuraciones
Cloud Computing. Gestión de configuracionesCloud Computing. Gestión de configuraciones
Cloud Computing. Gestión de configuracionespacvslideshare
 
Cloud Computing. Virtualización. IBM Bluemix
Cloud Computing. Virtualización. IBM BluemixCloud Computing. Virtualización. IBM Bluemix
Cloud Computing. Virtualización. IBM Bluemixpacvslideshare
 
Cloud Computing. Virtualización. Azure
Cloud Computing. Virtualización. AzureCloud Computing. Virtualización. Azure
Cloud Computing. Virtualización. Azurepacvslideshare
 
Cloud Computing. Virtualización. qemu
Cloud Computing. Virtualización. qemuCloud Computing. Virtualización. qemu
Cloud Computing. Virtualización. qemupacvslideshare
 
Cloud Computing. Virtualización
Cloud Computing. VirtualizaciónCloud Computing. Virtualización
Cloud Computing. Virtualizaciónpacvslideshare
 
Cloud Computing. Presentación general
Cloud Computing. Presentación generalCloud Computing. Presentación general
Cloud Computing. Presentación generalpacvslideshare
 

More from pacvslideshare (20)

Aplicaciones de comunicación e interacción con los estudiantes (Telegram)
Aplicaciones de comunicación e interacción con los estudiantes (Telegram)Aplicaciones de comunicación e interacción con los estudiantes (Telegram)
Aplicaciones de comunicación e interacción con los estudiantes (Telegram)
 
Finding self-organized criticality in collaborative work via repository mining
Finding self-organized criticality in collaborative work via repository miningFinding self-organized criticality in collaborative work via repository mining
Finding self-organized criticality in collaborative work via repository mining
 
Servidores web de altas prestaciones. Tema 7
Servidores web de altas prestaciones. Tema 7Servidores web de altas prestaciones. Tema 7
Servidores web de altas prestaciones. Tema 7
 
Servidores web de altas prestaciones. Tema 6
Servidores web de altas prestaciones. Tema 6Servidores web de altas prestaciones. Tema 6
Servidores web de altas prestaciones. Tema 6
 
Servidores web de altas prestaciones. Tema 5
Servidores web de altas prestaciones. Tema 5Servidores web de altas prestaciones. Tema 5
Servidores web de altas prestaciones. Tema 5
 
Servidores web de altas prestaciones. Tema 4
Servidores web de altas prestaciones. Tema 4Servidores web de altas prestaciones. Tema 4
Servidores web de altas prestaciones. Tema 4
 
Servidores web de altas prestaciones. Tema 3
Servidores web de altas prestaciones. Tema 3Servidores web de altas prestaciones. Tema 3
Servidores web de altas prestaciones. Tema 3
 
Servidores web de altas prestaciones. Tema 2
Servidores web de altas prestaciones. Tema 2Servidores web de altas prestaciones. Tema 2
Servidores web de altas prestaciones. Tema 2
 
Servidores web de altas prestaciones. Tema 1
Servidores web de altas prestaciones. Tema 1Servidores web de altas prestaciones. Tema 1
Servidores web de altas prestaciones. Tema 1
 
Servidores web de altas prestaciones. Tema 0. Presentación
Servidores web de altas prestaciones. Tema 0. PresentaciónServidores web de altas prestaciones. Tema 0. Presentación
Servidores web de altas prestaciones. Tema 0. Presentación
 
Herramientas tic en docencia (2016)
Herramientas tic en docencia (2016)Herramientas tic en docencia (2016)
Herramientas tic en docencia (2016)
 
Cloud Computing. Contenedores
Cloud Computing. ContenedoresCloud Computing. Contenedores
Cloud Computing. Contenedores
 
Cloud Computing. Gestión de configuraciones. Vagrant
Cloud Computing. Gestión de configuraciones. VagrantCloud Computing. Gestión de configuraciones. Vagrant
Cloud Computing. Gestión de configuraciones. Vagrant
 
Cloud Computing. Gestión de configuraciones. Ansible
Cloud Computing. Gestión de configuraciones. AnsibleCloud Computing. Gestión de configuraciones. Ansible
Cloud Computing. Gestión de configuraciones. Ansible
 
Cloud Computing. Gestión de configuraciones
Cloud Computing. Gestión de configuracionesCloud Computing. Gestión de configuraciones
Cloud Computing. Gestión de configuraciones
 
Cloud Computing. Virtualización. IBM Bluemix
Cloud Computing. Virtualización. IBM BluemixCloud Computing. Virtualización. IBM Bluemix
Cloud Computing. Virtualización. IBM Bluemix
 
Cloud Computing. Virtualización. Azure
Cloud Computing. Virtualización. AzureCloud Computing. Virtualización. Azure
Cloud Computing. Virtualización. Azure
 
Cloud Computing. Virtualización. qemu
Cloud Computing. Virtualización. qemuCloud Computing. Virtualización. qemu
Cloud Computing. Virtualización. qemu
 
Cloud Computing. Virtualización
Cloud Computing. VirtualizaciónCloud Computing. Virtualización
Cloud Computing. Virtualización
 
Cloud Computing. Presentación general
Cloud Computing. Presentación generalCloud Computing. Presentación general
Cloud Computing. Presentación general
 

Recently uploaded

New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 

Recently uploaded (20)

New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 

Iwann2011 gpus

  • 1. GPU Computation in Bioinspired Algorithms. A review M.G. Arenas, A.M. Mora, G. Romero, P.A. Castillo Depto. Arquitectura y Tecnología de Computadores
  • 2. GPU Computation in Bioinspired Algorithms. A review 1. Introduction • Growing interest in GPU computation • A GPU is able to perform graphics manipulation at high speed • Developers can write their own high-level programs to run on GPU • These architectures suited to run large computational problems (bioinformatics area)
  • 3. GPU Computation in Bioinspired Algorithms. A review 1. Introduction • GPUs can be seen as SIMD multi-core processors • Internally the GPU contains a number of small processors that are used to perform calculations • Depending on the GPU, the number of threads that can be executed in parallel is in the order of hundreds
  • 4. GPU Computation in Bioinspired Algorithms. A review Index 1. Introduction 2. Throughput, parallelism and GPUs 3. GPUs Programming 4. Bioinspired Methods on GPUs 5. Conclusions
  • 5. GPU Computation in Bioinspired Algorithms. A review 2. Throughput, parallelism and GPUs • For years, processor makers increased clock rates and instruction- level paralelism => sequential code run faster • Nowadays, they design multicore-chips => software adapted to multithreaded / multiprocess
  • 6. GPU Computation in Bioinspired Algorithms. A review 2. Throughput, parallelism and GPUs • GPUs have matured, becoming general purpose computational devices for highly parallel work-loads
  • 7. GPU Computation in Bioinspired Algorithms. A review Index 1. Introduction 2. Throughput, parallelism and GPUs 3. GPUs Programming 4. Bioinspired Methods on GPUs 5. Conclusions
  • 8. GPU Computation in Bioinspired Algorithms. A review 3. GPUs Programming. Programming Model • APIs based on C-like languages • nVidia => GeForce => CUDA • ATI => Radeon => Close to metal • Aple => OpenCL • Microsoft => DirectCompute
  • 9. GPU Computation in Bioinspired Algorithms. A review 3. GPUs Programming. Programming Model • OpenCL applications: • GPUs, multi-core CPUs, FPGAs • portable across different platforms • keep functionality and correctness
  • 10. GPU Computation in Bioinspired Algorithms. A review 3. GPUs Programming. Execution Model • Applications have serial portions and parallel portions (kernel) • A kernel applies a single stream of instructions to many data (SIMD)
  • 11. GPU Computation in Bioinspired Algorithms. A review 3. GPUs Programming. Execution Model • Terminology: – Each piece of data = work-item (thread) – A kernel has thousands of work-items – A kernel is organized into many work-groups (thread block) – Each work-group process many work-items
  • 12. GPU Computation in Bioinspired Algorithms. A review 3. GPUs Programming. Memory Model • Define how the data is stored and communicated between CPU and GPU • Global memory CPU->rw / work-items->rw • Constant memory CPU->rw / work-items->ro • Private memory CPU->X / single work-item->rw • Local memory CPU->X / work-group->rw
  • 13. GPU Computation in Bioinspired Algorithms. A review Index 1. Introduction 2. Throughput, parallelism and GPUs 3. GPUs Programming 4. Bioinspired Methods on GPUs 5. Conclusions
  • 14. GPU Computation in Bioinspired Algorithms. A review 4. Bioinspired Methods on GPUs • Review of different evolutionary computation approaches using GPU • Master-slave • Fine-grained • Island-model • ANN on GPUs
  • 15. GPU Computation in Bioinspired Algorithms. A review 4.1 Master-slave approaches: • Some actions are executed in the CPU (main loop) • Evaluation and mutation are run on GPU • Competition and selection are performed on the CPU, while mutation, reproduction and evaluation on the GPU CPU GPU
  • 16. GPU Computation in Bioinspired Algorithms. A review 4.1 Master-slave approaches References • Zhang, S., He, Z.: Implementation of parallel genetic algorithm based on cuda. In et al., Z.C., Lecture Notes in Computer Science, vol 5821. 2009 • Wong, M., Wong, T., Fok, K.: Parallel evolutionary algorithms on graphics processing unit. CEC 2005 • Harding, S., Banzhaf, W.: Fast genetic programming and artificial developmental systems on gpus. High Performance Computing Systems and Applications. 2007
  • 17. GPU Computation in Bioinspired Algorithms. A review 4.2 Fine-grained approaches: • The whole evolutionary process is run on the GPU • Each EA individual is set to each GPU processor • Store individuals and fitness in the GPU global memory • Problem: random number generation (on CPU)
  • 18. GPU Computation in Bioinspired Algorithms. A review 4.2 Fine-grained approaches References • Wong, M., Wong, T.: Parallel hybrid genetic algorithms on Consumer-Level graphics hardware. CEC 2006 • Wong, M., Wong, T.: Implementation of parallel genetic algorithms on graphics processing units. Studies in Computational Intelligence, vol 187, pp. 197–216. 2009 • Yu, Q., Chen, C., Pan, Z.: Parallel genetic algorithms on programmable graphics hardware. Lecture Notes in Computer Science, vol 3612, pp. 1051–1059. 2005 • Luo, Z., Liu, H.: Cellular genetic algorithms and local search for 3-SAT problem on graphic hardware. CEC 2006 • Li, J.,Wang, X., He, R., Chi, Z.: An efficient fine-grained parallel genetic algorithm based on GPU-Accelerated. Network and Parallel Computing Workshop. 2007 • Li, J., Zhang, L., Liu, L.: A parallel immune algorithm based on fine-grained model with gpu-acceleration. International Conference on Innovative Computing. 2009 • Vidal, P., Alba, E.: Cellular genetic algorithm on graphic processing units. NICSO 2010
  • 19. GPU Computation in Bioinspired Algorithms. A review 4.3 Coarse-grained approaches (island model): • Code an “island” (EA) on GPU • Generate the initial population on CPU and copy it to the GPU VRAM • Each subpopulation evolves in each GPU processor • At some generations, individuals in subpopulations are shuffled via the GPU VRAM
  • 20. GPU Computation in Bioinspired Algorithms. A review 4.3 Island-model approaches References • Pospichal, P., Jaros., J.: Gpu-based acceleration of the genetic algorithm. Technical report, GECOO competition (2009) • Tsutsui, S., Fujimoto, N.: Solving quadratic assignment problems by genetic algorithms with gpu computation: a case study. GECCO 2009 • Luong, T.V., Melab, N., Talbi, E.G.: GPU-based Island Model for Evolutionary Algorithms. GECCO 2010 • Pospichal, P., Jaros, J., Schwarz, J.: Parallel genetic algorithm on the cuda architecture. Lecture Notes in Computer Science, vol 6024. 2010 • Pospichal, P., Schwarz, J., Jaros, J.: Parallel genetic algorithm solving 0/1 knapsack problem running on the gpu. International Conference on Soft Computing 2010
  • 21. GPU Computation in Bioinspired Algorithms. A review 4.4 ANN approaches • Widely used in pattern recognition • Usually the computation for ANN is inherently parallel • However, many algorithms require some steps that are difficult to parallelize
  • 22. GPU Computation in Bioinspired Algorithms. A review 4.4 ANN approaches References • http://www.irontaco.com/Documents/MeuthNeuralGPGPUSurvey.pdf • Kyoung-Su Oh, Keechul Jung, GPU implementation of neural networks, Pattern Recognition, vol. 37, n.6, 2004 • Z.Luo, H. Liu and X.Wu, Artificial Neural Network Computation on Graphic Process Unit, IJCNN 2005 • M. Martínez-Zarzuela et al. Fuzzy ART Neural Network Parallel Computing on the GPU. IWANN 2007 Libraries: • http://www.codeproject.com/KB/graphics/GPUNN.aspx
  • 23. GPU Computation in Bioinspired Algorithms. A review Index 1. Introduction 2. Throughput, parallelism and GPUs 3. GPUs Programming 4. Bioinspired Methods on GPUs 5. Conclusions
  • 24. GPU Computation in Bioinspired Algorithms. A review 5. Conclusions • GPU computing approach • Overview current programming languages and software tools • Review the use of GPUs to implement bioinspired algorithms
  • 25. GPU Computation in Bioinspired Algorithms. A review 5. Conclusions • Most of the bioinspired methods use the GPU to speed-up the fitness evaluation • Competition and selection are performed on CPU • Fitness, mutation and reproduction are performed on GPU • Speed-ups up to several thousands times higher on GPU compared to CPU sequential versions
  • 26. GPU Computation in Bioinspired Algorithms. A review Thank you! pedro@atc.ugr.es http://atc.ugr.es/~pedro/research/gpu/