-
Notifications
You must be signed in to change notification settings - Fork 226
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-TRT C++ conversion example #271
TF-TRT C++ conversion example #271
Conversation
5cbb42d
to
c50c2bd
Compare
I think we're trying to follow convention of labeling PR titles with the tag |
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.
Mainly build system / scripts and instructions need to be updated for final version, other things are minor.
cd tensorrt/tftrt/examples/cpp/image-classification | ||
mkdir build | ||
cd build | ||
cmake .. |
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.
Update to include -D...
when CMakeLists is finalized
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.
What is the purpose of the these, do we want to add hints for TF_SOURCE_DIR / TF_INSTALL_DIR?
94c43ee
to
114ebe1
Compare
c50c2bd
to
08a055c
Compare
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.
Thanks @christopherbate for the review, I have addressed the issues.
To compile the example, one needs PR tensorflow/tensorflow#52595 |
08a055c
to
81910f9
Compare
0a45eae
to
0208b44
Compare
f5ca130
to
74ab36f
Compare
81910f9
to
fb0a2cf
Compare
951f264
to
65ed25c
Compare
dd03467
to
653ea0a
Compare
cf30938
to
8d2c59f
Compare
064de53
to
eb97b19
Compare
27ef7b8
to
535c132
Compare
@meena-at-work: for review |
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.
LGTM!
C++ conversion example to illustrate conversion using dynamic shape mode.
This PR depends on tensorflow/tensorflow#52012