Michael Partheil

Results 11 issues of Michael Partheil

It would be great to have `debug_assert_{relative|ne}_{eq|ne}` macros that are only checked in non optimized builds, similar to `debug_assert!` from the standard library. Implementation should be straightforward, something like: ```rust...

The FAST detector contains the following code in the `get_features` Kernel (https://github.com/arrayfire/arrayfire/blob/master/src/backend/opencl/kernel/fast.cl#L296): ``` y_out[id] = x; x_out[id] = y; ``` I don't fully understand the code but noticed this and...

bug

Opening two windows from the same application/thread displays garbage in the second window on Mac OSX. The other window seems to be fine. Closing one of the windows yields the...

The Readme links to kiss3d.org for documentation but the hosted API documentation there (http://kiss3d.org/doc/kiss3d/) seems to be outdated. Should better link to docs.rs (https://docs.rs/kiss3d/0.17.1/kiss3d/index.html) and maybe completely remove the documentation...

It would be nice if there was a setting to disable the small "Run test" link that's displayed on top of `#[test]` functions. One can globally disable all CodeLens' in...

P-High
enhancement

We've been working on a re-implementation of the original OpenAI text tokenizer ([`SimpleTokenizer`](https://github.com/mlfoundations/open_clip/blob/main/src/open_clip/tokenizer.py)) in Rust, with bindings for Python, called [instant-clip-tokenizer](https://github.com/instant-labs/instant-clip-tokenizer). In our benchmarks it is around 70x faster than...

For a matrix of shape `R, C` nalgebra's SVD decomposition currently computes the singular vector matrices `U` and `V_t` with shapes `R, M` and `M, C` where `M = min(R,...

enhancement
P-medium
breaking change

We've been working on a re-implementation of the [text tokenizer](https://github.com/openai/CLIP/blob/main/clip/simple_tokenizer.py) in Rust, with bindings for Python, called [instant-clip-tokenizer](https://github.com/instant-labs/instant-clip-tokenizer). In our benchmarks it is around 70x faster than the current Python...

Hi there! Thanks for all the great work on this project! I noticed you already have a crate for Nister-Stewenius' five-point algorithm - sadly it appears to not yet be...

Hey, thanks for your work on this nice library! I think it would be great if the main error type of the crate would implement `core::error::Error`, thus making it easier...