Toshiki Teramura
Toshiki Teramura
> I personally think having it for all types would be nice for debugging purposes. I agree this comment even if the output is like ` PyObject(0x12345678)`. I found `Debug`...
#71 writes a README about how accel-derive works
> I would like to write some device helper functions in *.cu, then call them from #[kernel] functions defined in rust-accel. It is impossible currently. Possible way is to link...
This seems to be a bug of accel-derive #53
It will not be simple, but I plan to switch to it. accel/nvptx crate tried to switch from out-of-tree compile of rustc (using xargo) to in-tree compile of rustc. nvptx...
I also reproduced this issue. This `unwrap` occurs when the input vector `temp` at https://github.com/ADMoreau/Rust-PCA/blob/1cce2f34e60bfa59faec219fd45a62a14e7471eb/processing/src/rPCA/algorithm.rs#L95 becomes `NaN` array. With my some debug code ```rust let temp: Array2 = X.to_owned().clone(); println!("temp[0,...
> Lapack trait merges *_ traits, e.g. Eigh_ > Introduce LapackStrict trait for APIs which manage memory strictly. These should be split into another PR
This can be done without breaking change. I drop this PR from 0.13.0 milestone.
This PR is outdated. Passed to #333
Thanks report! > Some functions (including solve_inplace but probably many others) are missing checks that the input arrays have matching shapes. It will be easy to fix each case, but...