Skip to content

Commit

Permalink
Merge pull request #2109 from pytorch/DLFW_changes
Browse files Browse the repository at this point in the history
DLFW changes
  • Loading branch information
apbose authored Jul 14, 2023
2 parents 9cb57c2 + 267a5a2 commit 84abc67
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/int8/training/vgg16/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
torch>=1.10.0
tensorboard>=1.14.0
nvidia-pyindex
--extra-index-url https://pypi.ngc.nvidia.com
Expand Down
4 changes: 2 additions & 2 deletions py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import glob
import setuptools
from setuptools import setup, Extension, find_packages
from setuptools import setup, Extension, find_namespace_packages
from setuptools.command.build_ext import build_ext
from setuptools.command.develop import develop
from setuptools.command.install import install
Expand Down Expand Up @@ -440,7 +440,7 @@ def run(self):
},
zip_safe=False,
license="BSD",
packages=packages if FX_ONLY else find_packages(),
packages=packages if FX_ONLY else find_namespace_packages(),
package_dir=package_dir if FX_ONLY else {},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
9 changes: 9 additions & 0 deletions third_party/cuda/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ cc_library(
],
}),
hdrs = glob([
"include/**/*.h",
"include/**/*.hpp",
"include/**/*.inl",
"include/**/*",
]),
includes = ["include/"],
Expand Down Expand Up @@ -48,6 +51,9 @@ cc_library(
]),
}),
hdrs = glob([
"include/**/*.h",
"include/**/*.hpp",
"include/**/*.inl",
"include/**/*",
]),
includes = ["include/"],
Expand All @@ -65,6 +71,9 @@ cc_library(
]),
}),
hdrs = glob([
"include/**/*cublas*.h",
"include/**/*.hpp",
"include/**/*.inl",
"include/**/*",
]),
includes = ["include/"],
Expand Down

0 comments on commit 84abc67

Please sign in to comment.