From c01b95d07df57685cb7bc104d714a2ce8b87232d Mon Sep 17 00:00:00 2001 From: Pedro Larroy Date: Mon, 29 Jul 2019 21:50:45 -0700 Subject: [PATCH] Fix USE_BLAS == openblas check (#15691) Fixes #15652 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce840a3d30aa..0ac20d971713 100644 --- a/Makefile +++ b/Makefile @@ -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