Replies: 1 comment
-
Thanks for the kind words @Nosenzor . I'm glad you like the LRU memoizer. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Greg,
I've been a happy
parallel_hashmap
user for a year or so. And now i want to usegtl
for the LRU memoizer. LRU memoizer is a super nice work, thank you ! I've tested on a mac and i could save a lot of computation time using the memoizer.Then I've tested it on windows and MSVC is complaining about
uint64_t umul128(uint64_t,uint64_t,uint64_t *)
that is defined in bothparallel_hashmap
andgtl
.I was thinking to remove parallel_hashmap to use only
gtl
that also havehashmaps
, i suspect they are the same map and set but i wanted a confirmation before doing that change.Beta Was this translation helpful? Give feedback.
All reactions