Job Scheduling Rules

Is there any matlab-oriented code for commonly used job submission rules like EDD, SPT, or FIFO? I only found the TORSCHE toolbox , but it's pretty hard to understand as a beginner. Thanks.

+4
source share
2 answers

MATLAB supports some third-party schedulers. The following page lists them and gives a minimal idea of ​​the job manager MATLAB. According to this documentation: "For advanced resource and security management functions, you must use a third-party scheduler."

http://www.mathworks.com/products/parallel-computing/supported/sched/level_of_support.html#directly

0
source

Some people have directed you on how to submit CPU tasks. However, as I read it, I assume that you are talking about working in Operations Research.

In that case, the solution that I would recommend would be: Just program a small function for each rule that you want to use, and match the input that you have. Then it’s easy to reuse this feature in every bit of code that you have.

The reason why this may not be standard functionality is due to the variety of input formats and ease of programming.

Advice on how to do this, such as EDD and SPT: just sort them according to the corresponding property and then each time use the first available one.

0
source

Source: https://habr.com/ru/post/1396226/


All Articles