加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE.txt file in the root directory of this source tree.
import os
from setuptools import setup
from torch.utils import cpp_extension
if __name__ == "__main__":
if int(os.getenv("PBG_INSTALL_CPP", 0)) == 0:
setup()
else:
setup(
ext_modules=[
cpp_extension.CppExtension(
"torchbiggraph._C", ["torchbiggraph/util.cpp"]
)
],
cmdclass={"build_ext": cpp_extension.BuildExtension},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化