summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsniklaus <simon.niklaus@outlook.com>2017-09-12 17:57:28 -0700
committersniklaus <simon.niklaus@outlook.com>2017-09-12 17:57:28 -0700
commite123297d61dc9915b70060def498560ca5d3d073 (patch)
tree5d7f50bb05e156b014e5fb7eb1f4419d8f360b86
parent5adb6e18876c9fc43a7de57b1e63d67449b5a332 (diff)
no message
-rw-r--r--SeparableConvolution.py4
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