-
Notifications
You must be signed in to change notification settings - Fork 43
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
mobile with gpu problem #41
Comments
Are you using pipeline mode? Pipeline mode requires the platform to support rendering to floating point textures. Sadly, this seems almost entirely lacking on mobile at the moment. Choose your own adventure:
|
I am using standalone sgemm (which is the default) i think. Here is my simple code:
Here is a test page I created. If you open in desktop browser, you will see 0.02 which is the correct result. However try to open with an android phone (chrome in my case), it shows 4.00... |
Thanks for the test case. On IOS 10 safari (iPhone) the test page gives "0.01999". This must be an Android specific issue. I'll work on getting a test device for debugging this. It may take a while. If you'd like to investigate further and submit a PR instead of waiting, that's very welcome. If you would like to help with this, your intuition that the problem lies in the float encode seems reasonable. I'd start there. Additionally, the float encode needs to be tested independently and more thoroughly. If you'd like to help with that testing, I would very much appreciate it. See #11 for a start. |
I will try to look into encode, hope I can find the problem. |
Don't hesitate to reach out, here or via email, if you need help. I'm also happy to do a video chat with you, if that would help. |
I tried simple matrix multiplications(1x1 with 1x1, 2x2 with 2x2, 1x2 with 2x1...) with weblas.sgemm on Android 7.0 with:
but it is always producing the same number: 4.000000476837158 no matter what the values of the matrixes are (eg: 2x2 with 2x2 produces a 2x2 matrix where all of the 4 numbers are the same number)
It produces correct results on desktop browsers so I suspect :) that it maybe is related with encode_float. What can be the problem?
The text was updated successfully, but these errors were encountered: