Skip to content

Commit 84abc67

Browse files
authored
Merge pull request #2109 from pytorch/DLFW_changes
DLFW changes
2 parents 9cb57c2 + 267a5a2 commit 84abc67

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

examples/int8/training/vgg16/requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
torch>=1.10.0
21
tensorboard>=1.14.0
32
nvidia-pyindex
43
--extra-index-url https://pypi.ngc.nvidia.com

py/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import glob
44
import setuptools
5-
from setuptools import setup, Extension, find_packages
5+
from setuptools import setup, Extension, find_namespace_packages
66
from setuptools.command.build_ext import build_ext
77
from setuptools.command.develop import develop
88
from setuptools.command.install import install
@@ -440,7 +440,7 @@ def run(self):
440440
},
441441
zip_safe=False,
442442
license="BSD",
443-
packages=packages if FX_ONLY else find_packages(),
443+
packages=packages if FX_ONLY else find_namespace_packages(),
444444
package_dir=package_dir if FX_ONLY else {},
445445
classifiers=[
446446
"Development Status :: 5 - Production/Stable",

third_party/cuda/BUILD

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ cc_library(
2020
],
2121
}),
2222
hdrs = glob([
23+
"include/**/*.h",
24+
"include/**/*.hpp",
25+
"include/**/*.inl",
2326
"include/**/*",
2427
]),
2528
includes = ["include/"],
@@ -48,6 +51,9 @@ cc_library(
4851
]),
4952
}),
5053
hdrs = glob([
54+
"include/**/*.h",
55+
"include/**/*.hpp",
56+
"include/**/*.inl",
5157
"include/**/*",
5258
]),
5359
includes = ["include/"],
@@ -65,6 +71,9 @@ cc_library(
6571
]),
6672
}),
6773
hdrs = glob([
74+
"include/**/*cublas*.h",
75+
"include/**/*.hpp",
76+
"include/**/*.inl",
6877
"include/**/*",
6978
]),
7079
includes = ["include/"],

0 commit comments

Comments
 (0)