mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
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
7 lines
107 B
Python
7 lines
107 B
Python
import sys
|
|
import torch
|
|
|
|
if __name__ == '__main__':
|
|
print(torch.jit.load(sys.argv[1]))
|
|
sys.exit(0)
|