mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
See #78983 for more details. This PR adds a new option argument to avoid changing the existing one and added unit tests to cover the arugments. Pull Request resolved: https://github.com/pytorch/pytorch/pull/79215 Approved by: https://github.com/cccclai
12 lines
263 B
Python
12 lines
263 B
Python
# Little stub file to get BUILD.bazel to play along
|
|
|
|
import os.path
|
|
import sys
|
|
|
|
root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
sys.path.insert(0, root)
|
|
|
|
import tools.jit.gen_unboxing
|
|
|
|
tools.jit.gen_unboxing.main(sys.argv[1:])
|