-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Instant error STATUS_ACCESS_VIOLATION on Windows with Rust lib #116
Comments
Thanks for submitting the issue, @0xqd! Can you please clarify if you've detected an issue with the benchmark or the library itself? |
@ashvardanian The repo I use to reproduce is the one from you: Environment the script run on:
Error
I edit the title of the post to proper error message Minimal reproducible code: #[cfg(test)]
mod tests {
use stringzilla::{sz};
#[test]
fn test_stringzilla() {
sz::find("hello", "l");
}
} Error:
|
@0xqd What kind of Windows machine are you running on? Is that a Aarch64 Arm-based machine by any chance? |
This might be coming from Rust itself, there is a similar issue reported for Arm-based Windows setups: rust-lang/rust#118462 |
@ashvardanian it's x86_64 with Intel 13900K. Yeah I have seen that report, not sure if you have the solution. |
Is that issue still bothering you, @0xqd? I can try running it on a Windows machine later today 🤗 |
hi there @ashvardanian, instead of using Windows just for convenience, I switch everything to Linux to be problem free now. |
That should make your life easier down the road 🤗 |
I got instant STATUS_ACCESS_VIOLATION while running the memchr_stringzilla benchmark, it works totally fine with WSL2 on Windows but not on Windows itself.
The text was updated successfully, but these errors were encountered: