jbncode
jbncode
I assume nothing has happened on this issue? I'd be willing to try modifying `gemm_tr` to use `matrixmultiply` if nobody else wants to work on it. The performance difference is...
For example to compute a covariance matrix.
@mchant Adding a filter works easily for points, but is more complicated for lines, see e.g. #429
I'm experiencing the same issue. I found that enabling the `libc` feature of crossterm makes it work again. It looks like 0.27 always uses the "libc" method, but in 0.28...
Thanks for looking into this. For the following program: ```rust fn main() { crossterm::terminal::enable_raw_mode().unwrap(); } ``` I get this output from strace, which does indeed point to TCGETS2 being the...
Here's the strace output with the libc feature: ``` execve("./target/debug/crossterm-test", ["./target/debug/crossterm-test"], 0x7fffecb9dcd0 /* 49 vars */) = 0 brk(NULL) = 0x7fffe2a39000 arch_prctl(0x3001 /* ARCH_??? */, 0x7fffe9e0e8a0) = -1 EINVAL (Invalid...
Yes, that rustix patch seems to fix it for me. Thanks!