Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix USE_BLAS == openblas check (#15691)
Browse files Browse the repository at this point in the history
Fixes #15652
  • Loading branch information
larroy authored and TaoLv committed Jul 30, 2019
1 parent 8e31dad commit 90f881d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ ifeq ($(USE_CUDNN), 1)
LDFLAGS += -lcudnn
endif

ifeq ($(USE_BLAS), open)
ifeq ($(USE_BLAS), openblas)
CFLAGS += -DMXNET_USE_BLAS_OPEN=1
else ifeq ($(USE_BLAS), atlas)
CFLAGS += -DMXNET_USE_BLAS_ATLAS=1
Expand Down

0 comments on commit 90f881d

Please sign in to comment.