commit | 06e23ab5d408c72a3887a4f42749365b06b4593a | [log] [tgz] |
---|---|---|
author | Natalie Chouinard <chouinard@google.com> | Wed Aug 07 18:07:27 2024 +0000 |
committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Aug 07 18:07:27 2024 +0000 |
tree | 187d8f6204f6f01f65939229b1e454e9f2501861 | |
parent | f87b36a14c321656ed7e47621feb5f8b4f7df4f3 [diff] |
[tint][hlsl] Add subgroup(Exclusive){Add,Mul} Implement subgroup(Exclusive)Add and Mul in the HLSL backend using the following mapping: +----------------------+-------------------+ | Built-in | HLSL | +----------------------+-------------------+ | subgroupAdd | WaveActiveSum | | subgroupExclusiveAdd | WavePrefixSum | | subgroupMul | WaveActiveProduct | | subgroupExclusiveMul | WavePrefixProduct | +----------------------+-------------------+ Bug: 354738715 Change-Id: I9335fe5855217f257ba822ba3f6fa15a96adcaee Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/201234 Reviewed-by: dan sinclair <dsinclair@chromium.org> Commit-Queue: Natalie Chouinard <chouinard@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.