diff options
Diffstat (limited to 'src/gpu-compute')
-rw-r--r-- | src/gpu-compute/brig_object.cc | 2 | ||||
-rw-r--r-- | src/gpu-compute/gpu_tlb.hh | 2 | ||||
-rw-r--r-- | src/gpu-compute/hsa_object.cc | 2 | ||||
-rw-r--r-- | src/gpu-compute/misc.hh | 2 | ||||
-rw-r--r-- | src/gpu-compute/of_scheduling_policy.hh | 2 | ||||
-rw-r--r-- | src/gpu-compute/rr_scheduling_policy.hh | 2 | ||||
-rw-r--r-- | src/gpu-compute/simple_pool_manager.cc | 2 | ||||
-rw-r--r-- | src/gpu-compute/tlb_coalescer.hh | 2 | ||||
-rw-r--r-- | src/gpu-compute/vector_register_file.cc | 2 | ||||
-rw-r--r-- | src/gpu-compute/wavefront.hh | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/gpu-compute/brig_object.cc b/src/gpu-compute/brig_object.cc index 21b7d4433..6211598d4 100644 --- a/src/gpu-compute/brig_object.cc +++ b/src/gpu-compute/brig_object.cc @@ -45,7 +45,7 @@ #include <cstdlib> #include "arch/hsail/Brig.h" -#include "base/misc.hh" +#include "base/logging.hh" #include "base/trace.hh" #include "debug/BRIG.hh" #include "debug/HSAILObject.hh" diff --git a/src/gpu-compute/gpu_tlb.hh b/src/gpu-compute/gpu_tlb.hh index ee4375259..73b5f2f61 100644 --- a/src/gpu-compute/gpu_tlb.hh +++ b/src/gpu-compute/gpu_tlb.hh @@ -47,7 +47,7 @@ #include "arch/x86/pagetable_walker.hh" #include "arch/x86/regs/segment.hh" #include "base/callback.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "base/statistics.hh" #include "gpu-compute/compute_unit.hh" #include "mem/mem_object.hh" diff --git a/src/gpu-compute/hsa_object.cc b/src/gpu-compute/hsa_object.cc index e74a45454..ac734a437 100644 --- a/src/gpu-compute/hsa_object.cc +++ b/src/gpu-compute/hsa_object.cc @@ -38,7 +38,7 @@ #include <cassert> #include <fstream> -#include "base/misc.hh" +#include "base/logging.hh" HsaObject::HsaObject(const std::string &fname) : readonlyData(nullptr), filename(fname) diff --git a/src/gpu-compute/misc.hh b/src/gpu-compute/misc.hh index 5ade89789..5ee8fb87b 100644 --- a/src/gpu-compute/misc.hh +++ b/src/gpu-compute/misc.hh @@ -40,7 +40,7 @@ #include <limits> #include <memory> -#include "base/misc.hh" +#include "base/logging.hh" class GPUDynInst; diff --git a/src/gpu-compute/of_scheduling_policy.hh b/src/gpu-compute/of_scheduling_policy.hh index 684e51a3a..94b5fdcd7 100644 --- a/src/gpu-compute/of_scheduling_policy.hh +++ b/src/gpu-compute/of_scheduling_policy.hh @@ -39,7 +39,7 @@ #include <cstddef> #include <vector> -#include "base/misc.hh" +#include "base/logging.hh" class Wavefront; diff --git a/src/gpu-compute/rr_scheduling_policy.hh b/src/gpu-compute/rr_scheduling_policy.hh index 780f294aa..3e83748da 100644 --- a/src/gpu-compute/rr_scheduling_policy.hh +++ b/src/gpu-compute/rr_scheduling_policy.hh @@ -42,7 +42,7 @@ #include <utility> #include <vector> -#include "base/misc.hh" +#include "base/logging.hh" class Wavefront; diff --git a/src/gpu-compute/simple_pool_manager.cc b/src/gpu-compute/simple_pool_manager.cc index 0e35ab9cc..dfa1ec013 100644 --- a/src/gpu-compute/simple_pool_manager.cc +++ b/src/gpu-compute/simple_pool_manager.cc @@ -35,7 +35,7 @@ #include "gpu-compute/simple_pool_manager.hh" -#include "base/misc.hh" +#include "base/logging.hh" // return the min number of elements that the manager can reserve given // a request for "size" elements diff --git a/src/gpu-compute/tlb_coalescer.hh b/src/gpu-compute/tlb_coalescer.hh index b03e77150..feb5b7807 100644 --- a/src/gpu-compute/tlb_coalescer.hh +++ b/src/gpu-compute/tlb_coalescer.hh @@ -46,7 +46,7 @@ #include "arch/isa_traits.hh" #include "arch/x86/pagetable.hh" #include "arch/x86/regs/segment.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "base/statistics.hh" #include "gpu-compute/gpu_tlb.hh" #include "mem/mem_object.hh" diff --git a/src/gpu-compute/vector_register_file.cc b/src/gpu-compute/vector_register_file.cc index 3c3b400bb..9e3bca7e7 100644 --- a/src/gpu-compute/vector_register_file.cc +++ b/src/gpu-compute/vector_register_file.cc @@ -37,7 +37,7 @@ #include <string> -#include "base/misc.hh" +#include "base/logging.hh" #include "gpu-compute/compute_unit.hh" #include "gpu-compute/gpu_dyn_inst.hh" #include "gpu-compute/shader.hh" diff --git a/src/gpu-compute/wavefront.hh b/src/gpu-compute/wavefront.hh index 659132941..eae6890db 100644 --- a/src/gpu-compute/wavefront.hh +++ b/src/gpu-compute/wavefront.hh @@ -43,7 +43,7 @@ #include <vector> #include "arch/gpu_isa.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "base/types.hh" #include "config/the_gpu_isa.hh" #include "gpu-compute/condition_register_state.hh" |