From d3b9d526ecbf5e0bdaa91d21526cb56a2e98b534 Mon Sep 17 00:00:00 2001 From: Tor Aamodt Date: Sat, 2 Oct 2010 14:54:02 -0800 Subject: refactoring: make shd_cache_t into a class (cache_t), plus some other cleaning up [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7806] --- src/gpgpu-sim/gpu-misc.cc | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/gpgpu-sim/gpu-misc.cc') diff --git a/src/gpgpu-sim/gpu-misc.cc b/src/gpgpu-sim/gpu-misc.cc index 06a0f68..c5ad288 100644 --- a/src/gpgpu-sim/gpu-misc.cc +++ b/src/gpgpu-sim/gpu-misc.cc @@ -80,17 +80,3 @@ unsigned int LOGB2( unsigned int v ) { return r; } - -unsigned int MAX2NUM( unsigned int a, unsigned int b ) { - if (a > b) { - return a; - } else - return b; -} - -unsigned int MIN2NUM( unsigned int a, unsigned int b ) { - if (a < b) { - return a; - } else - return b; -} -- cgit v1.3