Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 329b554

Browse files
committed
disable overlapping forward optimization by default
1 parent 65b29ef commit 329b554

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ifeq ($(CAFFE_MLSL_SHUFFLE), 1)
8080
COMMON_FLAGS += -DCAFFE_MLSL_SHUFFLE
8181
endif
8282

83-
ifneq ($(FW_OVERLAP_OPT), 0)
83+
ifeq ($(FW_OVERLAP_OPT), 1)
8484
COMMON_FLAGS += -DFW_OVERLAP_OPT
8585
endif
8686
endif

cmake/Dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ if(USE_MLSL)
122122
if(CAFFE_MLSL_SHUFFLE)
123123
add_definitions("-DCAFFE_MLSL_SHUFFLE")
124124
endif()
125-
if(FW_OVERLAP_OPT OR NOT DEFINED FW_OVERLAP_OPT)
125+
if(FW_OVERLAP_OPT)
126126
message(STATUS "Forward overlapping optimization is enabled!")
127127
add_definitions("-DFW_OVERLAP_OPT")
128128
endif()

0 commit comments

Comments
 (0)