Dynamic Lookup Table #21952
Unanswered
chrisflesher
asked this question in
Q&A
Replies: 1 comment
-
You could call PyTorch code for this sort of operating using torch2jax. |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I was interested in creating an unbounded voxel map. I think this requires some data structure that can convert a voxel location (key) to data storage location (value). I found this discussion which talks about using
searchsorted
and cuckoo hash table to do this.I saw that BCOO sparse gather is working recently but not sure that I can use this since keys could contain negative integers?
I took a crack at implementing a data structure that can might be able to scale to larger data sizes. Is something like this a good idea or am I totally barking up the wrong tree? Is there a library that does this kind of stuff already?
Beta Was this translation helpful? Give feedback.
All reactions