-
Notifications
You must be signed in to change notification settings - Fork 1.9k
TF package size fix #3983
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
TF package size fix #3983
Changes from 8 commits
8749a10
fe25bf6
cb446be
b5ee220
b9a7471
80e238d
2ef424d
fd25a45
40b47ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,20 +9,12 @@ | |
| <TensorFlowConfig Include="windows" FileExtension=".zip" FilesFromArchive="lib\tensorflow.dll;include\tensorflow\c\LICENSE" Runtime="win-x64"/> | ||
| <TensorFlowConfig Include="linux" FileExtension=".tar.gz" | ||
| FilesFromArchive="lib\libtensorflow.so; | ||
| lib\libtensorflow.so.$(TensorFlowMajorVersion); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are all these dynamic libraries not necessary then?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The binaries deleted are identical to the ones remaining. They are symlinked in the tar file. But when they get to the nuget package, they become copies. |
||
| lib\libtensorflow.so.$(TensorFlowVersion); | ||
| lib\libtensorflow_framework.so; | ||
| lib\libtensorflow_framework.so.$(TensorFlowMajorVersion); | ||
| lib\libtensorflow_framework.so.$(TensorFlowVersion); | ||
| include\tensorflow\c\LICENSE" | ||
| Runtime="linux-x64" /> | ||
| <TensorFlowConfig Include="darwin" FileExtension=".tar.gz" | ||
| FilesFromArchive="lib\libtensorflow.dylib; | ||
| lib\libtensorflow.$(TensorFlowMajorVersion).dylib; | ||
| lib\libtensorflow.$(TensorFlowVersion).dylib; | ||
| lib\libtensorflow_framework.dylib; | ||
| lib\libtensorflow_framework.$(TensorFlowMajorVersion).dylib; | ||
| lib\libtensorflow_framework.$(TensorFlowVersion).dylib; | ||
| include\tensorflow\c\LICENSE" | ||
| Runtime="osx-x64" /> | ||
|
|
||
|
|
||
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.
nit: could you format the windows config the same way you did below for linux and mac?
Not important if you are not doing another iteration.