zeroexcuses
zeroexcuses
I did not mean to sound entitled. I'm a big fan your stdweb/cargo-web work. :-) Lately, I've been doing lots of hacks via just using js! { .... }. I...
While I would love to see compile time dimension working, I see a number of issues here: 1. With the current state of rustc, typenum can really slow down compile...
Re 2: Sorry for the confusion. Let me try this. Suppose we're dealing with just 1-d tensors everywhere. ``` fn concat(m: &Tensor, n: &Tensor) -> Tensor { ... } fn...
To make matters more complicated, once we throw in convolutions / pooling, we'll need rustc to be able to solve algebraic equalities involving +, -, div by constant, floor, ceiling.
Let me see if I understand your argument correctly. Are you saying: * Rustc does not need to solve algebraic equalities because given the way Rust generics works, these functions...
1. You're right. I'm wrong. :-) 2. Thanks for your patience in explaining this step by step. 3. This is really exciting. By the way rustc generics works, it looks...
Is there some trait Disk_Storage_T where I can write my own checkpoint+wal struct, have it implement Disk_Storage_T, and then swap out sled for my own storage backend ?
Is there a easy way to hack this so that in addition to Json, we also support Ron ? That might be a solution to this. Context: I am currently...