From d691b98efe575b4cf8dd433a61e040e3905555cd Mon Sep 17 00:00:00 2001 From: Graeme Nail Date: Tue, 13 Sep 2022 10:17:04 +0100 Subject: [PATCH] Fix abort message to require MKL rather than generic BLAS --- src/layers/lsh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/lsh.cpp b/src/layers/lsh.cpp index 30e434d15..e5c60bbb1 100644 --- a/src/layers/lsh.cpp +++ b/src/layers/lsh.cpp @@ -42,7 +42,7 @@ void fillRandomRotationMatrix(Tensor output, Ptr allocator) { allocator->free(memory); #else output; allocator; - ABORT("LSH with rotation matrix requires Marian to be compiled with a BLAS library"); + ABORT("LSH with rotation matrix requires Marian to be compiled with MKL"); #endif }