Ignore:
Timestamp:
07/15/14 16:37:15 (11 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/AmdNodeEEP.java

    r1247 r1420  
    66import schedframe.resources.computing.Node; 
    77import schedframe.resources.computing.Processor; 
    8 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     8import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    99import schedframe.resources.devices.PhysicalResource; 
    1010import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    1414public class AmdNodeEEP extends RecsNodeBaseEEP { 
    1515 
    16         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     16        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1717                        PhysicalResource resource) { 
    1818                double powerConsumption = 0; 
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/AtomD510NodeEEP.java

    r1247 r1420  
    66import schedframe.resources.computing.Node; 
    77import schedframe.resources.computing.Processor; 
    8 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     8import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    99import schedframe.resources.devices.PhysicalResource; 
    1010import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    1212public class AtomD510NodeEEP extends RecsNodeBaseEEP { 
    1313 
    14         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     14        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1515                        PhysicalResource resource) { 
    1616                double powerConsumption = 0; 
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/AtomZ510NodeEEP.java

    r1247 r1420  
    66import schedframe.resources.computing.Node; 
    77import schedframe.resources.computing.Processor; 
    8 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     8import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    99import schedframe.resources.devices.PhysicalResource; 
    1010import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    1414public class AtomZ510NodeEEP extends RecsNodeBaseEEP { 
    1515 
    16         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     16        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1717                        PhysicalResource resource) { 
    1818                double powerConsumption = 0; 
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/IntelNodeEEP.java

    r1247 r1420  
    66import schedframe.resources.computing.Node; 
    77import schedframe.resources.computing.Processor; 
    8 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     8import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    99import schedframe.resources.devices.PhysicalResource; 
    1010import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    1212public class IntelNodeEEP extends RecsNodeBaseEEP { 
    1313 
    14         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     14        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1515                        PhysicalResource resource) { 
    1616                double powerConsumption = 0; 
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/RecsCoreEEP.java

    r1243 r1420  
    11package test.drs_tst.recs.plugins.energy; 
    22 
    3 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     3import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    44import schedframe.resources.devices.PhysicalResource; 
    55import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    88public class RecsCoreEEP extends BaseEnergyEstimationPlugin { 
    99 
    10         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     10        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1111                        PhysicalResource resource) { 
    1212                double powerConsumption = 0; 
  • DCWoRMS/branches/coolemall/src/test/drs_tst/recs/plugins/energy/RecsCpuEEP.java

    r1243 r1420  
    22 
    33import schedframe.resources.computing.Processor; 
    4 import schedframe.resources.computing.profiles.energy.EnergyEvent; 
     4import schedframe.resources.computing.profiles.energy.ResourceEvent; 
    55import schedframe.resources.devices.PhysicalResource; 
    66import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    99public class RecsCpuEEP extends BaseEnergyEstimationPlugin { 
    1010 
    11         public double estimatePowerConsumption(EnergyEvent event, JobRegistry jobRegistry, 
     11        public double estimatePowerConsumption(ResourceEvent event, JobRegistry jobRegistry, 
    1212                        PhysicalResource resource) { 
    1313                 
Note: See TracChangeset for help on using the changeset viewer.