From 8cf65fe92b28b8809abcb0eb59f951d26f30792f Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 19 Jun 2018 23:23:04 +0530 Subject: distinguish between functions and arrays maintain a list of functions --- js/MatrixOp/MATMUL.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/MatrixOp/MATMUL.js') diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js index 623748a7..2d525127 100644 --- a/js/MatrixOp/MATMUL.js +++ b/js/MatrixOp/MATMUL.js @@ -121,8 +121,8 @@ model.sim=list("matmul_ui8e",4); } } } -kmin=TABMIN(dtype); -kmax=TABMAX(dtype); +kmin=TABMIN[dtype-1]; +kmax=TABMAX[dtype-1]; it=dtype*ones(1,2); ot=dtype; if (rule==1) { -- cgit