MCPcopy Create free account
hub / github.com/pytorch/pytorch / DepthConcat

Method DepthConcat

caffe2/python/cnn.py:181–184  ·  view source on GitHub ↗

The old depth concat function - we should move to use concat.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

179 return brew.concat(self, *args, order=self.order, **kwargs)
180
181 def DepthConcat(self, *args, **kwargs):
182 """The old depth concat function - we should move to use concat."""
183 print("DepthConcat is deprecated. use Concat instead.")
184 return self.Concat(*args, **kwargs)
185
186 def Sum(self, *args, **kwargs):
187 return brew.sum(self, *args, **kwargs)

Callers

nothing calls this directly

Calls 1

ConcatMethod · 0.95

Tested by

no test coverage detected