From 80596b37841bb3134376bcd78f821c165cbce8cc Mon Sep 17 00:00:00 2001 From: cmhhelgeson <62450112+cmhhelgeson@users.noreply.github.com> Date: Thu, 2 Nov 2023 12:59:16 -0700 Subject: [PATCH] Get rid of todos --- src/sample/bitonicSort/main.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sample/bitonicSort/main.ts b/src/sample/bitonicSort/main.ts index 41c0f5e1..cc103589 100644 --- a/src/sample/bitonicSort/main.ts +++ b/src/sample/bitonicSort/main.ts @@ -61,7 +61,6 @@ const getNumSteps = (numElements: number) => { let init: SampleInit; SampleInitFactoryWebGPU( async ({ pageState, device, gui, presentationFormat, context, canvas }) => { - // TODO: Only use this once to define the initial values const maxThreadsX = device.limits.maxComputeWorkgroupSizeX; const totalElementLengths = []; @@ -327,7 +326,6 @@ SampleInitFactoryWebGPU( }), compute: { module: device.createShaderModule({ - // TODO: set to min(settings['Total Elements'] / 2, settings['ThreadConstraint']) code: NaiveBitonicCompute( Math.min( settings['Total Elements'] / 2, @@ -436,7 +434,6 @@ SampleInitFactoryWebGPU( }), compute: { module: device.createShaderModule({ - // TODO: set to min(settings['Total Elements'] / 2, settings['ThreadConstraint']) code: NaiveBitonicCompute( Math.min( settings['Total Elements'] / 2,