Eric Christiansen
Eric Christiansen
I would love this! I just asked about it on Stack Overflow, FYI: https://stackoverflow.com/questions/73125759/synchronize-code-between-two-machines-for-pair-programming
For replication, I'd love to see an option for simple peer discovery and synchronization via gossip with eventual consistency and some simple heuristics for conflict resolution. AFAICT there's a market...
My project is pretty sprawling, so it might be hard to whittle this down to a minimal reproduction case. But if there's a command I can run to collect useful...
BTW, do you see that it's not just `async-process` that was downgraded? It's the majority of the packages.
# `Arc` FYI you can define the `TapeGlobal` state like this: ```rust thread_local! { static TAPE_GLOBAL: RefCell = RefCell::new(None); } ``` IIUC, `thread_local!` ensures there are no threading concurrency issues,...
The slowness is very intermittent, so it's hard to say. Currently Amethyst is running fine with both WhatsApp and Lens running too. On Tue, Jun 6, 2023 at 7:19 PM...
Haha, I [created a pull request](https://github.com/serde-rs/bytes/pull/38) with almost exactly the same name, not realizing that this existed (I'll delete it now). But, can we please get this merged in?
Does anyone know why this is taking so long? I.e., should I wait for a fix or should I switch to a different crate?
More to the point, is it possible to train models defined in Rust, saved, and then re-loaded? I've found training to be very slow in Rust with a Rust-defined model,...
I have a workaround that lets you create scalar Tensors inside the closure: Manually init the value of the Tensor to the given value, like so: ```rust &mut |inputs: &[Tensor]|...