File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
examples/int8/training/vgg16 Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1- torch >= 1.10.0
21tensorboard >= 1.14.0
32nvidia-pyindex
43--extra-index-url https://pypi.ngc.nvidia.com
Original file line number Diff line number Diff line change 22import sys
33import glob
44import setuptools
5- from setuptools import setup , Extension , find_packages
5+ from setuptools import setup , Extension , find_namespace_packages
66from setuptools .command .build_ext import build_ext
77from setuptools .command .develop import develop
88from 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" ,
Original file line number Diff line number Diff 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/" ],
You can’t perform that action at this time.
0 commit comments