Alex Andreba
Alex Andreba
### Zig Version 0.11.0-dev.3380+7e0a02ee2 ### Steps to Reproduce and Observed Behavior This bug was found executing a shared-memory Wasm library on Deno. ***When the code is compiled with `ReleaseSmall`, the...
Given the recent stabilization of `async fn` and return `impl Trait` in traits on [Rust 1.75.0](https://github.com/rust-lang/rust/releases/tag/1.75.0), perhaps it should be time to consider moving away from the `async_trait` crate. This...
Studying adding support for Rust-written programs. The current plan would be to create a program that would facilitate the integration of Blaze with [rust-gpu](https://github.com/EmbarkStudios/rust-gpu). Further details to be specified.
Currently, Blaze doesn't support images, since my knowledge on the subject is limited. The best method to add support for this feature is to be discussed here, alongside other potential...
## Thread safety Currently, programs created with the `#[blaze]` macro will hold their kernels inside [`Mutex`es](https://doc.rust-lang.org/stable/std/sync/struct.Mutex.html) (one per kernel). Whilst this implementation has the benefit of being thread-safe, it also...
# Proposal ## Problem statement Currently, if you are to use any of the locks provided by the standard library, you are forced to handle lock poisoning. Most of the...
Currently, the output order of the coefficients is documented as: > Elements in the output are ordered by ascending frequency, with the first element corresponding to frequency 0. But this...
### Zig Version 0.12.0 ### Steps to Reproduce and Observed Behavior [Godbolt example](https://godbolt.org/z/nrWfxrMTz) When trying to compile the following program: ```zig pub export fn setTwelve(ptr: *i64) void { @atomicStore(i64, ptr,...