diff options
Diffstat (limited to 'SeparableConvolution.py')
| -rw-r--r-- | SeparableConvolution.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SeparableConvolution.py b/SeparableConvolution.py index 4d8563a..2ac31f9 100644 --- a/SeparableConvolution.py +++ b/SeparableConvolution.py @@ -35,7 +35,7 @@ class SeparableConvolution(torch.autograd.Function): ) elif input1.is_cuda == False: - raise NotImplementedError() + raise NotImplementedError() # CPU VERSION NOT IMPLEMENTED # end @@ -43,6 +43,6 @@ class SeparableConvolution(torch.autograd.Function): # end def backward(self, gradOutput): - raise NotImplementedError() + raise NotImplementedError() # BACKPROPAGATION NOT IMPLEMENTED # end # end |
