mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 00:20:18 +01:00
Summary: as title Test Plan: sandcastle and oss CI Differential Revision: D37087229 Pull Request resolved: https://github.com/pytorch/pytorch/pull/79330 Approved by: https://github.com/dhruvbird
10 lines
323 B
Python
10 lines
323 B
Python
# Only used for PyTorch open source BUCK build
|
|
# @lint-ignore-every BUCKRESTRICTEDSYNTAX
|
|
# @lint-ignore-every FBCODEBZLADDLOADS
|
|
|
|
def fb_python_library(**kwgs):
|
|
if read_config("pt", "is_oss", "0") == "0":
|
|
fail("This file is for open source pytorch build. Do not use it in fbsource!")
|
|
|
|
python_library(**kwgs)
|