Does HierarchicalKV natively support thread-safe concurrent read and write operations across multiple different CUDA streams on the same instance?
Example Case:
- Host Thread A: Invokes
.find(..., stream_A) targeting HashTable_Instance
- Host Thread B: Simultaneously invokes
.insert_or_assign(..., stream_B) targeting the exact same HashTable_Instance
Thanks
Does HierarchicalKV natively support thread-safe concurrent read and write operations across multiple different CUDA streams on the same instance?
Example Case:
.find(..., stream_A)targetingHashTable_Instance.insert_or_assign(..., stream_B)targeting the exact sameHashTable_InstanceThanks