Roll third_party/webgpu-cts/ 249f2b797..ecf480422 (21 commits)
Update expectations and ts_sources
249f2b797b..ecf4804228
- ecf480 wgsl: Add missing parameterizations (#1366)
- febc61 wgsl: Stub tests for the fwidthFine builtin. (#1365)
- 50261d wgsl: Stub tests for the fwidthCoarse builtin. (#1364)
- b2f135 wgsl: Stub tests for the fwidth builtin. (#1363)
- 1d3403 wgsl: Stub tests for the dpdyFine builtin. (#1362)
- 1c717a wgsl: Stub tests for the dpdyCoarse builtin. (#1361)
- ef805c wgsl: Stub tests for the dpdy builtin (#1360)
- 8f5f61 wgsl: Stub tests for the dpdxFine builtin. (#1359)
- 59d1c3 wgsl: Stub tests for dpdxCoarse builtin (#1358)
- aa6096 wgsl: Stub tests for dpdx builtin (#1357)
- 2ee8b6 wgsl: Stub tests for the dot builtin. (#1356)
- 9646eb wgsl: Stub tests for the transpose builtin. (#1354)
- 0415ba wgsl: Stub tests for determinant builtin. (#1353)
- e817a5 wgsl: Stub tests for trunc builtin. (#1352)
- 9edb35 wgsl: Stub tests for the tanh builtin. (#1351)
- 1b109c wgsl: Stub tests for tan builtin. (#1350)
- 92f64a wgsl: Stub tests for step builtin. (#1349)
- ca915e wgsl: Stub tests for sqrt builtin. (#1348)
- b1f2fb wgsl: Stub tests for smoothstep builtin. (#1347)
- 9ea198 wgsl: Stub tests for sinh builtin. (#1346)
- 423400 wgsl: Stub for sign builtin. (#1345)
Created with './tools/run cts roll'
Change-Id: I29b09f6d4808c8b33d39d390def05f72599965f2
Cq-Include-Trybots: luci.chromium.try:dawn-try-win10-x86-rel,linux-dawn-rel,mac-dawn-rel,win-dawn-rel
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/88860
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
e55877d017
commit
ff371efdc6
4
DEPS
4
DEPS
|
@ -153,7 +153,7 @@ deps = {
|
|||
|
||||
# WebGPU CTS - not used directly by Dawn, only transitively by Chromium.
|
||||
'third_party/webgpu-cts': {
|
||||
'url': '{chromium_git}/external/github.com/gpuweb/cts@249f2b797bb8f3fe503405b31f117e9a6b1ee80e',
|
||||
'url': '{chromium_git}/external/github.com/gpuweb/cts@ecf4804228d1473df8596c3c87e5b7e32649e2de',
|
||||
'condition': 'build_with_chromium',
|
||||
},
|
||||
|
||||
|
@ -171,7 +171,7 @@ deps = {
|
|||
'condition': 'dawn_node',
|
||||
},
|
||||
'third_party/gpuweb-cts': {
|
||||
'url': '{chromium_git}/external/github.com/gpuweb/cts@d5cf9ab72e0406af3cf40576a824e8295c5995a0',
|
||||
'url': '{chromium_git}/external/github.com/gpuweb/cts@ecf4804228d1473df8596c3c87e5b7e32649e2de',
|
||||
'condition': 'dawn_standalone',
|
||||
},
|
||||
|
||||
|
|
|
@ -288,7 +288,15 @@ src/webgpu/shader/execution/expression/call/builtin/countOneBits.spec.ts
|
|||
src/webgpu/shader/execution/expression/call/builtin/countTrailingZeros.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/cross.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/degrees.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/determinant.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/distance.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dot.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdx.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdxCoarse.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdxFine.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdy.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdyCoarse.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/dpdyFine.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/exp.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/exp2.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/extractBits.spec.ts
|
||||
|
@ -299,6 +307,9 @@ src/webgpu/shader/execution/expression/call/builtin/floor.spec.ts
|
|||
src/webgpu/shader/execution/expression/call/builtin/fma.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/fract.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/frexp.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/fwidth.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/fwidthCoarse.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/fwidthFine.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/insertBits.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/inversesqrt.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/ldexp.spec.ts
|
||||
|
@ -318,7 +329,16 @@ src/webgpu/shader/execution/expression/call/builtin/refract.spec.ts
|
|||
src/webgpu/shader/execution/expression/call/builtin/reverseBits.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/round.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/select.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/sign.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/sin.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/sinh.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/smoothstep.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/sqrt.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/step.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/tan.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/tanh.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/transpose.spec.ts
|
||||
src/webgpu/shader/execution/expression/call/builtin/trunc.spec.ts
|
||||
src/webgpu/shader/execution/expression/unary/unary.ts
|
||||
src/webgpu/shader/execution/expression/unary/f32_arithmetic.spec.ts
|
||||
src/webgpu/shader/execution/memory_model/memory_model_setup.ts
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
# tags: [ webgpu-adapter-default webgpu-adapter-swiftshader ]
|
||||
# END TAG HEADER
|
||||
|
||||
# Last rolled: 2022-05-03 05:22:44PM
|
||||
# Last rolled: 2022-05-04 08:43:24AM
|
||||
|
||||
################################################################################
|
||||
# webgpu:shader,execution,zero_init:compute,zero_init failures on intel-0x5912
|
||||
|
|
Loading…
Reference in New Issue