Multi-core real-time scheduling
|
|
|
- Morris Rodgers
- 9 years ago
- Views:
Transcription
1 Multi-core real-time scheduling Credits: Anne-Marie Déplanche, Irccyn, Nantes (many slides come from her presentation at ETR, Brest, September 2011) 1 Multi-core real-time scheduling! Introduction: problem definition and classification! Some anomalies of multiprocessor scheduling! Model and assumptions! Extension of uni-processor scheduling strategies! Pfair approaches Real Time Systems
2 Introduction! Mono-processor scheduling: one-dimension problem " Temporal organization When to start, interrupt, resume every task? n tasks? Time 1 processor Real Time Systems Introduction! Multi-processor (multi-core) scheduling: twodimension problem " Temporal organization + " Spatial organization On which processor execute every task? n tasks t? t m processors T4 t Real Time Systems
3 Classification! Partitioned scheduling " Each of the two dimensions is dealt with separately! Global scheduling " Temporal and spatial dimensions are deal with jointly! Semi-partitioned scheduling " Hybrid Real Time Systems Classification: partitioned scheduling! Each of the two dimensions is dealt with separately " Spatial organization: the n tasks are partitioned onto the m cores. No task migration at run-time " Temporal organization: Mono-processor scheduling is used on each core C1? T4 t C2? t Real Time Systems
4 Classification: partitioned scheduling! Two points of view " Number of processors to be determined: optimization problem (bin-packing problem) Bin = task, size = utilization (or other expression obtained from the task temporal parameters) Boxes = processors, size = ability to host tasks " Fixed number of processors: search problem (knapsack problem)! Both problems are NP-hard Real Time Systems Classification: partitioned scheduling! Optimal mono-processor scheduling strategies: XX " RM, DM " EDF, LLF (see uni-processor scheduling chapter)! Bin-packing heuristics: YY " FF: First-Fit " BF: Best-Fit " WF: Worst-Fit, NF: Next-Fit " FFD, BFD, WFD: First/Best/Worst-Fit Decreasing! Partitioning algorithms XX-YY Real Time Systems
5 Classification: partitioned scheduling! Benefits " Implementation: local schedulers are independent " No migration costs " Direct reuse of mono-processor schedulability tests " Isolation between processors in case of overload! Limits " Rigid: suited to static configurations " NP-hard task partitioning " Largest utilization bound for any partitioning m +1 algorithm [Andersson, 2001] 2 (m+1 tasks of execution time 1+! and period 2) Real Time Systems ! Classification: global scheduling! Temporal and spatial dimensions are dealt with jointly " Global unique scheduler and run queue " At each scheduling point, the scheduler decides when and where schedule at most m tasks " Task migration allowed t? t T4 t Real Time Systems
6 Classification: global scheduling! Benefits " Suited to dynamic configurations " Dominates all other scheduling policies (if unconstrained migrations + dyn. priorities see later) " Optimal schedulers exist " Overloads/underloads spread on all processors! Drawbacks " System overheads: migrations, mutual exclusion for sharing the run queue Real Time Systems Classification: global scheduling! (Preemptive) global RM/DM/EDF: definition " Task priorities assigned according to RM/DM/EDF " Scheduling algorithm: the m higher priority tasks are executed on the m processors Real Time Systems
7 Classification: semi-partitioned scheduling! Partitioned scheduling as far as possible! Some statically determined tasks may migrate " Constraint: migrating tasks (T4 on the example) must execute on a single processor at a time C1? T4 t C2? T4 t Migrating task T4 Real Time Systems Terminology! A task set is schedulable if there exists a scheduling policy such that all deadlines are met! A task set is schedulable by a scheduling policy if under that scheduling policy all deadlines are met! A scheduling policy is optimal if it is able to correctly schedule all schedulable task sets " Different from the optimality defined before! Utilization bound of a scheduling policy: utilization U lim below which all task sets meet their deadline Real Time Systems
8 Terminology! Priorities " Fixed per task (FTP) " Fixed per job (FJP) " Dynamic per job (DJP) Real Time Systems Overview of global scheduling policies! Assumptions " Tasks Periodic tasks (Pi) Implicit deadlines (Di=Pi) Synchronous tasks (Oi=0 for all i) Independent tasks A single job of a task can be active at a time " Architecture Identical processors System costs are neglected (preemption, migration, scheduling policy) Real Time Systems
9 Scheduling anomalies (1/3)! Dhall s effect [Dhall & Liu, 1978] " Periodic task sets with utilization close to 1 are unschedulable using global RM / EDF " n = m+1, P i = 1, C i = 2!, u i =2! for all 1"i"m " P m+1 =1+!, C m+1 =1, u m+1 =1/(1+!) " Task m+1 misses its deadline although U very close to 1 T 1 T m 1 T m+1 0 2ε 1+ε Real Time Systems Scheduling anomalies (2/3)! Period increase for periodic tasks and fixed priorities [Anderson, 2003] " n = 3, m=2, (P 1 = 3, C 1 =2), (P 2 =4,C 2 =2), (P 3 =12,C 3 =7) " Schedulable under global RM " If P 1 is increased to P 1 =4 and priorities stay the same, T 3 misses its deadline Real Time Systems
10 Scheduling anomalies (2/3)! (P 1 = 3, C 1 =2), (P 2 =4,C 2 =2), (P 3 =12,C 3 =7)! (P 1 = 4, C 1 =2), (P 2 =4,C 2 =2), (P 3 =12,C 3 =7) Real Time Systems Scheduling anomalies (3/3)! Critical instant not necessarily the simultaneous release of higher priority tasks " n=3, m=2 " (P 1 =2, C 1 =1), (P 2 =3,C 2 =2), (P 3 =4,C 3 =2) " Under RM scheduling Response time of T 3 higher at time 4 than at time Real Time Systems
11 General properties of multiprocessor scheduling (1/2)! Exact schedulability condition " U " m and u max " 1 " U = total utilization " U max = maximum utilization " Does not tell for which scheduling algorithm!! Schedule is cyclic on the hyperperiod H (PPCM(P i )) for: " Deterministic " Without memory scheduling algorithms Real Time Systems General properties of multiprocessor scheduling (2/2)! Theorem [Srinavasan & Baruah, 2002] " Non existence of FJP (FJP+FTP) scheduling with utilization bound strictly larger than (m+1)/2 for implicit deadline periodic task sets Real Time Systems
12 Global multiprocessor scheduling: detailed outline! Transposition of uni-processor algorithms! Extensions of uni-processor algorithms " US (Utilization Threshold) " EDF(k) " ZL (Zero Laxity)! Pfair approaches (Proportional Fair) Real Time Systems Transposition of uni-processor algorithms (1/2)! Main algorithms " RM (Rate Monotonic) # G-RM, Global RM " EDF (Earliest Deadline First) # G-EDF, Global EDF! Not optimal anymore! Sufficient schedulability tests (depend on u max ) G-RM u max " m/(3m-2) and U " m 2 /(3m-2) u max " 1/3 and U " m/3 U " m/2 * (1-u max ) + u max G-EDF u max " m/(2m+1) and U " m 2 /(2m+2) u max " 1/2 and U " (m+1)/2 U " m (m-1) u max Real Time Systems
13 Transposition of uni-processor algorithms (2/2) Real Time Systems Extensions of global RM/EDF: US (Utilization Threshold) policies! Priority assignment depend on an utilization threshold # " If u i > #, then T i is assigned maximal priority " Else, T i s priority assigned as in original algorithm (RM/EDF) " Arbitrary deterministic tie resolution! Remarks " Still non optimal, " Outperforms the base policy " Defies Dhall s effect Real Time Systems
14 Extensions of global RM/EDF: US (Utilization Threshold) policies! Example: RM-US[#=1/2] Ci Pi Ui Prio / / /3 $ T /12 1 T /12 $ Real Time Systems Extensions of global RM/EDF: US (Utilization Threshold) policies! Utilization bounds RM-US EDF-US #=m/(3m-2) U " m 2 /(3m-2) #=m/(2m-1) U " m 2 /(2m-1) #=1/3 U " (m+1)/3 #=1/2 U " (m+1)/2! Remarks " Utilization bounds do not depend on u max anymore " EDF-US[1/2] attains the best utilization bound possible for FJP Real Time Systems
15 Extensions of global RM/EDF: EDF(k)! Task indices by decreasing utilization " u i >= u i +1 for all i in [1,n]! Priority assignment depends on a threshold on task index " i < k, then maximum priority " Else, priority assignment according to original algorithm Real Time Systems Extensions of global RM/EDF: EDF(k)! Example, EDF(4) Ci Pi Ui Prio /5 EDF /10 EDF /3 $ T /12 $ T /12 $ Real Time Systems
16 Extensions of global RM/EDF: EDF(k) % n ' & $ u i (! Sufficient schedulability test m " ( k #1) # & i=k +1 ( & 1 # u k ( & ( " k min = value minimizing right side of the equation " With k=k min, utilization bound of (m+1)/2 (best possible for FJP)! " Comparison with EDF[1/2] Same utilization bound EDF(k min ) dominates EDF[1/2] Real Time Systems Extensions of global RM/EDF: ZL (Zero Laxity) policies! XX-ZL: apply policy XX until Zero Laxity " Maximal priority when laxity reaches zero (regardless of the currently running job), original priority assignment for the others " In category DJP (dynamic job scheduling)! Policies: EDZL [Lee, 1994], RMZL [Kato & al, 2009], FPZL [Davis et al, 2010]! Utilization bound: (m+1)/2! Dominates G-EDF Real Time Systems
17 Extensions of global RM/EDF: ZL (Zero Laxity) policies! Example: m=3,m=2; all Pi to 2, all Ci to 2 " G-EDF: misses its deadline " EDZL: OK Real Time Systems Pfair algorithms! Principle! Construction of a Pfair schedule! Pfair scheduling policies Real Time Systems
18 Pfair algorithms: principle! Pfair: Proportionate Fair " [Baruah et al, 1996] " Allocate time slots to tasks as close as possible to a fluid system, proportional to their utilization factor! Example " C 1 =C 2 =3, P 1 =P 2 =6 (u 1 =u 2 =1/2) " Each task will be approximately allocated 1 slot out of 2 (whatever the processor) Real Time Systems Pfair algorithms: principle! Lag function: difference between real and fluid execution! Lag " Discrete time, successive time slots [t,t+1[ " Weight of a task: % i =u i lag(t i,t) = " i t # " First term: fluid execution $ t #1 u=0 S(T i,u)! " Second term: real execution, with S(T i,u)=1 if T i executed in slot u, else 0! Pfair schedule: for all time t, lag in interval ]-1,1[ Real Time Systems
19 Pfair algorithms: principle! Example +/- 1 Execution domain of Pfair (slope ui) Real Time Systems Pfair algorithms: principle! Property " If a Pfair schedule exists, deadlines are met! Exact test of existence of a Pfair schedule n " u i # m i=1 " Full processor utilization!! Real Time Systems
20 Pfair algorithms: construction of a Pfair schedule! Divide tasks in unity-length sub-tasks " Pfair condition: each subtask j executes in a time window between a pseudo-arrival and a pseudodeadline " Pseudo-arrival: $ r(t j i ) = j "1 & $ & % ' # i " Pseudo-deadline:! d(t i j ) = # $ j " i % & Real Time Systems ! Pfair algorithms: construction of a Pfair schedule! Example (to be fixed) Real Time Systems
21 Pfair algorithms: scheduling algorithms! EPDF (Earliest Pseudo-Deadline First) " Apply EDF to pseudo-deadlines " Optimal only for m=2 (2 processors)! PF, PD, PD 2 " EPDF with non-arbitrary tie breaking rules in case of identical pseudo-deadlines " All of them are optimal " Most efficient one: PD 2! Ongoing works " Reduce numbers of context switches and migrations while maintaining optimality Real Time Systems Conclusion! Multi-processor scheduling is an active research area! Ongoing works " Global multi-core scheduling " Semi-partitioned scheduling " Determining upper bounds of practical factors (preemption, migration, ) " Implementation in real-time operating systems Real Time Systems
Analysis and Simulation of Scheduling Techniques for Real-Time Embedded Multi-core Architectures
Institute of Software Technology Department of Programming Languages and Compilers University of Stuttgart Universitätsstraße 38 D 70569 Stuttgart Master Thesis Nr. 3578 Analysis and Simulation of Scheduling
Aperiodic Task Scheduling
Aperiodic Task Scheduling Jian-Jia Chen (slides are based on Peter Marwedel) TU Dortmund, Informatik 12 Germany Springer, 2010 2014 年 11 月 19 日 These slides use Microsoft clip arts. Microsoft copyright
Real-Time Scheduling (Part 1) (Working Draft) Real-Time System Example
Real-Time Scheduling (Part 1) (Working Draft) Insup Lee Department of Computer and Information Science School of Engineering and Applied Science University of Pennsylvania www.cis.upenn.edu/~lee/ CIS 41,
Priority-Driven Scheduling
Priority-Driven Scheduling Advantages of Priority-Driven Scheduling Priority-driven scheduling is easy to implement. It does not require the information on the release times and execution times of the
Today. Intro to real-time scheduling Cyclic executives. Scheduling tables Frames Frame size constraints. Non-independent tasks Pros and cons
Today Intro to real-time scheduling Cyclic executives Scheduling tables Frames Frame size constraints Generating schedules Non-independent tasks Pros and cons Real-Time Systems The correctness of a real-time
Real Time Scheduling Basic Concepts. Radek Pelánek
Real Time Scheduling Basic Concepts Radek Pelánek Basic Elements Model of RT System abstraction focus only on timing constraints idealization (e.g., zero switching time) Basic Elements Basic Notions task
Scheduling Real-time Tasks: Algorithms and Complexity
Scheduling Real-time Tasks: Algorithms and Complexity Sanjoy Baruah The University of North Carolina at Chapel Hill Email: [email protected] Joël Goossens Université Libre de Bruxelles Email: [email protected]
Operatin g Systems: Internals and Design Principle s. Chapter 10 Multiprocessor and Real-Time Scheduling Seventh Edition By William Stallings
Operatin g Systems: Internals and Design Principle s Chapter 10 Multiprocessor and Real-Time Scheduling Seventh Edition By William Stallings Operating Systems: Internals and Design Principles Bear in mind,
3. Scheduling issues. Common approaches /1. Common approaches /2. Common approaches /3. 2012/13 UniPD / T. Vardanega 23/01/2013. Real-Time Systems 1
Common approaches /1 3. Scheduling issues Clock-driven (time-driven) scheduling Scheduling decisions are made beforehand (off line) and carried out at predefined time instants The time instants normally
Grant Agreement FP7-ICT-611016
Grant Agreement Deliverable type Deliverable name Report Resource allocation requirements Deliverable number D3.1 Work Package 3 Responsible partner UoM Report status Draft Dissemination level Public Version
Lecture Outline Overview of real-time scheduling algorithms Outline relative strengths, weaknesses
Overview of Real-Time Scheduling Embedded Real-Time Software Lecture 3 Lecture Outline Overview of real-time scheduling algorithms Clock-driven Weighted round-robin Priority-driven Dynamic vs. static Deadline
Lecture 3 Theoretical Foundations of RTOS
CENG 383 Real-Time Systems Lecture 3 Theoretical Foundations of RTOS Asst. Prof. Tolga Ayav, Ph.D. Department of Computer Engineering Task States Executing Ready Suspended (or blocked) Dormant (or sleeping)
Common Approaches to Real-Time Scheduling
Common Approaches to Real-Time Scheduling Clock-driven time-driven schedulers Priority-driven schedulers Examples of priority driven schedulers Effective timing constraints The Earliest-Deadline-First
Periodic Task Scheduling
Periodic Task Scheduling Radek Pelánek Motivation and Assumptions Examples of Periodic Tasks sensory data acquisition control loops action planning system monitoring Motivation and Assumptions Simplifying
The simple case: Cyclic execution
The simple case: Cyclic execution SCHEDULING PERIODIC TASKS Repeat a set of aperiodic tasks at a specific rate (cycle) 1 2 Periodic tasks Periodic tasks (the simplified case) Scheduled to run Arrival time
The Relative Worst Order Ratio for On-Line Algorithms
The Relative Worst Order Ratio for On-Line Algorithms Joan Boyar 1 and Lene M. Favrholdt 2 1 Department of Mathematics and Computer Science, University of Southern Denmark, Odense, Denmark, [email protected]
Real-time Scheduling of Periodic Tasks (1) Advanced Operating Systems Lecture 2
Real-time Scheduling of Periodic Tasks (1) Advanced Operating Systems Lecture 2 Lecture Outline Scheduling periodic tasks The rate monotonic algorithm Definition Non-optimality Time-demand analysis...
Real- Time Scheduling
Real- Time Scheduling Chenyang Lu CSE 467S Embedded Compu5ng Systems Readings Ø Single-Processor Scheduling: Hard Real-Time Computing Systems, by G. Buttazzo. q Chapter 4 Periodic Task Scheduling q Chapter
Chapter 3: Planning and Scheduling
September 11, 2013 Last time: Scheduling tasks Critical-Path Schedules Review For a machine-scheduling problem Tasks are performed by processors Tasks are arranged in a priority list that is independent
Global Multiprocessor Real-Time Scheduling as a Constraint Satisfaction Problem
Global Multiprocessor Real-Time Scheduling as a Constraint Satisfaction Problem Liliana Cucu-Grosean & Olivier Buffet INRIA Nancy Grand-Est 615 rue du Jardin Botanique 54600 Villers-lès-Nancy, France [email protected]
Operating System Aspects. Real-Time Systems. Resource Management Tasks
Operating System Aspects Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Multimedia Applications and Communication Multimedia Transfer and Control Protocols Quality of
Partitioned EDF Scheduling for Multiprocessors using a C=D Scheme
Partitioned EDF Scheduling for Multiprocessors using a C=D Scheme A. Burns, R.I. Davis, P. Wang and F. Zhang Department of Computer Science, University of York, UK. Abstract An EDF-based task-splitting
Real-Time Software. Basic Scheduling and Response-Time Analysis. René Rydhof Hansen. 21. september 2010
Real-Time Software Basic Scheduling and Response-Time Analysis René Rydhof Hansen 21. september 2010 TSW (2010e) (Lecture 05) Real-Time Software 21. september 2010 1 / 28 Last Time Time in a real-time
Scheduling Algorithms for Real-Time Systems
Scheduling Algorithms for Real-Time Systems by Arezou Mohammadi A thesis submitted to the School of Computing in conformity with the requirements for the degree of Doctor of Philosophy Queen s University
Predictable response times in event-driven real-time systems
Predictable response times in event-driven real-time systems Automotive 2006 - Security and Reliability in Automotive Systems Stuttgart, October 2006. Presented by: Michael González Harbour [email protected]
Off-line Optimal Multiprocessor Scheduling of Dependent Periodic Tasks
Off-line Optimal Multiprocessor Scheduling of Dependent Periodic Tasks Mikel Cordovilla, Frédéric Boniol, Eric Noulard, Claire Pagetti ONERA, Toulouse, France, Email: [email protected] ENSEEIHT,
Module 6. Embedded System Software. Version 2 EE IIT, Kharagpur 1
Module 6 Embedded System Software Version 2 EE IIT, Kharagpur 1 Lesson 30 Real-Time Task Scheduling Part 2 Version 2 EE IIT, Kharagpur 2 Specific Instructional Objectives At the end of this lesson, the
ICS 143 - Principles of Operating Systems
ICS 143 - Principles of Operating Systems Lecture 5 - CPU Scheduling Prof. Nalini Venkatasubramanian [email protected] Note that some slides are adapted from course text slides 2008 Silberschatz. Some
HARD REAL-TIME SCHEDULING: THE DEADLINE-MONOTONIC APPROACH 1. Department of Computer Science, University of York, York, YO1 5DD, England.
HARD REAL-TIME SCHEDULING: THE DEADLINE-MONOTONIC APPROACH 1 N C Audsley A Burns M F Richardson A J Wellings Department of Computer Science, University of York, York, YO1 5DD, England ABSTRACT The scheduling
Aperiodic Task Scheduling
Aperiodic Task Scheduling Gerhard Fohler Mälardalen University, Sweden [email protected] Real-Time Systems Gerhard Fohler 2005 Non Periodic Tasks So far periodic events and tasks what about others?
Exercises : Real-time Scheduling analysis
Exercises : Real-time Scheduling analysis Frank Singhoff University of Brest June 2013 Exercise 1 : Fixed priority scheduling and Rate Monotonic priority assignment Given a set of tasks defined by the
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE Subodha Kumar University of Washington [email protected] Varghese S. Jacob University of Texas at Dallas [email protected]
Multicore scheduling in automotive ECUs
Multicore scheduling in automotive ECUs Aurélien Monot 1,2, Nicolas Navet 3, Françoise Simonot 1, Bernard Bavoux 2 1: LORIA - Nancy Université, BP 239, 54506 Vandoeuvre, France 2: PSA Peugeot Citroën,
4. Fixed-Priority Scheduling
Simple workload model 4. Fixed-Priority Scheduling Credits to A. Burns and A. Wellings The application is assumed to consist of a fixed set of tasks All tasks are periodic with known periods This defines
Partition Scheduling in APEX Runtime Environment for Embedded Avionics Software
Partition Scheduling in APEX Runtime Environment for Embedded Avionics Software Yang-Hang Lee CISE Department, University of Florida Gainesville, FL 32611 Phone: (352) 392-1536 Fax: (352) 392-1220 Email:
CHAPTER 4: SOFTWARE PART OF RTOS, THE SCHEDULER
CHAPTER 4: SOFTWARE PART OF RTOS, THE SCHEDULER To provide the transparency of the system the user space is implemented in software as Scheduler. Given the sketch of the architecture, a low overhead scheduler
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6 Winter Term 2008 / 2009 Jun.-Prof. Dr. André Brinkmann [email protected] Universität Paderborn PC² Agenda Multiprocessor and
Commonly Used Approaches to Real-Time Scheduling
Integre Technical Publishing Co., Inc. Liu January 13, 2000 8:46 a.m. chap4 page 60 C H A P T E R 4 Commonly Used Approaches to Real-Time Scheduling This chapter provides a brief overview of three commonly
Dynamic Memory Management for Embedded Real-Time Systems
Dynamic Memory Management for Embedded Real-Time Systems Alfons Crespo, Ismael Ripoll and Miguel Masmano Grupo de Informática Industrial Sistemas de Tiempo Real Universidad Politécnica de Valencia Instituto
10.04.2008. Thomas Fahrig Senior Developer Hypervisor Team. Hypervisor Architecture Terminology Goals Basics Details
Thomas Fahrig Senior Developer Hypervisor Team Hypervisor Architecture Terminology Goals Basics Details Scheduling Interval External Interrupt Handling Reserves, Weights and Caps Context Switch Waiting
174: Scheduling Systems. Emil Michta University of Zielona Gora, Zielona Gora, Poland 1 TIMING ANALYSIS IN NETWORKED MEASUREMENT CONTROL SYSTEMS
174: Scheduling Systems Emil Michta University of Zielona Gora, Zielona Gora, Poland 1 Timing Analysis in Networked Measurement Control Systems 1 2 Introduction to Scheduling Systems 2 3 Scheduling Theory
Real-Time Component Software. slide credits: H. Kopetz, P. Puschner
Real-Time Component Software slide credits: H. Kopetz, P. Puschner Overview OS services Task Structure Task Interaction Input/Output Error Detection 2 Operating System and Middleware Applica3on So5ware
5 INTEGER LINEAR PROGRAMMING (ILP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1
5 INTEGER LINEAR PROGRAMMING (ILP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1 General Integer Linear Program: (ILP) min c T x Ax b x 0 integer Assumption: A, b integer The integrality condition
Real-Time Multi-Core Virtual Machine Scheduling in Xen
Real-Time Multi-Core Virtual Machine Scheduling in Xen Sisu Xi Meng Xu Chenyang Lu Linh T.X. Phan Christopher Gill Oleg Sokolsky Insup Lee Washington University in St. Louis University of Pennsylvania
Improvement of Scheduling Granularity for Deadline Scheduler
Improvement of Scheduling Granularity for Deadline Scheduler Yoshitake Kobayashi Advanced Software Technology Group Corporate Software Engineering Center TOSHIBA CORPORATION Copyright 2012, Toshiba Corporation.
Real-Time Multi-Core Virtual Machine Scheduling in Xen
Department of Computer Science & Engineering 23-9 Real-Time Multi-Core Virtual Machine Scheduling in Xen Authors: Sisu Xi, Meng Xu, Chenyang Lu, Linh T.X. Phan, Christopher Gill, Oleg Sokolsky, Insup Lee
A Survey of Fitting Device-Driver Implementations into Real-Time Theoretical Schedulability Analysis
A Survey of Fitting Device-Driver Implementations into Real-Time Theoretical Schedulability Analysis Mark Stanovich Florida State University, USA Contents 1 Introduction 2 2 Scheduling Theory 3 2.1 Workload
Methods and Tools For Embedded Distributed System Scheduling and Schedulability Analysis
Methods and Tools For Embedded Distributed System Scheduling and Schedulability Analysis Steve Vestal Honeywell Labs [email protected] 18 October 2005 Outline Background Binding and Routing Scheduling
Real-time scheduling algorithms, task visualization
Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 2006 Real-time scheduling algorithms, task visualization Kevin Churnetski Follow this and additional works at:
Classification - Examples
Lecture 2 Scheduling 1 Classification - Examples 1 r j C max given: n jobs with processing times p 1,...,p n and release dates r 1,...,r n jobs have to be scheduled without preemption on one machine taking
Modular Real-Time Linux
Modular Real-Time Linux Shinpei Kato Department of Information and Computer Science, Keio University 3-14-1 Hiyoshi, Kohoku, Yokohama, Japan [email protected] Nobuyuki Yamasaki Department of Information
How To Compare Real Time Scheduling To A Scheduled Scheduler On Linux On A Computer System With A Visualization System
MS project proposal: A comparison of real-time scheduling algorithms using visualization of tasks and evaluation of real-time extensions to Linux Kevin Churnetski Computer Science-RIT 8/21/2003 Abstract:
Effective Scheduling Algorithm and Scheduler Implementation for use with Time-Triggered Co-operative Architecture
http://dx.doi.org/10.5755/j01.eee.20.6.7282 ELEKTRONIKA IR ELEKTROTECHNIKA, ISSN 1392 1215, VOL. 20, NO. 6, 2014 Effective Scheduling Algorithm and Scheduler Implementation for use with Time-Triggered
Efficient and Robust Allocation Algorithms in Clouds under Memory Constraints
Efficient and Robust Allocation Algorithms in Clouds under Memory Constraints Olivier Beaumont,, Paul Renaud-Goud Inria & University of Bordeaux Bordeaux, France 9th Scheduling for Large Scale Systems
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration 1 Harish H G, 2 Dr. R Girisha 1 PG Student, 2 Professor, Department of CSE, PESCE Mandya (An Autonomous Institution under
Real-Time Operating Systems for MPSoCs
Real-Time Operating Systems for MPSoCs Hiroyuki Tomiyama Graduate School of Information Science Nagoya University http://member.acm.org/~hiroyuki MPSoC 2009 1 Contributors Hiroaki Takada Director and Professor
Real-Time Scheduling 1 / 39
Real-Time Scheduling 1 / 39 Multiple Real-Time Processes A runs every 30 msec; each time it needs 10 msec of CPU time B runs 25 times/sec for 15 msec C runs 20 times/sec for 5 msec For our equation, A
A Tool for Generating Partition Schedules of Multiprocessor Systems
A Tool for Generating Partition Schedules of Multiprocessor Systems Hans-Joachim Goltz and Norbert Pieth Fraunhofer FIRST, Berlin, Germany {hans-joachim.goltz,nobert.pieth}@first.fraunhofer.de Abstract.
Scheduling Algorithms For Fault-Tolerant Real-Time Systems
THESIS FOR THE DEGREE OF LICENTIATE OF ENGINEERING Scheduling Algorithms For Fault-Tolerant Real-Time Systems RISAT MAHMUD PATHAN Division of Networks and Systems Department of Computer Science and Engineering
Scheduling. Yücel Saygın. These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum
Scheduling Yücel Saygın These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum 1 Scheduling Introduction to Scheduling (1) Bursts of CPU usage alternate with periods
Dimensioning an inbound call center using constraint programming
Dimensioning an inbound call center using constraint programming Cyril Canon 1,2, Jean-Charles Billaut 2, and Jean-Louis Bouquard 2 1 Vitalicom, 643 avenue du grain d or, 41350 Vineuil, France [email protected]
Hardware Task Scheduling and Placement in Operating Systems for Dynamically Reconfigurable SoC
Hardware Task Scheduling and Placement in Operating Systems for Dynamically Reconfigurable SoC Yuan-Hsiu Chen and Pao-Ann Hsiung National Chung Cheng University, Chiayi, Taiwan 621, ROC. [email protected]
Embedded Systems. 6. Real-Time Operating Systems
Embedded Systems 6. Real-Time Operating Systems Lothar Thiele 6-1 Contents of Course 1. Embedded Systems Introduction 2. Software Introduction 7. System Components 10. Models 3. Real-Time Models 4. Periodic/Aperiodic
ChronOS Linux: A Best-Effort Real-Time Multiprocessor Linux Kernel
ChronOS Linux: A Best-Effort Real-Time Multiprocessor Linux Kernel Matthew Dellinger, Piyush Garyali, and Binoy Ravindran ECE Dept., Virgina Tech Blacksburg, VA 2461, USA {mdelling,piyushg,binoy}@vt.edu
On the Scalability of Real-Time Scheduling Algorithms on Multicore Platforms: A Case Study
On the Scalability of Real-Time Scheduling Algorithms on Multicore Platforms A Case Study Björn B. Brandenburg, John M. Calandrino, and James H. Anderson Department of Computer Science, University of North
A Constant-Approximate Feasibility Test for Multiprocessor Real-Time Scheduling
Algorithmica manuscript No. (will be inserted by the editor) A Constant-Approximate Feasibility Test for Multiprocessor Real-Time Scheduling Vincenzo Bonifaci Alberto Marchetti-Spaccamela Sebastian Stiller
Using EDF in Linux: SCHED DEADLINE. Luca Abeni [email protected]
Using EDF in Linux: Luca Abeni [email protected] Using Fixed Priorities in Linux SCHED FIFO and SCHED RR use fixed priorities They can be used for real-time tasks, to implement RM and DM Real-time tasks
Real- Time Mul,- Core Virtual Machine Scheduling in Xen
Real- Time Mul,- Core Virtual Machine Scheduling in Xen Sisu Xi 1, Meng Xu 2, Chenyang Lu 1, Linh Phan 2, Chris Gill 1, Oleg Sokolsky 2, Insup Lee 2 1 Washington University in St. Louis 2 University of
Scheduling Shop Scheduling. Tim Nieberg
Scheduling Shop Scheduling Tim Nieberg Shop models: General Introduction Remark: Consider non preemptive problems with regular objectives Notation Shop Problems: m machines, n jobs 1,..., n operations
Cloud Storage and Online Bin Packing
Cloud Storage and Online Bin Packing Doina Bein, Wolfgang Bein, and Swathi Venigella Abstract We study the problem of allocating memory of servers in a data center based on online requests for storage.
Cloud Management: Knowing is Half The Battle
Cloud Management: Knowing is Half The Battle Raouf BOUTABA David R. Cheriton School of Computer Science University of Waterloo Joint work with Qi Zhang, Faten Zhani (University of Waterloo) and Joseph
Scheduling Single Machine Scheduling. Tim Nieberg
Scheduling Single Machine Scheduling Tim Nieberg Single machine models Observation: for non-preemptive problems and regular objectives, a sequence in which the jobs are processed is sufficient to describe
