Shortcuts

torch.operator

torch_sym_min

Note

Tags: torch.operator

Support Level: NOT_SUPPORTED_YET

Original source code:

import torch



class TorchSymMin(torch.nn.Module):
    """
    torch.sym_min operator is not supported in export.
    """

    def forward(self, x):
        return x.sum() + torch.sym_min(x.size(0), 100)

Result:

Unsupported: torch.* op returned non-Tensor int call_function <function sym_min at 0x7fb17c161d30>

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources