From bb4cc3179dd36e882fb78732c9dfb99b1528b8d9 Mon Sep 17 00:00:00 2001 From: Wilson Fung Date: Wed, 17 Jul 2013 16:44:50 -0800 Subject: 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] --- src/gpgpu-sim/Makefile | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/gpgpu-sim/Makefile') 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 -- cgit v1.3