ZhennanQin commented on a change in pull request #4323: [Contrib] Add MKL DNN
option
URL: https://github.com/apache/incubator-tvm/pull/4323#discussion_r346056983
##########
File path: src/runtime/contrib/cblas/cblas.cc
##########
@@ -31,6 +31,9 @@ extern "C" {
#else
#include <cblas.h>
#endif
+#if USE_MKL_DNN == 1
Review comment:
I think code logic here need a small change as well:
```
#if USE_MKL_BLAS == 1
#include <mkl_cblas.h>
#elif USE_MKL_DNN == 1
#include <dnnl.h>
#else
#include <cblas.h>
#endif
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services