-
Notifications
You must be signed in to change notification settings - Fork 2
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
[Features] Integrating ART #29
Conversation
add radix tree benchmark
Can you add back the |
5c3110a
to
1eb0c97
Compare
Just added back! |
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.
Please review the comments and fix where applicable
src/bliss/bench_ART.h
Outdated
ART::loadKey(key, ARTkey); | ||
|
||
uint8_t depth = 0; | ||
ART::insert(_index, &_index, ARTkey, depth, value, KEY_SIZE); |
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.
@JslYoon why is this trying to insert value with size equivalent to KEY_SIZE? Remember KEY_SIZE != VALUE_SIZE always, it just so happens to be the case for our current set of experiments!
* [Refactor] moved util code to separate header files * [FEAT] added unit tests * Added detailed instructions on integrating new index to readme * minor refactor to define * minor refactor to header defs
* Create cmake-single-platform.yml for Github actions workflow * Update cmake-single-platform.yml * added a verifier to check if unit tests exist * minor edit * minor edit
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 👍
I am closing this PR - will be creating a new one for this... |
Adding ART index for Bliss benchmark