Task Scheduler Optimization active GPUs

Incorporating the concept of Quality of Service (QoS) parameters, the task allocation problem can be reformulated to optimize both computation time and resource allocation efficiency, introducing a multi-objective optimization problem:

Minimize: Z=αj=1mi=1nXijTij+βi=1n(1Ui)Z = \alpha \sum_{j=1}^{m} \sum_{i=1}^{n} X_{ij} \cdot T_{ij} + \beta \sum_{i=1}^{n} (1 - U_i)

Subject to:

 j=1mXijDjCi, i \sum_{j=1}^{m} X_{ij} \cdot D_j \leq C_i, \ \forall i
 i=1nXij=1, j \sum_{i=1}^{n} X_{ij} = 1, \ \forall j
Ui=j=1mXijDjCi, i U_i = \frac{\sum_{j=1}^{m} X_{ij} \cdot D_j}{C_i}, \ \forall i 

Where:

  • UiU_irepresents the utilization rate of node ii,

  • α\alpha and β\beta are coefficients balancing the importance between minimizing computation time and maximizing resource utilization.