-
Notifications
You must be signed in to change notification settings - Fork 0
/
Min.lua
51 lines (46 loc) · 1.48 KB
/
Min.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
local Min, parent = torch.class('nn.Min', 'nn.Module')
function Min:__init(dimension)
parent.__init(self)
dimension = dimension or 1
self.dimension = dimension
end
function Min:_lazyInit()
self._output = self._output or self.output.new()
self._indices = self._indices or
(torch.type(self.output) == 'torch.CudaTensor' and torch.CudaTensor() or torch.LongTensor())
end
function Min:updateOutput(input)
self:_lazyInit()
torch.min(self._output, self._indices, input, self.dimension)
if input:dim() > 1 then
self.output = self._output:select(self.dimension, 1)
else
self.output = self._output
end
return self.output
end
function Min:updateGradInput(input, gradOutput)
self:_lazyInit()
local gradOutputView
if input:dim() > 1 then
gradOutputView = nn.utils.addSingletonDimension(gradOutput, self.dimension)
else
gradOutputView = gradOutput
end
self.gradInput:resizeAs(input):zero():scatter(self.dimension, self._indices, gradOutputView)
return self.gradInput
end
function Min:type(type)
-- torch.min expects a LongTensor as indices, whereas cutorch.max expects a CudaTensor.
if type == 'torch.CudaTensor' then
parent.type(self, type)
else
-- self._indices must be a LongTensor. Setting it to nil temporarily avoids
-- unnecessary memory allocations.
local indices
indices, self._indices = self._indices, nil
parent.type(self, type)
self._indices = indices and indices:long() or nil
end
return self
end