-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Remove Incorrect Extension Registration of tvm::Target #1272
Conversation
@kazum this change causes a following error in osx:
|
@nishi-t Thanks for your comment. It looks like clang doesn't support -Bsymbolic-functions option. |
0419532
to
4c3e4a8
Compare
Sorry I didn't take a closer look. This actually reveals a BUG that needs to be fixed. Specifically, tvm::Target is no longer an extension type, but a node type now, and we should remove the extension registeration here https://github.com/dmlc/tvm/blob/master/topi/src/topi.cc#L50 |
@tqchen Okay, I'll fix the problem based on your comment, thanks. |
4c3e4a8
to
6d11057
Compare
Thanks! this is merged |
This PR fixes #1244 for CMake.
Here is an example configuration to produce the problem:
CMAKE_BUILD_TYPE=Debug
CMAKE_CXX_FLAGS_DEBUG="-g -O0"