Skip to content

Commit

Permalink
adding stride information
Browse files Browse the repository at this point in the history
  • Loading branch information
arunpatala committed Jan 10, 2016
1 parent 7a53c76 commit 71625ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions residual.lua
Expand Up @@ -14,8 +14,8 @@ local function convunit31(net,fin,half,str,nobatch)
local str = str or 3
local half = half or false
if(half) then
convunit(net,fin,2*fin,3,2,nil,nobatch)
else convunit(net,fin,fin,3,1,nil,nobatch) end
convunit(net,fin,2*fin,str,2,nil,nobatch)
else convunit(net,fin,fin,str,1,nil,nobatch) end
end
local function convunit2(net,fin,half)
local half = half or false
Expand Down Expand Up @@ -56,4 +56,4 @@ local res = {}
res.convunit = convunit
res.rconvunit2 = rconvunit2
res.rconvunitN = rconvunitN
return res
return res

0 comments on commit 71625ff

Please sign in to comment.