-
Notifications
You must be signed in to change notification settings - Fork 33
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
Fix bug descriptors pmgdqh #47
Conversation
0778031
to
584c749
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.
Do split the commits where needed and maybe name the branch better? :)
@@ -0,0 +1,256 @@ | |||
# | |||
# The MIT License |
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.
Could you please split out the test commit.
src/DescriptorsCommand.cc
Outdated
@@ -876,7 +877,7 @@ Json::Value FindDescriptor::construct_responses( | |||
|
|||
if (cache.isMember("cache_obj_id")) { | |||
// TODO CHECK THIS UNSAFE ERASE | |||
_cache_map.unsafe_erase(cache["cache_obj_id"].asInt64()); | |||
// _cache_map.unsafe_erase(cache["cache_obj_id"].asInt64()); |
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.
Any reason you have this line commented out? If not needed, just remove it
for i in range(0,concurrency): | ||
thread_add = Thread(target=self.addEntity,args=(i, results) ) | ||
thread_add.start() | ||
thread_arr.append(thread_add) |
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 are these set of changes for? I am lazy to figure it out myself :) seems like a different commit from a quick scan.
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.
stuff for checking that concurrent read/writes worked. you only need to worry about it if the test fails :)
584c749
to
ca6523f
Compare
* Adding FLINNG Library * Add the default value of parameters of the Flinng descriptor Set * Update both dockerfiles to match (other than coverage) * remove parma value from Flinngvoid FlinngDescriptorSet::getFlinngParams
Fix #37 , #33.