From d6980d0cec9ffffd8e18a6edd557d7ff48d5f6d7 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Mon, 10 Aug 2015 09:51:02 -0700 Subject: [PATCH] Python binding: fixed another typo... --- python/src/bind/common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/bind/common.hpp b/python/src/bind/common.hpp index a64f80ef0..4bd798a36 100644 --- a/python/src/bind/common.hpp +++ b/python/src/bind/common.hpp @@ -74,7 +74,7 @@ namespace tools else if(name=="ger") return isc::GER_TYPE; else if(name=="dot") return isc::DOT_TYPE; else if(name=="gemv_n") return isc::GEMV_N_TYPE; - else if(name=="gemm_t") return isc::GEMV_T_TYPE; + else if(name=="gemv_t") return isc::GEMV_T_TYPE; else if(name=="gemm_nn") return isc::GEMM_NN_TYPE; else if(name=="gemm_tn") return isc::GEMM_TN_TYPE; else if(name=="gemm_nt") return isc::GEMM_NT_TYPE;