"tests/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "3885da25f79773356f9862bacbf05fde17fc12b4"
Unverified Commit 58775ada authored by Zihao Ye's avatar Zihao Ye Committed by GitHub
Browse files

Remove redundant print information in #2361 (#2362)

parent 3adbfa18
...@@ -235,7 +235,6 @@ class SegmentReduce(th.autograd.Function): ...@@ -235,7 +235,6 @@ class SegmentReduce(th.autograd.Function):
@staticmethod @staticmethod
def forward(ctx, op, x, offsets): def forward(ctx, op, x, offsets):
y, arg = _segment_reduce(op, x, offsets) y, arg = _segment_reduce(op, x, offsets)
print(arg)
ctx.save_for_backward(arg, offsets) ctx.save_for_backward(arg, offsets)
ctx.backward_cache = op ctx.backward_cache = op
return y return y
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment