Content deleted Content added
Citation bot (talk | contribs) Added isbn. | Use this bot. Report bugs. | Suggested by Abductive | Category:Articles needing additional references from February 2008 | #UCB_Category 196/913 |
→Code Generation: MOS:HEAD |
||
(One intermediate revision by one other user not shown) | |||
Line 1:
{{Short description|Method of improving computer program speed}}
{{More citations needed|date=February 2008}}
{{Use dmy dates|date=January 2022}}
Line 19 ⟶ 20:
The [[Scheduling (computing)|scheduler]] will list all the tasks and their dependencies on each other in terms of execution and start times. The scheduler will produce the optimal schedule in terms of number of processors to be used or the total execution time for the application.
===Code
The [[Scheduling (computing)|scheduler]] will generate a list of all the tasks and the details of the cores on which they will execute along with the time that they will execute for. The code Generator will insert special constructs in the code that will be read during execution by the scheduler. These constructs will instruct the scheduler on which core a particular task will execute along with the start and end times.
|