-
Is this a bug ?
```
let mut a =array![3.,4.,5.,6.,7.,8.,9.0];
a.accumulate_axis_inplace(Axis(0),|&prev,curr| {*curr *= prev })
// now a is [3.0, 12.0, 20.0, 30.0, 42.0, 336.0, 3024.0], shape=[…
-
Similarly to https://github.com/rust-ndarray/ndarray/issues/1252, it seems that we can use the function `arr0` to create arrays that actually have more dimensions. See the example below.
```
use n…
-
I'm having the same error as other users recently indicated.
Running rosella recover: `[2023-02-12T14:09:01Z ERROR bird_tool_utils::command] Error when running flight process. Exitstatus was : ExitS…
-
Some helper functions might be beneficial to resample the image volume for common use cases. E.g., nibabel implements [resample_to_output] (resample to a given resolution) and [resample_from_to] (resa…
-
Hi,
Thanks for open sourcing this amazing project. I'm wondering what is currently the best approach to use Enzyme in Rust projects? If anyone can point me towards a minimal working example/tutoria…
-
I originally posted this on the rust-ml zulip [here](https://rust-ml.zulipchat.com/#narrow/stream/233471-general/topic/linfa/near/305040135) and another user suggested I open an issue on this repo as …
-
**Is your feature request related to a problem? Please describe.**
Hi, I ran the benchmarks yesterday on my machine (Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz) and did a quick experiment with PGO. The …
-
## 🐛 Bug
`sample_mlc_chat.py` errors out after a while with:
`TVMError: ROCM HIP Error: hipModuleLoadData(&(module_[device_id]), data_.c_str()) failed with error: shared object initialization fail…
-
Following is a list of datatypes which we might need to add in arc-script (imported ADTs). Their actual implementations will be outside of Arc-Script, in Arcon/Arctime/Rust.
* Dynamic Arrays (Same …
-
There is an issue with `TryFrom` implemented for `ArrayView1`, but not for `ArrayView2`.
``` r
rextendr::rust_source(
code = "#[extendr(use_try_from = true)] fn this_works(_x : ArrayView2) {…