Skip to content

DLFW changes #2109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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