-
I tried to write Python bindings for a struct containing `ndarray` type fields, but it does not compile: (`rust-numpy` v0.22.0)
```Rust
use pyo3::prelude::*;
use pyo3::{pymodule, Bound, PyResult};
…
-
Hello. As it seems, using ndarray 0.16.0 (latest now) breaks some implementations in ndarray-linalg, such as `ndarray_linalg::solve::Inverse` (see picture below using rust-analyzer diagnostic). I don'…
-
I'm executing exactly the same code as the winequality_svm example, with my Cargo.toml as close as possible to the example Cargo.toml
```toml
[package]
name = "svm_example"
version = "0.1.0"
edit…
-
FWIW, came across this repo:
https://github.com/getditto/rn-jsi-rust-bridging
and accompanying article:
https://ditto.live/blog/bridging-react-native-and-rust-via-jsi
and some other of their rela…
-
**Describe the bug**
`ThreadSanitizer` found a data race in `burn-ndarray` during a CI run
```
WARNING: ThreadSanitizer: data race (pid=15776)
Write of size 4 at 0x7b54000102a4 by thread T13…
-
For making examples of physical systems, it would be helpful to run some simulations. I would like to serve the dual purpose of implementing those simulations using rust crates (even if they require n…
-
## Purpose
The idea behind this collection is to provide an index to easily navigate all currently open ndarray's issues which are **immediately** actionable.
This is meant to be a good starting p…
-
I reference a discussion from https://github.com/rust-ndarray/ndarray/issues/1272#issuecomment-2325747608:
@fre-hu wrote:
> I think the simplest way is to add dynamic rank as a new shape type and …
-
Hi.
Obviously, this crate has not received much attention from the maintainers for the last two years at least. If the current maintainers don't have the time, energy, or will to spend time on ndar…
-
Issue based on discussion #2315, @antimora
To my best knowledge, here's how to load a tensor:
1. In python:
Ensure you wrap the tensor with dict before save, e.g.
```python
…