From f389f174481df676c841ebcc87a7b8b313921bbc Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 17 Sep 2018 16:11:31 +0530 Subject: add importset and getContainer to combined.js --- js/MatrixOp/MATMUL.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'js/MatrixOp/MATMUL.js') diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js index 93bfe650..ffa485f7 100644 --- a/js/MatrixOp/MATMUL.js +++ b/js/MatrixOp/MATMUL.js @@ -180,4 +180,12 @@ function MATMUL() { MATMUL.prototype.get_popup_title = function MATMUL() { return this.set_param_popup_title; } + MATMUL.prototype.importset = function MATMUL() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.dtype = ary[0]; + this.rule = ary[1]; + this.np = ary[2]; + } + MATMUL.prototype.getContainer = function MATMUL() { return new BasicBlock(this.x); } } -- cgit