We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a866168 commit 413ae8dCopy full SHA for 413ae8d
python/tvm/relax/frontend/torch/fx_translator.py
@@ -1509,6 +1509,7 @@ def create_convert_map(self):
1509
"softmax": self._softmax,
1510
"log_softmax": self._log_softmax,
1511
"dropout": lambda node: self.env[node.args[0]],
1512
+ "stochastic_depth": lambda node: self.env[node.args[0]],
1513
"clamp": self._clamp,
1514
"relu": lambda node: self.block_builder.emit(relax.op.nn.relu(self.env[node.args[0]])),
1515
"leaky_relu": self._leakyrelu,
0 commit comments