SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
Energy-aware scheduling in
heterogeneous computing systems

             Santiago Iturriaga

            TESIS DE MAESTR´
                           IA
                       ´
             EN INFORMATICA

           PEDECIBA INFORMATICA´
Instituto de Computaci´n, Facultad de Ingenier´
                       o                      ıa
           Universidad de la Rep´blica
                                u
              Montevideo, Uruguay




                                                   1 / 35
Outline

1   Introduction
2   Energy-aware Heterogeneous Computing Scheduling Problem
    (ME-HCSP)

3   Metaheuristic algorithms and multi-objective optimization problems

4   Previous approaches for solving the ME-HCSP

5   ME-MLS: a multi-objective metaheuristic for the ME-HCSP

6   Scheduling very large HCSP scenarios with gPALS

7   Conclusions and future work


                                                                         2 / 35
Introduction


Heterogeneous Computing (HC) systems
Distributed computing systems usually comprise a
large number of heterogeneous computing
resources which are able to work cooperatively,
e.g. cluster or grid computing systems.

Scheduling problem in computing systems
    Consists in efficiently assigning tasks to computing resources.
    Several criteria: execution time, quality of service, energy
    consumption, reliability, etc.
    Key problem in order to fully take advantage of the available
    computing capabilities.


                                                                    3 / 35
Introduction


Motivation
    Energy consumption in HC systems has increased considerably.
    Large HC systems providers are concerned by energy consumption.

Energy-aware Heterogeneous Computing Scheduling Problem
(ME-HCSP)
    Goals: simultaneously minimize the schedule length (i.e. makespan)
    and the energy consumption of the system.
    The heterogeneity and the non-preemptive characteristics of the
    system increases the complexity of the scheduling problem.
    NP-hard problem, hence usually heuristics or metaheuristics are
    considered for solving it.


                                                                      4 / 35
Introduction


Contributions
    First, this work presents the ME-MLS algorithm: a fast
    Multithreading Local Search (MLS) method to efficiently solve the
    ME-HCSP in reduced execution time.
    Instances comprised of up to 2048 tasks and 64 machines were
    tackled using ME-MLS.
    Ongoing work is being done for tackling larger problem instances.
    Regarding this line of ongoing work, it is presented the gPALS
    algorithm: a CPU/GPU hybrid algorithm for tackling the HCSP
    which considers makespan as it sole objective function.
    Instances with up to 32768 tasks and 1024 machines were tackled
    using gPALS.


                                                                        5 / 35
Energy-aware Heterogeneous Computing Scheduling
Problem (ME-HCSP)

Problem formulation
    An HC system is composed of a set of heterogeneous machines
    P = {m1 , . . . , mM }.
    A collection of heterogeneous tasks T = {t1 , . . . , tN } to be executed.
    An execution time function ET : T × P → R+ , where ET (ti , mj ) is
    the execution time of task ti on machine mj .
    An energy consumption function EC : T × P → R+ , where
    EC (ti , mj ) is the energy required to execute task ti on machine mj .
    An idle energy consumption function ECidle : P → R+ , being
    ECidle (mj ) the energy that machine mj consumes per time unit when
    it is in idle state.
    A scheduling function f : T → P, which states that task ti is to be
    executed by machine mj only if f (ti ) = mj .
                                                                           6 / 35
Energy-aware Heterogeneous Computing Scheduling
Problem (ME-HCSP)

Problem goal
The ME-HCSP aims at finding the scheduling function f that
simultaneously minimizes the makespan (Cmax ) and the total energy
consumption (E ).

               Cmax = max Cj , with Cj =                ET (ti , mj )
                       mj ∈P
                                              ti ∈T :
                                           f (ti )=mj


     E = consumption in working state + consumption in idle state
                                                                
                                                                
          =    EC (ti , f (ti )) +    (Cmax − Cj ) × ECidle (mj )
                                                                
               ti ∈T              mj ∈P



                                                                        7 / 35
Energy-aware Heterogeneous Computing Scheduling
Problem (ME-HCSP)

Problem characteristics
    Offline: assumes complete knowledge of the tasks to be scheduled.
    Clairvoyant: the complete job characteristics are available as inputs to
    the scheduling algorithm.
    Independent tasks: no dependency constraints between tasks.
    Non-preemptive: every task is atomic, and cannot be interrupted once
    it begins its execution.
    Unrelated machines model: no relationship between the execution
    time of a task and its executing machine.
    Reduced scheduling time is mandatory: a very important feature of
    every scheduler in practice.


                                                                         8 / 35
Metaheuristic algorithms

What is a metaheuristic algorithm?
A metaheuristic algorithm is an iterative top-level
stochastic search technique which guides a subordinate
heuristic, exploring and exploiting the problem search
space, in order to find near-optimal solutions to hard
problems.

Local Search (LS) algorithm
Local search algorithms are metaheuristic methods which work by
improving one or more candidate solutions by exploring a reduced
neighborhood (N ) of nearby solutions.




                                                                   9 / 35
Multi-objective optimization problems (MOP)

General formulation of a MOP
Optimization problems have two or more conflicting objectives that are to
be optimized simultaneously.

                     optimize F (x) = (f1 (x), ..., fn (x))
                         with x ∈ S

In the most general case all objectives are equally important. The solution
to a MOP is a set of trade-off solutions which define a Pareto front (PF).

Goals when solving a MOP
    Compute accurate solutions for every objective function.
    Maintain diversity in the computed solutions.


                                                                        10 / 35
Multi-objective optimization problems (MOP)

MOP performance metrics
   Evaluating the results computed by a method for solving a MOP is
   not an easy task.
   Several performance metrics have been proposed.
   Metrics can be classified according to whether they are
   convergence-based metrics, diversity-based metrics, or hybrid metrics.




     IGD metric             Spread metric          Hypervolume metric
  (convergence-based)       (diversity-based)             (hybrid)
                                                                      11 / 35
Previous approaches for solving the ME-HCSP

Single- vs multi-objective approaches
    The energy-aware HCSP is a multi-objective optimization problem.
    Most related work simplifies the problem solving a Single-objective
    Optimization Problem (SOP) (19 out of 23 of the related works).
    Solving a MOP demands significantly more computational effort than
    solving a SOP.

Dimension of the offline problem instances tackled
    Well-known classic offline HCSP instances scenarios with 512 tasks
    and 16 machines.
    Most of the related work tackles instances with less than 1000 tasks
    and 32 machines (even the ones using a SOP approach).
    The maximum instance dimension tackled in the related work is
    comprised of up 4096 tasks and 256 machines (Kolodziej et al., 2011).

                                                                         12 / 35
ME-MLS: a MO metaheuristic for the ME-HCSP


Characteristics
    Size-bounded population of candidate solutions.
    Fully multi-objective Pareto-based approach.
    Makes use of two subordinate heuristics:
         A randomized MCT to initialize its population.
         A randomized PALS as its local search method.
    Parallel algorithm design
         Multiple concurrent LS are applied to schedules in the population in
         order to improve them.
         There is no hierarchy, all concurrent LS are peers.
    Shared-memory multithreading implementation using C and POSIX
    threads.



                                                                            13 / 35
ME-MLS: a MO metaheuristic for the ME-HCSP

Logic of each thread in the ME-MLS algorithm
 1   Randomly select a schedule from the
     population.
 2   The selected schedule is cloned.
 3   A randomized number of LS are applied
     to the cloned schedule.
 4   Try to lock the population.
          If the population is successfully
          locked then executes the archiving
          algorithm.
          Else return to step 3.
 5   Return to first step (or end the
     algorithm).


                                               14 / 35
ME-MLS: a MO metaheuristic for the ME-HCSP
Population initialization
    Sensitive issue in the design of a metaheuristic algorithm.
    A randomized version of the well-known MCT heuristic is proposed.
    The randomized MCT (rMCT) has a complexity order of O(n2 ).

In-memory schedule encoding
    Two well-known structures are proposed in the related literature.
    ME-MLS uses a multi-structure comprising both encodings.




                                                                        15 / 35
ME-MLS: a MO metaheuristic for the ME-HCSP

Fast Greedy Ad-hoc Archiving (FGAA) algorithm
    Simple method with strong emphasis on computational efficiency.
    Not especially conceived to maintain high diversity in the population.

Adaptive Grid Archiving (AGA) by Knowles and Corne (2000)
   Divides the objective space into
   hypercubes (multi-dimensional grid).
   Solutions are discarded according to
   how crowded their hypercube is.
   Guarantees three desirable properties:
        Maintains solutions at the extremes
        Maintains solutions in all of the
        Pareto occupied regions
        Distributes the remaining solutions
        evenly among the Pareto regions.
                                                                       16 / 35
ME-MLS: a MO metaheuristic for the ME-HCSP

Local search algorithm
     PALS is an efficient local search proposed by Alba and Luque (2007).
     A randomized PALS for the ME-HCSP (ME-rPALS) is proposed.

Logic of the ME-rPALS algorithm
 1   A target metric is randomly selected.
 2   Randomly selects a machine m to perform the search.
         With high probability, the one with the worst local metric is selected.
 3   Then, a random number of tasks currently assigned to be executed by
     the machine m are selected.
 4   Some perturbations are evaluated on the selected tasks: moving tasks
     to other machines, and swapping tasks with other tasks.
 5   The move or swap which improves the most the schedule is applied.

                                                                              17 / 35
Experimental analysis of ME-MLS


Experimental platform
    All the experiments were performed in a 24-core server with AMD
    Opteron 6172 processors at 2.1GHz and 24 GB of RAM.
    Hosted as part of the HPC facility, Cluster FING, of the Facultad de
    Ingenier´ Universidad de la Rep´blica.
            ıa,                      u

Test instances
    A total of 792 instances where generated for the ME-HCSP.
    Dimensions (#tasks×#machines): 512×16, 1024×32, and 2048×64.
    The task workloads were generated following the ETC model by Ali
    et al. (2000), and the machine scenarios using the methodology
    proposed by Nesmachnow et al. (2012a).


                                                                      18 / 35
Experimental analysis of ME-MLS

Lower bounds computed using a Linear Programming (LP) relaxation
    Lower Bounds (LB) from a preemptive ME-HCSP relaxation.
    Two LP relaxations: makespan and energy consumption.
    The relative integrality gap (rgap) is reported.

MinMin-based list-scheduling heuristics
    MinMin is a well-known accurate heuristic for the HCSP.
    Works in two-phases.
    Four versions are generated by alternating the minimization objective
        MinMin: makespan on both phases.
        MINMIN: energy on both phases.
        MinMIN: makespan on the first phase and energy on the second.
        MINMin: energy on the first phase and makespan on the second.


                                                                       19 / 35
Experimental analysis of ME-MLS

Parameter configuration analysis
    Performed on a subset of four of the small instances.
    ME-MLS best configuration: 24 threads, population of 34 individuals.
    Stopping criterion of 10 s. Significantly shorter than the execution
    time of the metaheuristics in the related work (40-90 s.).

Pseudo-Random Number Generator (PRNG) analysis
    Significant time-consuming function in metaheuristic methods.
    Three PRNG were evaluated for the ME-MLS: rand r, drand48 r,
    Mersenne Twister (MT).
    ME-MLS using MT was able to execute 3.5× faster than drand48 r,
    and 9.5× faster than rand r.
    Henceforth, the MT function is used as PRNG.

                                                                          20 / 35
Experimental analysis of ME-MLS
Average improvement over the best MinMin-based heuristic and the LB
rgap after 30 independent executions:
                             makespan                     energy
  dim.    cons.       average          rgap       average        rgap
                    AGA FGAA         AGA FGAA    AGA FGAA      AGA FGAA
         cons.      7.2%     7.1%   4.1% 4.2%   4.8% 4.7% 4.6% 4.6%
 512×16  semi.     10.8% 10.7%      4.4% 4.6%   6.1% 6.0% 4.1% 4.1%
        incons.    12.9% 12.9%      4.0% 4.1%   6.8% 6.7% 3.7% 3.7%
          avg.    10.3% 10.2%       4.2% 4.3%   5.9% 5.8% 4.1% 4.2%
         cons.      6.8%     6.8%   4.9% 5.0%   6.6% 6.7% 5.3% 5.2%
1024×32 semi.      10.9% 10.8%      7.7% 7.8%   4.6% 4.3% 6.2% 6.5%
        incons.    15.9% 15.8%      6.6% 6.7%   8.0% 7.9% 5.9% 6.0%
          avg.    11.2% 11.1%       6.4% 6.5%   6.4% 6.3% 5.8% 5.9%
         cons.      4.1%     5.2%   7.7% 6.4%   6.9% 8.0% 7.4% 6.1%
2048×64 semi.       7.9%     8.3% 12.0% 11.4%   4.8% 4.7% 8.4% 8.5%
        incons.    16.8% 16.7% 10.9% 11.1%      8.0% 7.8% 8.5% 8.7%
          avg.     9.6% 10.1% 10.2% 10.1%       6.6% 6.8% 8.1% 7.8%
                                                                    21 / 35
Experimental analysis of ME-MLS

Multi-objective optimization metrics for the Pareto front approximations
computed by each algorithm (for the 264 instances each dimension):


                         ND                        IGD (normalized)
dimension
               AGA      FGAA bestAGA/FGAA      AGA      FGAA bestAGA/FGAA
 512×16     4.70±2.23 3.10±0.87 110/16      1.00±0.08 1.20±0.13     67/24
 1024×32    6.70±3.20 3.57±0.92     173/5   1.00±0.26 1.62±0.21 150/18
 2048×64    7.35±2.90 3.95±0.99     193/9   1.00±0.27 1.71±0.27 173/19
                  Spread (normalized)                   RHV
dimension
               AGA      FGAA bestAGA/FGAA      AGA      FGAA bestAGA/FGAA
 512×16     1.00±0.09 1.04±0.06     65/30   0.83±0.05 0.81±0.05     55/21
 1024×32    1.00±0.10 1.13±0.09 124/35      0.82±0.06 0.76±0.05 130/29
 2048×64    1.00±0.09 1.25±0.16 148/30      0.81±0.05 0.75±0.06 146/36




                                                                       22 / 35
Experimental analysis of ME-MLS
Sample Pareto front computed after 30 executions when solving an
instance with dimension 1024x32 with a stopping criterion of 10 seconds:




                                                                      23 / 35
Experimental analysis of ME-MLS
Speedup analysis
    Performed using 1024×32 instances with a stopping criterion of 6
    million iterations.
    The analysis shows a speedup of 22.4 for ME-MLSAGA and 20.2 for
    ME-MLSFGAA , both using 24 threads.




                                                                       24 / 35
Scheduling very large HCSP scenarios with gPALS
Motivation
    Heterogeneous computing systems have not stopped growing in size.
    Profit from the computing power of the massively-parallel GPU device.
    Profit from the proven efficacy and efficiency of the PALS-based LS.

Goal
    Tackle very large instances in a few seconds.
    Design an efficient PALS-based local search for the GPU.
    Solve the HCSP, considering the schedule length as objective function.

gPALS design
    gPALS is a hybrid CPU/GPU rPALS-based local search.
    The search is guided by a high-level schema executed on the CPU.
    The neighborhood evaluation is massively performed on the GPU.
                                                                       25 / 35
Scheduling very large HCSP scenarios with gPALS



gPALS high-level schema
 1: s ← GenerateInitialSolution()
 2: while stopping condition not met do
 3:   M ← Massively parallel neighborhood
       evaluation applied to s in the GPU
 4:    s ← Apply the best movement from M
 5:    s ← Apply the rest of the movements
       in M in random order
 6: end while
 7: return s




                                                  26 / 35
Scheduling very large HCSP scenarios with gPALS


In-memory schedule encoding
     The task-oriented encoding is used.
     The machine-oriented encoding is discarded because memory
     footprint concerns.

Initialization heuristics
     Two heuristics were evaluated: MCT and pMinMin/DD.
     pMinMin/DD by Canab´ and Nesmachnow (2012) is a parallel
                            e
     MinMin heuristic with domain decomposition.
     It improves the efficiency of the MinMin heuristic sacrificing efficacy.




                                                                      27 / 35
Experimental analysis of gPALS


Experimental platform
    Bull B505 server with a 12-core Intel Xeon CPU L5640 at 2.27GHz,
    24 GB RAM, and a NVIDIA Tesla M2090 GPU device.
    Hosted in the HPC facility, Gaia, of the University of Luxembourg.
    Mersenne Twister for Graphic Processors (MTGP) library is used.

Test instances
    Generated using the ETC model by Ali et al. (2000).
    High heterogeneity in both task and machines.
    With dimensions: 8192×256, 16384×512, and 32768×1024.
    60 different problem instances (20 for each dimension).



                                                                         28 / 35
Experimental analysis of gPALS
Numerical efficiency analysis
    Stopping criterion: 30 seconds PALS execution time.
    Method for baseline comparison: MinMin.




                                                          29 / 35
Experimental analysis of gPALS
Parallel performance analysis
    Stopping criterion: fixed solution quality.
    Method for baseline comparison: MinMin.




                                                 30 / 35
Comparison against the cEA by Pinel et al. (2013)
Comparison of the average makespan improvement over MinMin:

                              avg. makespan improvement
      dimension                      (over MinMin)
                        gPALSMCT      gPALSMMDD     cellular EA
      8192×256        1.37%±0.83% 7.72%±0.73% 6.75%±0.73%
      16384×512       2.13%±0.53% 7.91%±0.49% 6.05%±0.57%
     32768×1024       3.24%±0.30% 8.18%±0.32% 5.19%±0.34%

Average execution time comparison:

                                avg. execution time (s)
         dimension
                         gPALSMCT gPALSMMDD        cellular EA
           8192×256       38.7±0.6      39.3±0.6 1630.3±5.6
          16384×512       40.7±0.6      47.4±0.6 4382.3±16.4
         32768×1024       49.6±0.7     136.3±7.1 8088.3±58.3

                                                                  31 / 35
Conclusions and future work


Summary and contributions
    The scheduling problem in HC environments was studied.
        The schedule length time and energy consumption were considered.
        Efficient schedulers were designed.
    Two LP relaxation formulation and four Min-Min based heuristics
    were presented, considering both ME-HCSP objectives.
    Proposed ME-MLS: a multithreading local search method to
    efficiently solve the ME-HCSP in reduced execution time.
        Two different archiving algorithms were compared.
    Proposed gPALS: a massively parallel CPU/GPU hybrid local search
    for tackling very large HCSP instances.
        Two different initialization algorithms were compared.



                                                                           32 / 35
Conclusions and future work

Experimental analysis conclusions
    Both presented algorithms are able to compute accurate schedules in
    reduced execution times.
    Regarding ME-MLS experimental analysis:
        Average improvements of 10% for the makespan and 6% for the
        energy consumption in 10 s. execution time for the ME-HCSP.
        ME-MLSAGA offers a better overall performance than ME-MLSFGAA .
        Instances of up to 2048×64 where tackled.
    Regarding gPALS experimental analysis:
        Achieved average makespan improvements of up to 8% over the
        MinMin heuristic in 30 s. execution time.
        Average acceleration of up to 51× when compared to MinMin.
        Faster and more accurate than cEA by Pinel et al. (2013).
        Instances of up to 32768×1024 where tackled.


                                                                      33 / 35
Conclusions and future work


Future work
    Improve the efficacy and efficiency of the proposed algorithms.
    Regarding the ME-MLS:
        Improve the Pareto-front analysis: compare the results with the ones
        computed by well-known MOEA.
        Integrate the proposed algorithm into well-known MOEA.
    Regarding the gPALS:
        Improve the initialization heuristics: use the GPU for the initialization
        heuristic.
        Design ME-gMLS: a CPU/GPU local search algorithm for the
        ME-HCSP.
    Tackle an online version of the ME-HCSP considering multi-core
    computing resources.


                                                                               34 / 35
Thanks for your attention

Journal publications issued from this work:
   – S. Iturriaga, S. Nesmachnow, B. Dorronsoro, P. Bouvry. Energy efficient scheduling in heterogeneous
     systems with a parallel multiobjective local search. Computing and Informatics Journal 32(2), 2013.
   – S. Iturriaga, S. Nesmachnow, F. Luna, E. Alba. A parallel local search in CPU/GPU for scheduling
     independent tasks on large heterogeneous computing systems. Journal of Parallel and Distributed
     Computing, submitted January 2013.

Conference publications issued from this work:
   – S. Iturriaga, S. Nesmachnow, B. Dorronsoro. A multithreading local search for multiobjective
     energy-aware scheduling in heterogeneous computing systems. Proc. of 26th European Conf. on
     Modelling and Simulation, pp. 497–503, Koblenz, Germany, 2012.
   – S. Iturriaga, S. Nesmachnow, F. Luna, E. Alba. A parallel online GPU scheduler for large
     heterogeneous computing systems. Proc. of the 5th High-Performance Computing Latin America
     Symposium, Buenos Aires, Argentina, 2012.
   – S. Iturriaga, S. Nesmachnow, C. Tutt´. Metaheuristics for multiobjective energy-aware scheduling in
                                         e
     heterogeneous computing systems. EU/ME Meeting Workshop, Copenhaguen, Denmark, 2012.
   – S. Iturriaga, P. Ruiz, S. Nesmachnow, B. Dorronsoro, P. Bouvry. A Parallel Multi-objective Local
     Search for AEDB Protocol Tuning. Proc. of the 16th Int. Workshop on Nature Inspired Distributed
     Computing, 27th IEEE/ACM Int. Parallel & Distributed Processing Symposium, Boston, MA, USA,
     accepted on February 2013.

Resources of this thesis are available at:
http://www.fing.edu.uy/~siturria/msc_thesis.html




                                                                                                      35 / 35

Más contenido relacionado

La actualidad más candente

HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...
HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...
HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...Sunny Kr
 
Global analysis of nonlinear dynamics
Global analysis of nonlinear dynamicsGlobal analysis of nonlinear dynamics
Global analysis of nonlinear dynamicsSpringer
 
An empirical assessment of different kernel functions on the performance of s...
An empirical assessment of different kernel functions on the performance of s...An empirical assessment of different kernel functions on the performance of s...
An empirical assessment of different kernel functions on the performance of s...riyaniaes
 
IRJET - Distributed Arithmetic Method for Complex Multiplication
IRJET -  	  Distributed Arithmetic Method for Complex MultiplicationIRJET -  	  Distributed Arithmetic Method for Complex Multiplication
IRJET - Distributed Arithmetic Method for Complex MultiplicationIRJET Journal
 
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...mabualsh
 
Parallel Application Performance Prediction of Using Analysis Based Modeling
Parallel Application Performance Prediction of Using Analysis Based ModelingParallel Application Performance Prediction of Using Analysis Based Modeling
Parallel Application Performance Prediction of Using Analysis Based ModelingJason Liu
 
Minimization of Assignment Problems
Minimization of Assignment ProblemsMinimization of Assignment Problems
Minimization of Assignment Problemsijtsrd
 
Partial Differential Equations (PDE’s) Industrial Modeling Framework (PDE-IMF)
Partial Differential Equations (PDE’s)  Industrial Modeling Framework (PDE-IMF)Partial Differential Equations (PDE’s)  Industrial Modeling Framework (PDE-IMF)
Partial Differential Equations (PDE’s) Industrial Modeling Framework (PDE-IMF)Alkis Vazacopoulos
 
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018Codemotion
 
Comparisional Investigation of Load Dispatch Solutions with TLBO
Comparisional Investigation of Load Dispatch Solutions with TLBO Comparisional Investigation of Load Dispatch Solutions with TLBO
Comparisional Investigation of Load Dispatch Solutions with TLBO IJECEIAES
 
20 bayes learning
20 bayes learning20 bayes learning
20 bayes learningTianlu Wang
 
Design of optimized Interval Arithmetic Multiplier
Design of optimized Interval Arithmetic MultiplierDesign of optimized Interval Arithmetic Multiplier
Design of optimized Interval Arithmetic MultiplierVLSICS Design
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...inventionjournals
 
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment Problem
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment ProblemIRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment Problem
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment ProblemIRJET Journal
 
Machine Learning and Statistical Analysis
Machine Learning and Statistical AnalysisMachine Learning and Statistical Analysis
Machine Learning and Statistical Analysisbutest
 

La actualidad más candente (16)

HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...
HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...
HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardin...
 
Global analysis of nonlinear dynamics
Global analysis of nonlinear dynamicsGlobal analysis of nonlinear dynamics
Global analysis of nonlinear dynamics
 
An empirical assessment of different kernel functions on the performance of s...
An empirical assessment of different kernel functions on the performance of s...An empirical assessment of different kernel functions on the performance of s...
An empirical assessment of different kernel functions on the performance of s...
 
IRJET - Distributed Arithmetic Method for Complex Multiplication
IRJET -  	  Distributed Arithmetic Method for Complex MultiplicationIRJET -  	  Distributed Arithmetic Method for Complex Multiplication
IRJET - Distributed Arithmetic Method for Complex Multiplication
 
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...
Applications of Markov Decision Processes (MDPs) in the Internet of Things (I...
 
Parallel Application Performance Prediction of Using Analysis Based Modeling
Parallel Application Performance Prediction of Using Analysis Based ModelingParallel Application Performance Prediction of Using Analysis Based Modeling
Parallel Application Performance Prediction of Using Analysis Based Modeling
 
Minimization of Assignment Problems
Minimization of Assignment ProblemsMinimization of Assignment Problems
Minimization of Assignment Problems
 
Partial Differential Equations (PDE’s) Industrial Modeling Framework (PDE-IMF)
Partial Differential Equations (PDE’s)  Industrial Modeling Framework (PDE-IMF)Partial Differential Equations (PDE’s)  Industrial Modeling Framework (PDE-IMF)
Partial Differential Equations (PDE’s) Industrial Modeling Framework (PDE-IMF)
 
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018
And Then There Are Algorithms - Danilo Poccia - Codemotion Rome 2018
 
Comparisional Investigation of Load Dispatch Solutions with TLBO
Comparisional Investigation of Load Dispatch Solutions with TLBO Comparisional Investigation of Load Dispatch Solutions with TLBO
Comparisional Investigation of Load Dispatch Solutions with TLBO
 
20 bayes learning
20 bayes learning20 bayes learning
20 bayes learning
 
Design of optimized Interval Arithmetic Multiplier
Design of optimized Interval Arithmetic MultiplierDesign of optimized Interval Arithmetic Multiplier
Design of optimized Interval Arithmetic Multiplier
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
 
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment Problem
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment ProblemIRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment Problem
IRJET- Comparison for Max-Flow Min-Cut Algorithms for Optimal Assignment Problem
 
Machine Learning and Statistical Analysis
Machine Learning and Statistical AnalysisMachine Learning and Statistical Analysis
Machine Learning and Statistical Analysis
 

Destacado

Hybrid Map Task Scheduling for GPU-based Heterogeneous Clusters
Hybrid Map Task Scheduling for GPU-based Heterogeneous ClustersHybrid Map Task Scheduling for GPU-based Heterogeneous Clusters
Hybrid Map Task Scheduling for GPU-based Heterogeneous ClustersKoichi Shirahata
 
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...AMD Developer Central
 
A Survey on Resource Allocation & Monitoring in Cloud Computing
A Survey on Resource Allocation & Monitoring in Cloud ComputingA Survey on Resource Allocation & Monitoring in Cloud Computing
A Survey on Resource Allocation & Monitoring in Cloud ComputingMohd Hairey
 
EYE GAZE COMMUNICATION by njn
EYE GAZE COMMUNICATION by njnEYE GAZE COMMUNICATION by njn
EYE GAZE COMMUNICATION by njnNijin Nijin
 

Destacado (7)

Hybrid Map Task Scheduling for GPU-based Heterogeneous Clusters
Hybrid Map Task Scheduling for GPU-based Heterogeneous ClustersHybrid Map Task Scheduling for GPU-based Heterogeneous Clusters
Hybrid Map Task Scheduling for GPU-based Heterogeneous Clusters
 
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...
IS-4011, Accelerating Analytics on HADOOP using OpenCL, by Zubin Dowlaty and ...
 
A Survey on Resource Allocation & Monitoring in Cloud Computing
A Survey on Resource Allocation & Monitoring in Cloud ComputingA Survey on Resource Allocation & Monitoring in Cloud Computing
A Survey on Resource Allocation & Monitoring in Cloud Computing
 
Eye gaze communication
Eye gaze communicationEye gaze communication
Eye gaze communication
 
Eye gaze2
Eye gaze2Eye gaze2
Eye gaze2
 
Eye gaze communication
Eye gaze communicationEye gaze communication
Eye gaze communication
 
EYE GAZE COMMUNICATION by njn
EYE GAZE COMMUNICATION by njnEYE GAZE COMMUNICATION by njn
EYE GAZE COMMUNICATION by njn
 

Similar a Tesis-Maestria-Presentacion-SIturriaga

FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETScsandit
 
Multi objective predictive control a solution using metaheuristics
Multi objective predictive control  a solution using metaheuristicsMulti objective predictive control  a solution using metaheuristics
Multi objective predictive control a solution using metaheuristicsijcsit
 
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...ijcseit
 
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...ijcsit
 
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...AIRCC Publishing Corporation
 
Meta-learning of exploration-exploitation strategies in reinforcement learning
Meta-learning of exploration-exploitation strategies in reinforcement learningMeta-learning of exploration-exploitation strategies in reinforcement learning
Meta-learning of exploration-exploitation strategies in reinforcement learningUniversité de Liège (ULg)
 
Learning for exploration-exploitation in reinforcement learning. The dusk of ...
Learning for exploration-exploitation in reinforcement learning. The dusk of ...Learning for exploration-exploitation in reinforcement learning. The dusk of ...
Learning for exploration-exploitation in reinforcement learning. The dusk of ...Université de Liège (ULg)
 
CHN and Swap Heuristic to Solve the Maximum Independent Set Problem
CHN and Swap Heuristic to Solve the Maximum Independent Set ProblemCHN and Swap Heuristic to Solve the Maximum Independent Set Problem
CHN and Swap Heuristic to Solve the Maximum Independent Set ProblemIJECEIAES
 
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...Varad Meru
 
Firefly exact MCMC for Big Data
Firefly exact MCMC for Big DataFirefly exact MCMC for Big Data
Firefly exact MCMC for Big DataGianvito Siciliano
 
Industrial project and machine scheduling with Constraint Programming
Industrial project and machine scheduling with Constraint ProgrammingIndustrial project and machine scheduling with Constraint Programming
Industrial project and machine scheduling with Constraint ProgrammingPhilippe Laborie
 
Duality Theory in Multi Objective Linear Programming Problems
Duality Theory in Multi Objective Linear Programming ProblemsDuality Theory in Multi Objective Linear Programming Problems
Duality Theory in Multi Objective Linear Programming Problemstheijes
 
A0311010106
A0311010106A0311010106
A0311010106theijes
 
HyperPrompt:Prompt-based Task-Conditioning of Transformerspdf
HyperPrompt:Prompt-based Task-Conditioning of TransformerspdfHyperPrompt:Prompt-based Task-Conditioning of Transformerspdf
HyperPrompt:Prompt-based Task-Conditioning of TransformerspdfPo-Chuan Chen
 
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...AIRCC Publishing Corporation
 
Information and network security 35 the chinese remainder theorem
Information and network security 35 the chinese remainder theoremInformation and network security 35 the chinese remainder theorem
Information and network security 35 the chinese remainder theoremVaibhav Khanna
 
A review of automatic differentiationand its efficient implementation
A review of automatic differentiationand its efficient implementationA review of automatic differentiationand its efficient implementation
A review of automatic differentiationand its efficient implementationssuserfa7e73
 
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...cscpconf
 

Similar a Tesis-Maestria-Presentacion-SIturriaga (20)

FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
 
Genetic Algorithms
Genetic AlgorithmsGenetic Algorithms
Genetic Algorithms
 
Multi objective predictive control a solution using metaheuristics
Multi objective predictive control  a solution using metaheuristicsMulti objective predictive control  a solution using metaheuristics
Multi objective predictive control a solution using metaheuristics
 
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...
MULTI-OBJECTIVE ENERGY EFFICIENT OPTIMIZATION ALGORITHM FOR COVERAGE CONTROL ...
 
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
 
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
 
Meta-learning of exploration-exploitation strategies in reinforcement learning
Meta-learning of exploration-exploitation strategies in reinforcement learningMeta-learning of exploration-exploitation strategies in reinforcement learning
Meta-learning of exploration-exploitation strategies in reinforcement learning
 
Learning for exploration-exploitation in reinforcement learning. The dusk of ...
Learning for exploration-exploitation in reinforcement learning. The dusk of ...Learning for exploration-exploitation in reinforcement learning. The dusk of ...
Learning for exploration-exploitation in reinforcement learning. The dusk of ...
 
CHN and Swap Heuristic to Solve the Maximum Independent Set Problem
CHN and Swap Heuristic to Solve the Maximum Independent Set ProblemCHN and Swap Heuristic to Solve the Maximum Independent Set Problem
CHN and Swap Heuristic to Solve the Maximum Independent Set Problem
 
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...
Subproblem-Tree Calibration: A Unified Approach to Max-Product Message Passin...
 
Firefly exact MCMC for Big Data
Firefly exact MCMC for Big DataFirefly exact MCMC for Big Data
Firefly exact MCMC for Big Data
 
Industrial project and machine scheduling with Constraint Programming
Industrial project and machine scheduling with Constraint ProgrammingIndustrial project and machine scheduling with Constraint Programming
Industrial project and machine scheduling with Constraint Programming
 
Duality Theory in Multi Objective Linear Programming Problems
Duality Theory in Multi Objective Linear Programming ProblemsDuality Theory in Multi Objective Linear Programming Problems
Duality Theory in Multi Objective Linear Programming Problems
 
A0311010106
A0311010106A0311010106
A0311010106
 
HyperPrompt:Prompt-based Task-Conditioning of Transformerspdf
HyperPrompt:Prompt-based Task-Conditioning of TransformerspdfHyperPrompt:Prompt-based Task-Conditioning of Transformerspdf
HyperPrompt:Prompt-based Task-Conditioning of Transformerspdf
 
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...
 
Information and network security 35 the chinese remainder theorem
Information and network security 35 the chinese remainder theoremInformation and network security 35 the chinese remainder theorem
Information and network security 35 the chinese remainder theorem
 
M017419499
M017419499M017419499
M017419499
 
A review of automatic differentiationand its efficient implementation
A review of automatic differentiationand its efficient implementationA review of automatic differentiationand its efficient implementation
A review of automatic differentiationand its efficient implementation
 
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...
A SIMPLE PROCESS TO SPEED UP MACHINE LEARNING METHODS: APPLICATION TO HIDDEN ...
 

Último

Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 

Último (20)

Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 

Tesis-Maestria-Presentacion-SIturriaga

  • 1. Energy-aware scheduling in heterogeneous computing systems Santiago Iturriaga TESIS DE MAESTR´ IA ´ EN INFORMATICA PEDECIBA INFORMATICA´ Instituto de Computaci´n, Facultad de Ingenier´ o ıa Universidad de la Rep´blica u Montevideo, Uruguay 1 / 35
  • 2. Outline 1 Introduction 2 Energy-aware Heterogeneous Computing Scheduling Problem (ME-HCSP) 3 Metaheuristic algorithms and multi-objective optimization problems 4 Previous approaches for solving the ME-HCSP 5 ME-MLS: a multi-objective metaheuristic for the ME-HCSP 6 Scheduling very large HCSP scenarios with gPALS 7 Conclusions and future work 2 / 35
  • 3. Introduction Heterogeneous Computing (HC) systems Distributed computing systems usually comprise a large number of heterogeneous computing resources which are able to work cooperatively, e.g. cluster or grid computing systems. Scheduling problem in computing systems Consists in efficiently assigning tasks to computing resources. Several criteria: execution time, quality of service, energy consumption, reliability, etc. Key problem in order to fully take advantage of the available computing capabilities. 3 / 35
  • 4. Introduction Motivation Energy consumption in HC systems has increased considerably. Large HC systems providers are concerned by energy consumption. Energy-aware Heterogeneous Computing Scheduling Problem (ME-HCSP) Goals: simultaneously minimize the schedule length (i.e. makespan) and the energy consumption of the system. The heterogeneity and the non-preemptive characteristics of the system increases the complexity of the scheduling problem. NP-hard problem, hence usually heuristics or metaheuristics are considered for solving it. 4 / 35
  • 5. Introduction Contributions First, this work presents the ME-MLS algorithm: a fast Multithreading Local Search (MLS) method to efficiently solve the ME-HCSP in reduced execution time. Instances comprised of up to 2048 tasks and 64 machines were tackled using ME-MLS. Ongoing work is being done for tackling larger problem instances. Regarding this line of ongoing work, it is presented the gPALS algorithm: a CPU/GPU hybrid algorithm for tackling the HCSP which considers makespan as it sole objective function. Instances with up to 32768 tasks and 1024 machines were tackled using gPALS. 5 / 35
  • 6. Energy-aware Heterogeneous Computing Scheduling Problem (ME-HCSP) Problem formulation An HC system is composed of a set of heterogeneous machines P = {m1 , . . . , mM }. A collection of heterogeneous tasks T = {t1 , . . . , tN } to be executed. An execution time function ET : T × P → R+ , where ET (ti , mj ) is the execution time of task ti on machine mj . An energy consumption function EC : T × P → R+ , where EC (ti , mj ) is the energy required to execute task ti on machine mj . An idle energy consumption function ECidle : P → R+ , being ECidle (mj ) the energy that machine mj consumes per time unit when it is in idle state. A scheduling function f : T → P, which states that task ti is to be executed by machine mj only if f (ti ) = mj . 6 / 35
  • 7. Energy-aware Heterogeneous Computing Scheduling Problem (ME-HCSP) Problem goal The ME-HCSP aims at finding the scheduling function f that simultaneously minimizes the makespan (Cmax ) and the total energy consumption (E ). Cmax = max Cj , with Cj = ET (ti , mj ) mj ∈P ti ∈T : f (ti )=mj E = consumption in working state + consumption in idle state     = EC (ti , f (ti )) + (Cmax − Cj ) × ECidle (mj )   ti ∈T mj ∈P 7 / 35
  • 8. Energy-aware Heterogeneous Computing Scheduling Problem (ME-HCSP) Problem characteristics Offline: assumes complete knowledge of the tasks to be scheduled. Clairvoyant: the complete job characteristics are available as inputs to the scheduling algorithm. Independent tasks: no dependency constraints between tasks. Non-preemptive: every task is atomic, and cannot be interrupted once it begins its execution. Unrelated machines model: no relationship between the execution time of a task and its executing machine. Reduced scheduling time is mandatory: a very important feature of every scheduler in practice. 8 / 35
  • 9. Metaheuristic algorithms What is a metaheuristic algorithm? A metaheuristic algorithm is an iterative top-level stochastic search technique which guides a subordinate heuristic, exploring and exploiting the problem search space, in order to find near-optimal solutions to hard problems. Local Search (LS) algorithm Local search algorithms are metaheuristic methods which work by improving one or more candidate solutions by exploring a reduced neighborhood (N ) of nearby solutions. 9 / 35
  • 10. Multi-objective optimization problems (MOP) General formulation of a MOP Optimization problems have two or more conflicting objectives that are to be optimized simultaneously. optimize F (x) = (f1 (x), ..., fn (x)) with x ∈ S In the most general case all objectives are equally important. The solution to a MOP is a set of trade-off solutions which define a Pareto front (PF). Goals when solving a MOP Compute accurate solutions for every objective function. Maintain diversity in the computed solutions. 10 / 35
  • 11. Multi-objective optimization problems (MOP) MOP performance metrics Evaluating the results computed by a method for solving a MOP is not an easy task. Several performance metrics have been proposed. Metrics can be classified according to whether they are convergence-based metrics, diversity-based metrics, or hybrid metrics. IGD metric Spread metric Hypervolume metric (convergence-based) (diversity-based) (hybrid) 11 / 35
  • 12. Previous approaches for solving the ME-HCSP Single- vs multi-objective approaches The energy-aware HCSP is a multi-objective optimization problem. Most related work simplifies the problem solving a Single-objective Optimization Problem (SOP) (19 out of 23 of the related works). Solving a MOP demands significantly more computational effort than solving a SOP. Dimension of the offline problem instances tackled Well-known classic offline HCSP instances scenarios with 512 tasks and 16 machines. Most of the related work tackles instances with less than 1000 tasks and 32 machines (even the ones using a SOP approach). The maximum instance dimension tackled in the related work is comprised of up 4096 tasks and 256 machines (Kolodziej et al., 2011). 12 / 35
  • 13. ME-MLS: a MO metaheuristic for the ME-HCSP Characteristics Size-bounded population of candidate solutions. Fully multi-objective Pareto-based approach. Makes use of two subordinate heuristics: A randomized MCT to initialize its population. A randomized PALS as its local search method. Parallel algorithm design Multiple concurrent LS are applied to schedules in the population in order to improve them. There is no hierarchy, all concurrent LS are peers. Shared-memory multithreading implementation using C and POSIX threads. 13 / 35
  • 14. ME-MLS: a MO metaheuristic for the ME-HCSP Logic of each thread in the ME-MLS algorithm 1 Randomly select a schedule from the population. 2 The selected schedule is cloned. 3 A randomized number of LS are applied to the cloned schedule. 4 Try to lock the population. If the population is successfully locked then executes the archiving algorithm. Else return to step 3. 5 Return to first step (or end the algorithm). 14 / 35
  • 15. ME-MLS: a MO metaheuristic for the ME-HCSP Population initialization Sensitive issue in the design of a metaheuristic algorithm. A randomized version of the well-known MCT heuristic is proposed. The randomized MCT (rMCT) has a complexity order of O(n2 ). In-memory schedule encoding Two well-known structures are proposed in the related literature. ME-MLS uses a multi-structure comprising both encodings. 15 / 35
  • 16. ME-MLS: a MO metaheuristic for the ME-HCSP Fast Greedy Ad-hoc Archiving (FGAA) algorithm Simple method with strong emphasis on computational efficiency. Not especially conceived to maintain high diversity in the population. Adaptive Grid Archiving (AGA) by Knowles and Corne (2000) Divides the objective space into hypercubes (multi-dimensional grid). Solutions are discarded according to how crowded their hypercube is. Guarantees three desirable properties: Maintains solutions at the extremes Maintains solutions in all of the Pareto occupied regions Distributes the remaining solutions evenly among the Pareto regions. 16 / 35
  • 17. ME-MLS: a MO metaheuristic for the ME-HCSP Local search algorithm PALS is an efficient local search proposed by Alba and Luque (2007). A randomized PALS for the ME-HCSP (ME-rPALS) is proposed. Logic of the ME-rPALS algorithm 1 A target metric is randomly selected. 2 Randomly selects a machine m to perform the search. With high probability, the one with the worst local metric is selected. 3 Then, a random number of tasks currently assigned to be executed by the machine m are selected. 4 Some perturbations are evaluated on the selected tasks: moving tasks to other machines, and swapping tasks with other tasks. 5 The move or swap which improves the most the schedule is applied. 17 / 35
  • 18. Experimental analysis of ME-MLS Experimental platform All the experiments were performed in a 24-core server with AMD Opteron 6172 processors at 2.1GHz and 24 GB of RAM. Hosted as part of the HPC facility, Cluster FING, of the Facultad de Ingenier´ Universidad de la Rep´blica. ıa, u Test instances A total of 792 instances where generated for the ME-HCSP. Dimensions (#tasks×#machines): 512×16, 1024×32, and 2048×64. The task workloads were generated following the ETC model by Ali et al. (2000), and the machine scenarios using the methodology proposed by Nesmachnow et al. (2012a). 18 / 35
  • 19. Experimental analysis of ME-MLS Lower bounds computed using a Linear Programming (LP) relaxation Lower Bounds (LB) from a preemptive ME-HCSP relaxation. Two LP relaxations: makespan and energy consumption. The relative integrality gap (rgap) is reported. MinMin-based list-scheduling heuristics MinMin is a well-known accurate heuristic for the HCSP. Works in two-phases. Four versions are generated by alternating the minimization objective MinMin: makespan on both phases. MINMIN: energy on both phases. MinMIN: makespan on the first phase and energy on the second. MINMin: energy on the first phase and makespan on the second. 19 / 35
  • 20. Experimental analysis of ME-MLS Parameter configuration analysis Performed on a subset of four of the small instances. ME-MLS best configuration: 24 threads, population of 34 individuals. Stopping criterion of 10 s. Significantly shorter than the execution time of the metaheuristics in the related work (40-90 s.). Pseudo-Random Number Generator (PRNG) analysis Significant time-consuming function in metaheuristic methods. Three PRNG were evaluated for the ME-MLS: rand r, drand48 r, Mersenne Twister (MT). ME-MLS using MT was able to execute 3.5× faster than drand48 r, and 9.5× faster than rand r. Henceforth, the MT function is used as PRNG. 20 / 35
  • 21. Experimental analysis of ME-MLS Average improvement over the best MinMin-based heuristic and the LB rgap after 30 independent executions: makespan energy dim. cons. average rgap average rgap AGA FGAA AGA FGAA AGA FGAA AGA FGAA cons. 7.2% 7.1% 4.1% 4.2% 4.8% 4.7% 4.6% 4.6% 512×16 semi. 10.8% 10.7% 4.4% 4.6% 6.1% 6.0% 4.1% 4.1% incons. 12.9% 12.9% 4.0% 4.1% 6.8% 6.7% 3.7% 3.7% avg. 10.3% 10.2% 4.2% 4.3% 5.9% 5.8% 4.1% 4.2% cons. 6.8% 6.8% 4.9% 5.0% 6.6% 6.7% 5.3% 5.2% 1024×32 semi. 10.9% 10.8% 7.7% 7.8% 4.6% 4.3% 6.2% 6.5% incons. 15.9% 15.8% 6.6% 6.7% 8.0% 7.9% 5.9% 6.0% avg. 11.2% 11.1% 6.4% 6.5% 6.4% 6.3% 5.8% 5.9% cons. 4.1% 5.2% 7.7% 6.4% 6.9% 8.0% 7.4% 6.1% 2048×64 semi. 7.9% 8.3% 12.0% 11.4% 4.8% 4.7% 8.4% 8.5% incons. 16.8% 16.7% 10.9% 11.1% 8.0% 7.8% 8.5% 8.7% avg. 9.6% 10.1% 10.2% 10.1% 6.6% 6.8% 8.1% 7.8% 21 / 35
  • 22. Experimental analysis of ME-MLS Multi-objective optimization metrics for the Pareto front approximations computed by each algorithm (for the 264 instances each dimension): ND IGD (normalized) dimension AGA FGAA bestAGA/FGAA AGA FGAA bestAGA/FGAA 512×16 4.70±2.23 3.10±0.87 110/16 1.00±0.08 1.20±0.13 67/24 1024×32 6.70±3.20 3.57±0.92 173/5 1.00±0.26 1.62±0.21 150/18 2048×64 7.35±2.90 3.95±0.99 193/9 1.00±0.27 1.71±0.27 173/19 Spread (normalized) RHV dimension AGA FGAA bestAGA/FGAA AGA FGAA bestAGA/FGAA 512×16 1.00±0.09 1.04±0.06 65/30 0.83±0.05 0.81±0.05 55/21 1024×32 1.00±0.10 1.13±0.09 124/35 0.82±0.06 0.76±0.05 130/29 2048×64 1.00±0.09 1.25±0.16 148/30 0.81±0.05 0.75±0.06 146/36 22 / 35
  • 23. Experimental analysis of ME-MLS Sample Pareto front computed after 30 executions when solving an instance with dimension 1024x32 with a stopping criterion of 10 seconds: 23 / 35
  • 24. Experimental analysis of ME-MLS Speedup analysis Performed using 1024×32 instances with a stopping criterion of 6 million iterations. The analysis shows a speedup of 22.4 for ME-MLSAGA and 20.2 for ME-MLSFGAA , both using 24 threads. 24 / 35
  • 25. Scheduling very large HCSP scenarios with gPALS Motivation Heterogeneous computing systems have not stopped growing in size. Profit from the computing power of the massively-parallel GPU device. Profit from the proven efficacy and efficiency of the PALS-based LS. Goal Tackle very large instances in a few seconds. Design an efficient PALS-based local search for the GPU. Solve the HCSP, considering the schedule length as objective function. gPALS design gPALS is a hybrid CPU/GPU rPALS-based local search. The search is guided by a high-level schema executed on the CPU. The neighborhood evaluation is massively performed on the GPU. 25 / 35
  • 26. Scheduling very large HCSP scenarios with gPALS gPALS high-level schema 1: s ← GenerateInitialSolution() 2: while stopping condition not met do 3: M ← Massively parallel neighborhood evaluation applied to s in the GPU 4: s ← Apply the best movement from M 5: s ← Apply the rest of the movements in M in random order 6: end while 7: return s 26 / 35
  • 27. Scheduling very large HCSP scenarios with gPALS In-memory schedule encoding The task-oriented encoding is used. The machine-oriented encoding is discarded because memory footprint concerns. Initialization heuristics Two heuristics were evaluated: MCT and pMinMin/DD. pMinMin/DD by Canab´ and Nesmachnow (2012) is a parallel e MinMin heuristic with domain decomposition. It improves the efficiency of the MinMin heuristic sacrificing efficacy. 27 / 35
  • 28. Experimental analysis of gPALS Experimental platform Bull B505 server with a 12-core Intel Xeon CPU L5640 at 2.27GHz, 24 GB RAM, and a NVIDIA Tesla M2090 GPU device. Hosted in the HPC facility, Gaia, of the University of Luxembourg. Mersenne Twister for Graphic Processors (MTGP) library is used. Test instances Generated using the ETC model by Ali et al. (2000). High heterogeneity in both task and machines. With dimensions: 8192×256, 16384×512, and 32768×1024. 60 different problem instances (20 for each dimension). 28 / 35
  • 29. Experimental analysis of gPALS Numerical efficiency analysis Stopping criterion: 30 seconds PALS execution time. Method for baseline comparison: MinMin. 29 / 35
  • 30. Experimental analysis of gPALS Parallel performance analysis Stopping criterion: fixed solution quality. Method for baseline comparison: MinMin. 30 / 35
  • 31. Comparison against the cEA by Pinel et al. (2013) Comparison of the average makespan improvement over MinMin: avg. makespan improvement dimension (over MinMin) gPALSMCT gPALSMMDD cellular EA 8192×256 1.37%±0.83% 7.72%±0.73% 6.75%±0.73% 16384×512 2.13%±0.53% 7.91%±0.49% 6.05%±0.57% 32768×1024 3.24%±0.30% 8.18%±0.32% 5.19%±0.34% Average execution time comparison: avg. execution time (s) dimension gPALSMCT gPALSMMDD cellular EA 8192×256 38.7±0.6 39.3±0.6 1630.3±5.6 16384×512 40.7±0.6 47.4±0.6 4382.3±16.4 32768×1024 49.6±0.7 136.3±7.1 8088.3±58.3 31 / 35
  • 32. Conclusions and future work Summary and contributions The scheduling problem in HC environments was studied. The schedule length time and energy consumption were considered. Efficient schedulers were designed. Two LP relaxation formulation and four Min-Min based heuristics were presented, considering both ME-HCSP objectives. Proposed ME-MLS: a multithreading local search method to efficiently solve the ME-HCSP in reduced execution time. Two different archiving algorithms were compared. Proposed gPALS: a massively parallel CPU/GPU hybrid local search for tackling very large HCSP instances. Two different initialization algorithms were compared. 32 / 35
  • 33. Conclusions and future work Experimental analysis conclusions Both presented algorithms are able to compute accurate schedules in reduced execution times. Regarding ME-MLS experimental analysis: Average improvements of 10% for the makespan and 6% for the energy consumption in 10 s. execution time for the ME-HCSP. ME-MLSAGA offers a better overall performance than ME-MLSFGAA . Instances of up to 2048×64 where tackled. Regarding gPALS experimental analysis: Achieved average makespan improvements of up to 8% over the MinMin heuristic in 30 s. execution time. Average acceleration of up to 51× when compared to MinMin. Faster and more accurate than cEA by Pinel et al. (2013). Instances of up to 32768×1024 where tackled. 33 / 35
  • 34. Conclusions and future work Future work Improve the efficacy and efficiency of the proposed algorithms. Regarding the ME-MLS: Improve the Pareto-front analysis: compare the results with the ones computed by well-known MOEA. Integrate the proposed algorithm into well-known MOEA. Regarding the gPALS: Improve the initialization heuristics: use the GPU for the initialization heuristic. Design ME-gMLS: a CPU/GPU local search algorithm for the ME-HCSP. Tackle an online version of the ME-HCSP considering multi-core computing resources. 34 / 35
  • 35. Thanks for your attention Journal publications issued from this work: – S. Iturriaga, S. Nesmachnow, B. Dorronsoro, P. Bouvry. Energy efficient scheduling in heterogeneous systems with a parallel multiobjective local search. Computing and Informatics Journal 32(2), 2013. – S. Iturriaga, S. Nesmachnow, F. Luna, E. Alba. A parallel local search in CPU/GPU for scheduling independent tasks on large heterogeneous computing systems. Journal of Parallel and Distributed Computing, submitted January 2013. Conference publications issued from this work: – S. Iturriaga, S. Nesmachnow, B. Dorronsoro. A multithreading local search for multiobjective energy-aware scheduling in heterogeneous computing systems. Proc. of 26th European Conf. on Modelling and Simulation, pp. 497–503, Koblenz, Germany, 2012. – S. Iturriaga, S. Nesmachnow, F. Luna, E. Alba. A parallel online GPU scheduler for large heterogeneous computing systems. Proc. of the 5th High-Performance Computing Latin America Symposium, Buenos Aires, Argentina, 2012. – S. Iturriaga, S. Nesmachnow, C. Tutt´. Metaheuristics for multiobjective energy-aware scheduling in e heterogeneous computing systems. EU/ME Meeting Workshop, Copenhaguen, Denmark, 2012. – S. Iturriaga, P. Ruiz, S. Nesmachnow, B. Dorronsoro, P. Bouvry. A Parallel Multi-objective Local Search for AEDB Protocol Tuning. Proc. of the 16th Int. Workshop on Nature Inspired Distributed Computing, 27th IEEE/ACM Int. Parallel & Distributed Processing Symposium, Boston, MA, USA, accepted on February 2013. Resources of this thesis are available at: http://www.fing.edu.uy/~siturria/msc_thesis.html 35 / 35