Files
pytorch/test/load_torchscript_model.py
Han Qi d65414d145 Add test for FC/BC for torchscript file.
Summary:
title

Test Plan:
CI

Reviewers:

Subscribers:

Tasks:

Tags:

Fixes #ISSUE_NUMBER

Pull Request resolved: https://github.com/pytorch/pytorch/pull/75136
Approved by: https://github.com/gmagogsfm
2022-04-13 23:23:13 +00:00

7 lines
107 B
Python

import sys
import torch
if __name__ == '__main__':
print(torch.jit.load(sys.argv[1]))
sys.exit(0)