thermal_domain.cc (11528:7ac58128fbc5) thermal_domain.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 30 unchanged lines hidden (view full) ---

39
40#include "sim/power/thermal_domain.hh"
41
42#include <algorithm>
43
44#include "base/statistics.hh"
45#include "debug/ThermalDomain.hh"
46#include "params/ThermalDomain.hh"
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 30 unchanged lines hidden (view full) ---

39
40#include "sim/power/thermal_domain.hh"
41
42#include <algorithm>
43
44#include "base/statistics.hh"
45#include "debug/ThermalDomain.hh"
46#include "params/ThermalDomain.hh"
47#include "sim/clocked_object.hh"
48#include "sim/linear_solver.hh"
47#include "sim/power/thermal_model.hh"
49#include "sim/power/thermal_model.hh"
48#include "sim/sim_object.hh"
50#include "sim/probe/probe.hh"
51#include "sim/sub_system.hh"
49
50ThermalDomain::ThermalDomain(const Params *p)
51 : SimObject(p), _initTemperature(p->initial_temperature),
52 node(NULL), subsystem(NULL)
53{
54}
55
56double

--- 61 unchanged lines hidden ---
52
53ThermalDomain::ThermalDomain(const Params *p)
54 : SimObject(p), _initTemperature(p->initial_temperature),
55 node(NULL), subsystem(NULL)
56{
57}
58
59double

--- 61 unchanged lines hidden ---