awaited-hare

Results 10 comments of awaited-hare

For my current project, repeated keys are not an issue as long as each key (and value) at least appears once. The faster the better. Given such a iteration method,...

Thanks for your detailed response. `impl Serialize for HashTable { fn serialize(&self, serializer: S) { // won't block writers, but may serialize duplicate keys and may not return keys that...

I'm not familiar with Redis's serialization model, but it sounds like it solves the serialization problem in an elegant way. However, when we want to iterate through the values (and...

+1 for `trace`. Example usage in the `h2` project: https://github.com/hyperium/h2/blob/d3b9f1e36aadc1a7a6804e2f8e86d3fe4a244b4f/src/proto/connection.rs.

Supporting writing PyTorch extension in Rust will be extremely useful, especially if you want to do more complicated operations (just like the motivation of PyTorch official Cpp/CUDA extension tutorial). However...

@LaurentMazare Any thoughts on this? I'd like to help if needed.

@LaurentMazare Maybe we can create a user guide on how to create Python module with `tch` based on what @SunDoge has done?

This is very much desired, especially when a webpage contains many static contents. Translating them to JSX manually is a lot of work.