Skip to content

Commit

Permalink
Roll third_party/webgpu-cts/ ecefa0df4..3290214f6 (7 commits)
Browse files Browse the repository at this point in the history
Regenerated:
 - expectations.txt
 - compat-expectations.txt
 - ts_sources.txt
 - test_list.txt
 - resource_files.txt
 - webtest .html files

https://chromium.googlesource.com/external/github.com/gpuweb/cts/+log/ecefa0df492f..3290214f6edc
 - 329021 Texture builtins: move addressMode? to case (#4010)
 - f45a9e Show more queries that are too long. (#4009)
 - 6a79ce Execution for quad swaps (#3990)
 - 9a1cb0 Quad broadcast execution tests (#3987)
 - 3971de Subgroup bitwise tests (#3978)
 - 013866 Remove non ASCII from texture diagrams (#4008)
 - da76b2 attemptGarbageCollection periodically (every N subcases) (#4007)

Created with './tools/run cts roll'

Cq-Include-Trybots: luci.chromium.try:android-dawn-arm-rel,android-dawn-arm64-rel,dawn-try-linux-x64-intel-uhd770-rel,dawn-try-mac-amd-exp,dawn-try-mac-arm64-m2-exp,dawn-try-mac-intel-exp,dawn-try-win-x64-intel-uhd770-rel,dawn-try-win10-x86-rel,linux-dawn-nvidia-1660-exp-rel,linux-dawn-rel,mac-arm64-dawn-rel,mac-dawn-rel,win-dawn-rel
Include-Ci-Only-Tests: true
Change-Id: I71251515811b3148e860c1289acff84f9564794c
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/212435
Commit-Queue: dan sinclair <[email protected]>
Reviewed-by: Kai Ninomiya <[email protected]>
  • Loading branch information
dj2 authored and Dawn LUCI CQ committed Oct 27, 2024
1 parent 30443ea commit e1c1d1c
Show file tree
Hide file tree
Showing 6 changed files with 108,477 additions and 10,133 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,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@ecefa0df492f45894d74eb685cf6d3e6dbdb1e79',
'url': '{chromium_git}/external/github.com/gpuweb/cts@3290214f6edcf8abaf93e34ba5a1fb4442c432a5',
'condition': 'build_with_chromium',
},

Expand Down
108,625 changes: 100,335 additions & 8,290 deletions third_party/gn/webgpu-cts/test_list.txt

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions third_party/gn/webgpu-cts/ts_sources.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ src/common/framework/data_cache.ts
src/common/framework/metadata.ts
src/common/framework/params_builder.ts
src/common/framework/resources.ts
src/common/util/collect_garbage.ts
src/common/internal/websocket_logger.ts
src/common/internal/test_group.ts
src/common/framework/test_group.ts
Expand Down Expand Up @@ -57,7 +58,6 @@ src/common/tools/merge_listing_times.ts
src/common/tools/run_wpt_ref_tests.ts
src/common/tools/validate.ts
src/common/tools/version.ts
src/common/util/collect_garbage.ts
src/common/util/preprocessor.ts
src/common/util/wpt_reftest_wait.ts
src/unittests/unit_test.ts
Expand Down Expand Up @@ -578,6 +578,9 @@ src/webgpu/shader/execution/expression/call/builtin/pack4xU8.spec.ts
src/webgpu/shader/execution/expression/call/builtin/pack4xU8Clamp.spec.ts
src/webgpu/shader/execution/expression/call/builtin/pow.cache.ts
src/webgpu/shader/execution/expression/call/builtin/pow.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroup_util.ts
src/webgpu/shader/execution/expression/call/builtin/quadBroadcast.spec.ts
src/webgpu/shader/execution/expression/call/builtin/quadSwap.spec.ts
src/webgpu/shader/execution/expression/call/builtin/quantizeToF16.cache.ts
src/webgpu/shader/execution/expression/call/builtin/quantizeToF16.spec.ts
src/webgpu/shader/execution/expression/call/builtin/radians.cache.ts
Expand Down Expand Up @@ -605,11 +608,11 @@ src/webgpu/shader/execution/expression/call/builtin/sqrt.spec.ts
src/webgpu/shader/execution/expression/call/builtin/step.cache.ts
src/webgpu/shader/execution/expression/call/builtin/step.spec.ts
src/webgpu/shader/execution/expression/call/builtin/storageBarrier.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroup_util.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupAdd.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupAll.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupAny.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupBallot.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupBitwise.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupBroadcast.spec.ts
src/webgpu/shader/execution/expression/call/builtin/subgroupMul.spec.ts
src/webgpu/shader/execution/expression/call/builtin/tan.cache.ts
Expand Down
2 changes: 1 addition & 1 deletion third_party/webgpu-cts
Submodule webgpu-cts updated 20 files
+13 −0 src/common/framework/test_config.ts
+27 −7 src/common/internal/test_group.ts
+29 −9 src/common/tools/gen_wpt_cts_html.ts
+110 −110 src/resources/cache/hashes.json
+15 −1 src/webgpu/listing_meta.json
+656 −0 src/webgpu/shader/execution/expression/call/builtin/quadBroadcast.spec.ts
+666 −0 src/webgpu/shader/execution/expression/call/builtin/quadSwap.spec.ts
+562 −0 src/webgpu/shader/execution/expression/call/builtin/subgroupBitwise.spec.ts
+2 −1 src/webgpu/shader/execution/expression/call/builtin/subgroup_util.ts
+72 −83 src/webgpu/shader/execution/expression/call/builtin/textureGather.spec.ts
+36 −34 src/webgpu/shader/execution/expression/call/builtin/textureGatherCompare.spec.ts
+12 −12 src/webgpu/shader/execution/expression/call/builtin/textureLoad.spec.ts
+165 −91 src/webgpu/shader/execution/expression/call/builtin/textureSample.spec.ts
+11 −9 src/webgpu/shader/execution/expression/call/builtin/textureSampleBaseClampToEdge.spec.ts
+82 −48 src/webgpu/shader/execution/expression/call/builtin/textureSampleBias.spec.ts
+70 −38 src/webgpu/shader/execution/expression/call/builtin/textureSampleCompare.spec.ts
+46 −36 src/webgpu/shader/execution/expression/call/builtin/textureSampleCompareLevel.spec.ts
+47 −46 src/webgpu/shader/execution/expression/call/builtin/textureSampleGrad.spec.ts
+69 −60 src/webgpu/shader/execution/expression/call/builtin/textureSampleLevel.spec.ts
+61 −39 src/webgpu/shader/execution/expression/call/builtin/texture_utils.ts
Loading

0 comments on commit e1c1d1c

Please sign in to comment.