forked from torch/nn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParallelTable.lua
57 lines (51 loc) · 1.76 KB
/
ParallelTable.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
local ParallelTable, parent = torch.class('nn.ParallelTable', 'nn.Container')
function ParallelTable:__init()
parent.__init(self)
self.modules = {}
self.output = {}
self.gradInput = {}
end
function ParallelTable:updateOutput(input)
for i=1,#self.modules do
self.output[i] = self:rethrowErrors(self.modules[i], i, 'updateOutput', input[i])
end
return self.output
end
function ParallelTable:updateGradInput(input, gradOutput)
for i,module in ipairs(self.modules) do
self.gradInput[i] = self:rethrowErrors(module, i, 'updateGradInput', input[i], gradOutput[i])
end
return self.gradInput
end
function ParallelTable:accGradParameters(input, gradOutput, scale)
scale = scale or 1
for i,module in ipairs(self.modules) do
self:rethrowErrors(module, i, 'accGradParameters', input[i], gradOutput[i], scale)
end
end
function ParallelTable:accUpdateGradParameters(input, gradOutput, lr)
lr = lr or 1
for i,module in ipairs(self.modules) do
self:rethrowErrors(module, i, 'accUpdateGradParameters', input[i], gradOutput[i], lr)
end
end
function ParallelTable:__tostring__()
local tab = ' '
local line = '\n'
local next = ' |`-> '
local ext = ' | '
local extlast = ' '
local last = ' ... -> '
local str = torch.type(self)
str = str .. ' {' .. line .. tab .. 'input'
for i=1,#self.modules do
if i == self.modules then
str = str .. line .. tab .. next .. '(' .. i .. '): ' .. tostring(self.modules[i]):gsub(line, line .. tab .. extlast)
else
str = str .. line .. tab .. next .. '(' .. i .. '): ' .. tostring(self.modules[i]):gsub(line, line .. tab .. ext)
end
end
str = str .. line .. tab .. last .. 'output'
str = str .. line .. '}'
return str
end