-
Notifications
You must be signed in to change notification settings - Fork 370
Removal of BAZEL build files from python package and changes to make cpp tests work #3641
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
base: main
Are you sure you want to change the base?
Conversation
356899f
to
7024bf2
Compare
Once the wheel is built, the Bazel files are no longer needed. Fixes #3477
5f27f63
to
5eac5e5
Compare
third_party/BUILD
Outdated
@@ -0,0 +1,53 @@ | |||
load("@rules_cc//cc:cc_library.bzl", "cc_library") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this to `//third_party/torch_tensorrt/BUILD
docker/MODULE.bazel.ngc
Outdated
name = "torch_tensorrt", | ||
build_file = "@//third_party:BUILD", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adjust this path accordingly
@@ -613,8 +613,6 @@ def run(self): | |||
package_data.update( | |||
{ | |||
"torch_tensorrt": [ | |||
"BUILD", | |||
"WORKSPACE", | |||
"include/torch_tensorrt/*.h", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we just delete the bzl folder now?
Follow up from #3615