-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNarrow.lua
More file actions
24 lines (21 loc) · 713 Bytes
/
Narrow.lua
File metadata and controls
24 lines (21 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local Narrow, parent = torch.class('nn.Narrow', 'nn.Module')
function Narrow:__init(dimension,offset,length)
parent.__init(self)
self.dimension=dimension
self.index=offset
self.length=length or 1
if not dimension or not offset then
error('nn.Narrow(dimension, offset, length)')
end
end
function Narrow:updateOutput(input)
local output=input:narrow(self.dimension,self.index,self.length);
self.output:resizeAs(output)
return self.output:copy(output)
end
function Narrow:updateGradInput(input, gradOutput)
self.gradInput:resizeAs(input)
self.gradInput:zero();
self.gradInput:narrow(self.dimension,self.index,self.length):copy(gradOutput)
return self.gradInput
end