diff options
| author | Wilson Fung <[email protected]> | 2013-07-17 16:44:50 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:50:58 -0700 |
| commit | bb4cc3179dd36e882fb78732c9dfb99b1528b8d9 (patch) | |
| tree | 6cd7cbb48b4119e33dc0fed9bba3bc7688eb60d2 /src/gpgpu-sim/Makefile | |
| parent | e480b8ac999a7132ce003f102d5d5a80a776c2f6 (diff) | |
Redesigned the memory partition unit to support multiple L2 cache banks per partition. Each L2 cache banks has its own connection to the interconnection network to allow L2 bandwidth to scale without increase the number of memory parttiion units.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 16613]
Diffstat (limited to 'src/gpgpu-sim/Makefile')
| -rw-r--r-- | src/gpgpu-sim/Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gpgpu-sim/Makefile b/src/gpgpu-sim/Makefile index e355b59..bead38a 100644 --- a/src/gpgpu-sim/Makefile +++ b/src/gpgpu-sim/Makefile @@ -33,10 +33,8 @@ TRACE?=0 ifeq ($(DEBUG),1) CXXFLAGS = -Wall -DDEBUG - CXXFLAGS_L2CACHE = -Wall -DDEBUG else CXXFLAGS = -Wall - CXXFLAGS_L2CACHE = -Wall endif ifeq ($(TRACE),1) @@ -47,13 +45,11 @@ include ../../version_detection.mk ifeq ($(GNUC_CPP0X), 1) CXXFLAGS += -std=c++0x - CXXFLAGS_L2CACHE += -std=c++0x endif ifneq ($(DEBUG),1) OPTFLAGS += -O3 else - CXXFLAGS_L2CACHE += CXXFLAGS += endif @@ -90,9 +86,6 @@ depend: touch $(OUTPUT_DIR)/Makefile.makedepend makedepend -f$(OUTPUT_DIR)/Makefile.makedepend -p$(OUTPUT_DIR)/ $(CSRCS) 2> /dev/null -$(OUTPUT_DIR)/l2cache.$(OEXT): l2cache.cc - $(CPP) $(OPTFLAGS) $(CXXFLAGS_L2CACHE) -o $*.$(OEXT) -c l2cache.cc - $(OUTPUT_DIR)/%.$(OEXT): %.cc $(CPP) $(OPTFLAGS) $(CXXFLAGS) $(POWER_FLAGS) -o $(OUTPUT_DIR)/$*.$(OEXT) -c $*.cc |
