From 2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 22 Jun 2015 19:01:29 +0800 Subject: major change: use luarocks to manage project --- layer/window.lua | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 layer/window.lua (limited to 'layer/window.lua') diff --git a/layer/window.lua b/layer/window.lua deleted file mode 100644 index 4e9a3b1..0000000 --- a/layer/window.lua +++ /dev/null @@ -1,28 +0,0 @@ -local WindowLayer = nerv.class("nerv.WindowLayer", "nerv.Layer") - -function WindowLayer:__init(id, global_conf, layer_conf) - self.id = id - self.gconf = global_conf - self.window = layer_conf.window - self.dim_in = layer_conf.dim_in - self.dim_out = layer_conf.dim_out - self:check_dim_len(1, 1) -end - -function WindowLayer:init() - if self.dim_in[1] ~= self.window.trans:ncol() then - nerv.error("mismatching dimensions of input and window parameter") - end - if self.dim_out[1] ~= self.window.trans:ncol() then - nerv.error("mismatching dimensions of output and window parameter") - end -end - -function WindowLayer:propagate(input, output) - output[1]:copy_fromd(input[1]) - output[1]:scale_rows_by_row(self.window.trans) -end - -function WindowLayer:get_params() - return nerv.ParamRepo({self.window}) -end -- cgit v1.2.3