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; ...@@ -10,8 +10,8 @@ import org.cloudbus.cloudsim.gpu.performance.models.PerformanceModel;
import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy; import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy;
/** /**
* * {@link PerformanceVgpuSchedulerLeftover} extends * * {@link PerformanceVgpuSchedulerFairShare} extends
* {@link org.cloudbus.cloudsim.gpu.VgpuSchedulerLeftover VgpuSchedulerLeftover} * {@link org.cloudbus.cloudsim.gpu.VgpuSchedulerFairShare VgpuSchedulerFairShare}
* to add support for * to add support for
* {@link org.cloudbus.cloudsim.gpu.performance.models.PerformanceModel * {@link org.cloudbus.cloudsim.gpu.performance.models.PerformanceModel
* PerformanceModels}. * PerformanceModels}.
...@@ -19,7 +19,7 @@ import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy; ...@@ -19,7 +19,7 @@ import org.cloudbus.cloudsim.gpu.selection.PgpuSelectionPolicy;
* @author Ahmad Siavashi * @author Ahmad Siavashi
* *
*/ */
public class PerformanceVgpuSchedulerLeftover extends VgpuSchedulerFairShare implements PerformanceScheduler<Vgpu> { public class PerformanceVgpuSchedulerFairShare extends VgpuSchedulerFairShare implements PerformanceScheduler<Vgpu> {
/** The performance model */ /** The performance model */
private PerformanceModel<VgpuScheduler, Vgpu> performanceModel; private PerformanceModel<VgpuScheduler, Vgpu> performanceModel;
...@@ -31,7 +31,7 @@ public class PerformanceVgpuSchedulerLeftover extends VgpuSchedulerFairShare imp ...@@ -31,7 +31,7 @@ public class PerformanceVgpuSchedulerLeftover extends VgpuSchedulerFairShare imp
* @param performanceModel * @param performanceModel
* the performance model * the performance model
*/ */
public PerformanceVgpuSchedulerLeftover(int videoCardType, List<Pgpu> pgpuList, public PerformanceVgpuSchedulerFairShare(int videoCardType, List<Pgpu> pgpuList,
PgpuSelectionPolicy pgpuSelectionPolicy, PerformanceModel<VgpuScheduler, Vgpu> performanceModel) { PgpuSelectionPolicy pgpuSelectionPolicy, PerformanceModel<VgpuScheduler, Vgpu> performanceModel) {
super(videoCardType, pgpuList, pgpuSelectionPolicy); super(videoCardType, pgpuList, pgpuSelectionPolicy);
this.performanceModel = performanceModel; 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