Skip to content
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

[Hexagon] Make local symbols visible to loaded modules in RPC server #11611

Merged
merged 1 commit into from
Jun 8, 2022
Merged

[Hexagon] Make local symbols visible to loaded modules in RPC server #11611

merged 1 commit into from
Jun 8, 2022

Conversation

kparzysz-quic
Copy link
Contributor

@kparzysz-quic kparzysz-quic commented Jun 7, 2022

The simulator library libhexagon_rpc_sim.so contains TVM runtime built into it, but since it's loaded as a "local" library these symbols are not visible to shared libraries loaded by subsequent dlopens. (Same applies to symbols from the C++ runtime.)

To make these symbols visible, dlopen the defining libraries as "global". (Re-dlopeninig an already loaded library is a well-defined operation.)

cc @mehrdadh

@github-actions github-actions bot requested a review from mehrdadh June 7, 2022 19:34
@mehrdadh
Copy link
Member

mehrdadh commented Jun 7, 2022

let's wait for this(#11613) and rerun this PR

Copy link
Member

@mehrdadh mehrdadh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Since the CI tests are disable we need to rerun this once the fix is merged.

@kparzysz-quic
Copy link
Contributor Author

Sure, will do.

The simulator library `libhexagon_rpc_sim.so` contains TVM runtime built
into it, but since it's loaded as a "local" library these symbols are not
visible to shared libraries loaded by subsequent dlopens. (Same applies to
symbols from the C++ runtime.)

To make these symbols visible, dlopen the defining libraries as "global".
(Re-dlopeninig an already loaded library is a well-defined operation.)
@kparzysz-quic
Copy link
Contributor Author

#11613 is merged, and I rebased this PR.

Copy link
Member

@mehrdadh mehrdadh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks!

@kparzysz-quic kparzysz-quic merged commit b00b122 into apache:main Jun 8, 2022
@kparzysz-quic kparzysz-quic deleted the export-symbols branch June 8, 2022 12:24
Kathryn-cat pushed a commit to Kathryn-cat/tvm that referenced this pull request Jun 10, 2022
…pache#11611)

The simulator library `libhexagon_rpc_sim.so` contains TVM runtime built
into it, but since it's loaded as a "local" library these symbols are not
visible to shared libraries loaded by subsequent dlopens. (Same applies to
symbols from the C++ runtime.)

To make these symbols visible, dlopen the defining libraries as "global".
(Re-dlopeninig an already loaded library is a well-defined operation.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants