Assah Bismark

Rust

Windows ONNX Runtime Linking Errors

Solving LNK2019 errors when building Rust projects with ONNX Runtime on Windows CI.
Windows ONNX Runtime Linking Errors: A CI Debugging Story I was setting up a GitHub Actions pipeline for a Rust project that uses for embedding generation. Linux and macOS built fine. Windows? Not so much. What should have been a straightforward cross-platform build turned into a deep dive into how...More ›

Rust concurrency with Mandelbrot Set

Exploring concurrency in Rust programming.
Rust excels in concurrent programming by enforcing rules that prevent memory errors and data races. For example: - Mutexes: Rust ensures you only access shared data when holding the lock and releases it automatically. In C/C++, this relationship is often left to comments. - Read-Only Data: Rust prev...More ›