forked from clementfarabet/lua---nnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMulTable.lua
35 lines (29 loc) · 826 Bytes
/
CMulTable.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
local CMulTable, parent = torch.class('nn.CMulTable', 'nn.Module')
function CMulTable:__init()
parent.__init(self)
self.gradInput = {}
end
function CMulTable:forward(input)
self.output:resizeAs(input[1]):copy(input[1])
for i=2,#input do
self.output:cmul(input[i])
end
return self.output
end
function CMulTable:backward(input, gradOutput)
local tout = torch.Tensor():resizeAs(self.output)
for i=1,#input do
self.gradInput[i] = self.gradInput[i] or torch.Tensor()
self.gradInput[i]:resizeAs(input[i]):copy(gradOutput)
tout:copy(self.output):cdiv(input[i])
self.gradInput[i]:cmul(tout)
end
return self.gradInput
end
function CMulTable:write(file)
parent.write(self, file)
end
function CMulTable:read(file)
parent.read(self, file)
self.gradInput = {}
end