Eric Christiansen
Eric Christiansen
`ordered_float` is the [most popular](https://crates.io/crates/ordered-float) order-providing wrapper for floats. It would be good to support its two main types: `NotNan` and `OrderedFloat`.
Please add a method for splitting on a given axis, returning an iterator over subtensors selected in that axis. For example, suppose `mytensor` is this `2x3` tensor: ```rust [ [1,...
1. Adds an empty `.rustfmt.toml` so formatting for this project will be respected in workspaces with different formatting. 1. Adds `unstack`, which is the inverse of `stack`. Note: I've never...
# TapeGlobal Here's another tape-tracking API to consider, as implemented in client code: ```rust type FloatInner = f32; type DfdxDevice = Cpu; thread_local! { static TAPE_GLOBAL: once_cell::sync::Lazy< Mutex, > =...
The merge semantics for `Arc` seem a bit unintuitive. In particular, one would hope that when these tapes are merged, they would essentially be replaced with one tape which is...
Code to reproduce for `OwnedTape`: ```rust let x = dev.tensor(1.0); let y = x .clone() .put_tape(OwnedTape::::default()) + x.with_empty_tape(); // Crash is here. y.backward(); ``` Code to reproduce for `Arc`: ```rust...
_Thanks for working on this! I once had a project where we regularly worked with 6 dimensional tensors and it was such a pain to keep track of the axes...
Please document how to call Python from Rust when the Python code has a nested directory structure. I'd like to wrap a nested Python module (package?) using repeated calls to...
_Thanks for creating Amethyst! It has really helped me organize my desktops!_ Amethyst is extremely slow - I'm experiencing a latency of ~5 seconds between the time I issue a...
`apiVersion: kubescheduler.config.k8s.io/v1beta2` was [removed in v1.28](https://devops.stackexchange.com/a/17848/38952). But, the current code uses it here: https://github.com/pingcap/tidb-operator/blob/7cb46a152bde1bee61409a91c64a638156b423ae/charts/tidb-operator/templates/config/_scheduler-config-yaml.tpl#L2 So, please bump the version!