forked from facebookresearch/PyTorch-BigGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (21 loc) · 679 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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},
)