Commit 3801ffb7 authored by Ahmad Siavashi's avatar Ahmad Siavashi

FairShare class name corrected

parent 1bdb3ef1
......@@ -10,8 +10,8 @@ import org.cloudbus.cloudsim.gpu.performance.models.PerformanceModel;
import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy;
/**
* * {@link PerformanceVgpuSchedulerLeftover} extends
* {@link org.cloudbus.cloudsim.gpu.VgpuSchedulerLeftover VgpuSchedulerLeftover}
* * {@link PerformanceVgpuSchedulerFairShare} extends
* {@link org.cloudbus.cloudsim.gpu.VgpuSchedulerFairShare VgpuSchedulerFairShare}
* to add support for
* {@link org.cloudbus.cloudsim.gpu.performance.models.PerformanceModel
* PerformanceModels}.
......@@ -19,7 +19,7 @@ import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy;
* @author Ahmad Siavashi
*
*/
public class PerformanceVgpuSchedulerLeftover extends VgpuSchedulerFairShare implements PerformanceScheduler<Vgpu> {
public class PerformanceVgpuSchedulerFairShare extends VgpuSchedulerFairShare implements PerformanceScheduler<Vgpu> {
/** The performance model */
private PerformanceModel<VgpuScheduler, Vgpu> performanceModel;
......@@ -31,7 +31,7 @@ public class PerformanceVgpuSchedulerLeftover extends VgpuSchedulerFairShare imp
* @param performanceModel
* the performance model
*/
public PerformanceVgpuSchedulerLeftover(int videoCardType, List<Pgpu> pgpuList,
public PerformanceVgpuSchedulerFairShare(int videoCardType, List<Pgpu> pgpuList,
PgpuSelectionPolicy pgpuSelectionPolicy, PerformanceModel<VgpuScheduler, Vgpu> performanceModel) {
super(videoCardType, pgpuList, pgpuSelectionPolicy);
this.performanceModel = performanceModel;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment