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

Commit

Permalink
disable overlapping forward optimization by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fzou1 committed Jul 24, 2017
1 parent 65b29ef commit 329b554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ ifeq ($(CAFFE_MLSL_SHUFFLE), 1)
COMMON_FLAGS += -DCAFFE_MLSL_SHUFFLE
endif

ifneq ($(FW_OVERLAP_OPT), 0)
ifeq ($(FW_OVERLAP_OPT), 1)
COMMON_FLAGS += -DFW_OVERLAP_OPT
endif
endif
Expand Down
2 changes: 1 addition & 1 deletion cmake/Dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ if(USE_MLSL)
if(CAFFE_MLSL_SHUFFLE)
add_definitions("-DCAFFE_MLSL_SHUFFLE")
endif()
if(FW_OVERLAP_OPT OR NOT DEFINED FW_OVERLAP_OPT)
if(FW_OVERLAP_OPT)
message(STATUS "Forward overlapping optimization is enabled!")
add_definitions("-DFW_OVERLAP_OPT")
endif()
Expand Down

0 comments on commit 329b554

Please sign in to comment.