From 75c82f1fe3e654ca7d472d8f824424ff450c01d1 Mon Sep 17 00:00:00 2001 From: David Guillen Fandos Date: Tue, 12 May 2015 10:26:47 +0100 Subject: sim: Adding thermal model support This patch adds basic thermal support to gem5. It models energy dissipation through a circuital equivalent, which allows us to use RC networks. This lays down the basic infrastructure to do so, but it does not "work" due to the lack of power models. For now some hardcoded number is used as a PoC. The solver is embedded in the patch. --- src/sim/SConscript | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sim/SConscript') diff --git a/src/sim/SConscript b/src/sim/SConscript index 94d0560ca..3238301ed 100644 --- a/src/sim/SConscript +++ b/src/sim/SConscript @@ -66,6 +66,7 @@ Source('stat_control.cc') Source('stat_register.cc', skip_no_python=True) Source('clock_domain.cc') Source('voltage_domain.cc') +Source('linear_solver.cc') Source('system.cc') Source('dvfs_handler.cc') -- cgit v1.2.3