From 833f9c580f4f06e0db3f8c3a7b986f41371cef7d Mon Sep 17 00:00:00 2001 From: Alan Baker Date: Fri, 30 Aug 2024 14:50:05 -0400 Subject: [PATCH] remove dead code --- .../shader/execution/expression/call/builtin/subgroupAll.spec.ts | 1 - .../shader/execution/expression/call/builtin/subgroupAny.spec.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/webgpu/shader/execution/expression/call/builtin/subgroupAll.spec.ts b/src/webgpu/shader/execution/expression/call/builtin/subgroupAll.spec.ts index 8aef5a681aaa..831c33d8ed1c 100644 --- a/src/webgpu/shader/execution/expression/call/builtin/subgroupAll.spec.ts +++ b/src/webgpu/shader/execution/expression/call/builtin/subgroupAll.spec.ts @@ -41,7 +41,6 @@ function generateInputData(seed: number, num: number, addCounter: boolean): Uint const bound = Math.min(num, 32); const index = prng.uniformInt(bound); - //console.log(`bound = ${bound}, index = ${index}`); return new Uint32Array([ ...iterRange(num, x => { diff --git a/src/webgpu/shader/execution/expression/call/builtin/subgroupAny.spec.ts b/src/webgpu/shader/execution/expression/call/builtin/subgroupAny.spec.ts index 4b915979afe8..6418eb141dc5 100644 --- a/src/webgpu/shader/execution/expression/call/builtin/subgroupAny.spec.ts +++ b/src/webgpu/shader/execution/expression/call/builtin/subgroupAny.spec.ts @@ -41,7 +41,6 @@ function generateInputData(seed: number, num: number, addCounter: boolean): Uint const bound = Math.min(num, 32); const index = prng.uniformInt(bound); - //console.log(`bound = ${bound}, index = ${index}`); return new Uint32Array([ ...iterRange(num, x => {