You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently our tests rely on the ability to wait for gpu work to be finished. This is accessible through a mistake of an API on WebGL, but synchronous waiting is not supported with webgpu.
In order for our tests to work on WebGPU, we will need to make them, at least in part, asynchronous. Another possible solution is to execute them in a web worker via wasm-thread which works out of the box.
The text was updated successfully, but these errors were encountered:
Currently our tests rely on the ability to wait for gpu work to be finished. This is accessible through a mistake of an API on WebGL, but synchronous waiting is not supported with webgpu.
In order for our tests to work on WebGPU, we will need to make them, at least in part, asynchronous. Another possible solution is to execute them in a web worker via
wasm-thread
which works out of the box.The text was updated successfully, but these errors were encountered: