Ivo Ivanov
Results
2
issues of
Ivo Ivanov
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}; use numpy::ndarray::Array2; #[pyclass(get_all,...
### Description Adding many timers in a for-loop is very slow since it takes overall quadratic time. ### Motivation So I stumbled upon this issue when I was creating 10.000...
enhancement