Skip to content

Commit a3c5495

Browse files
author
Natalia Gimelshein
committed
don't call on keepTrack nn.Sequential
1 parent 715d59a commit a3c5495

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

init.lua

+7-6
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,16 @@ local function analyse(net, input, opts)
9393
}
9494

9595
-- always keep track of the input
96-
opts.var = 'used'; opts.f = math.max; opts.notUsed = kNotUsed
96+
--opts.var = 'used'; opts.f = math.max; opts.notUsed = kNotUsed
9797
--utils.keepTrack(input, track, entry_fun, fun, opts)
98-
98+
if not torch.isTypeOf(m, 'nn.Sequential') then
9999
-- always keep track of the gradOutput
100-
opts.var = 'used'; opts.f = math.max; opts.notUsed = kNotUsed
101-
utils.keepTrack(gradOutput, track, entry_fun, fun, opts)
100+
opts.var = 'used'; opts.f = math.max; opts.notUsed = kNotUsed
101+
utils.keepTrack(gradOutput, track, entry_fun, fun, opts)
102102

103-
opts.var = 'defined'; opts.f = math.min; opts.notUsed = kNotDefined
104-
utils.keepTrack(self.gradInput, track, entry_fun, fun, opts)
103+
opts.var = 'defined'; opts.f = math.min; opts.notUsed = kNotDefined
104+
utils.keepTrack(self.gradInput, track, entry_fun, fun, opts)
105+
end
105106

106107
--[[
107108
if not m.modules then

0 commit comments

Comments
 (0)