소스 검색

Merge branch 'master' of github.com:nagadomi/waifu2x

nagadomi 9 년 전
부모
커밋
7708c7e75a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/srcnn.lua

+ 1 - 1
lib/srcnn.lua

@@ -9,7 +9,7 @@ function nn.SpatialConvolutionMM:reset(stdv)
    self.weight:normal(0, stdv)
    self.bias:zero()
 end
-if cudnn then
+if cudnn and cudnn.SpatialConvolution then
    function cudnn.SpatialConvolution:reset(stdv)
       stdv = math.sqrt(2 / ((1.0 + 0.1 * 0.1) * self.kW * self.kH * self.nOutputPlane))
       self.weight:normal(0, stdv)