Avi Weinstock

Results 8 issues of Avi Weinstock

```rust use euc::{buffer::Buffer2d, Pipeline}; #[derive(Default)] struct Model { xs: Vec, ys: Vec, zs: Vec, } impl Model { fn push_point(&mut self, x: f32, y: f32, z: f32) { self.xs.push(x); self.ys.push(y);...

The following classes (manually assembled by Krakatau) fail to decompile with the `develop` branch of Procyon. ```jasmin .version 49 0 .class super public NestedCatchA .super java/lang/Object .method static public a...

Make `check_packed_ge_small_order` and `get_checked_scalar` private and test-only, since they seem to be unused elsewhere in the repository and expose low-level representation details.

stale
community
need:merge-assist

The implementation uses a trait to fold over tuples, summing the dimensions in one direction and checking for equality in the other, and then uses `fixed_{rows,columns}_mut` if the dimensions are...

Depends on https://github.com/alexheretic/glyph-brush/pull/163 Example image: ![2023-02-20-213218_333x112_scrot](https://user-images.githubusercontent.com/2462937/220233246-2eedfd45-0f93-4ca3-967a-17046ff74452.png)

`ed25519_verify_many` in both the CUDA and OpenCL backends appears to verify the individual signatures in parallel. The subsection "Fast batch verification" from Section 5 of DJB's paper "High-speed high-security signatures"...