-
Notifications
You must be signed in to change notification settings - Fork 5
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
merge CMake build process and Python wrapper shared library into main #14
base: main
Are you sure you want to change the base?
Conversation
Thanks @adamant-pwn. Is this only the CMake integration or more? |
reg0->maps[m].tags); | ||
if(reg0->maps[m].tags) {free(reg0->maps[m].tags); reg0->maps[m].tags = NULL;} | ||
} | ||
if(!p->su_stop || k < p->su_stop){ |
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.
Most changes in this file are trivial (i.e. remove static
), but this one looks like a refactoring that was done in tflite2
branch, but not in main
. I essentially copied this block from tflite2
, so it'd be nice for @canfirtina to confirm that there were no substantial changes from the main that were overwritten.
@canfirtina this includes:
What it does not include yet:
|
if(RUCLIENT_ENABLED) | ||
set_target_properties(${TARGET_NAME} PROPERTIES CXX_STANDARD 20) | ||
target_compile_definitions(${TARGET_NAME} PRIVATE RUCLIENT_ENABLED) | ||
target_sources(${TARGET_NAME} PRIVATE rawhash_ruclient.cpp) |
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.
As I'm not sure about whether we plan to keep using rawhash_ruclient.cpp
or stick to Python client, we might also want to drop this file altogether. Any thoughts?
I tried my best to only salvage what was really necessary from tflite2 branch. I'd really appreciate some external review and verification that it works as intended after the merge.