commit | 0b1bba3f287e6228c13b90eaebba9e57f7d6f883 | [log] [tgz] |
---|---|---|
author | Lokbondo Kung <lokokung@google.com> | Thu Aug 29 17:44:56 2024 +0000 |
committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Aug 29 17:44:56 2024 +0000 |
tree | 01bc28611ef88f32da2b7aa8e6455b81c45117d1 | |
parent | e81af3d568b08249e97092023de256c257cbc862 [diff] |
[dawn][native] Make sure to hold Device lock before handling errors. - Briefly, the bug we saw was a result of errors being generated in the Device during a ProcessEvent call which was not taking the appropriate Device lock. With the minimal change in PS1 by acquiring the lock, it exposed an existing issue where we could have lock acquiring inversion between the mEvents lock in the EventManager and the device lock. To fix this, we needed to release the mEvents lock in ProcessEvents before calling into the code that needs the device lock. Once that was fixed, we the tests were failing because ProcessEvents is no longer a fully "atomic" operation and the WaitRefs asserts were being triggered. To fix that, we removed the WaitRef entirely since it was more restrictive than the desired behavior. Bug: 354748063 Change-Id: I586b3acdb8801ddd9d4b2b57da7824e37e23e595 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/204154 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Kai Ninomiya <kainino@chromium.org> Commit-Queue: Loko Kung <lokokung@google.com>
Dawn is an open-source and cross-platform implementation of the WebGPU standard. More precisely it implements webgpu.h
that is a one-to-one mapping with the WebGPU IDL. Dawn is meant to be integrated as part of a larger system and is the underlying implementation of WebGPU in Chromium.
Dawn provides several WebGPU building blocks:
webgpu.h
version that Dawn implements.webgpu.h
.Helpful links:
Developer documentation:
User documentation: (TODO, figure out what overlaps with the webgpu.h docs)
BSD 3-Clause License, please see LICENSE.
This is not an officially supported Google product.