-
Notifications
You must be signed in to change notification settings - Fork 1.6k
gemv no check on internal buffer size #173
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
Comments
seems to be similar to gh-154 |
on x86_64 only seems to crash when threads are used (in kernel/x86_64/sgemv_t.S) |
Hi @juliantaylor , Could you test it ? Thank you Xianyi |
64bit seems to work now but 32 bit still crashes with a segmentation fault in kernel/x86/gemv_t_sse.S:214 |
Hi @juliantaylor , We fixed sgemv_t bug on x86. Now, it can pass your codes. Meanwhile, we also fixed the similar bug in gemv_n XIanyi |
thanks, it now also works in 32bit |
see gh-154 for a testcase that still crashes on i386 |
following script exceeds the internal buffer (16MB on x86, 32MB on x86_64) and just segfaults on x86 and x86_64
there is no check if the number of rows exceeds the internal buffer in interface/gemv.c
The text was updated successfully, but these errors were encountered: