Skip to content

Commit efc17e7

Browse files
authored
[js/webgpu] Fix the undefined push error (#19366)
### Description This PR fixes below errors when enable webgpu profiling: ``` TypeError: Cannot read properties of undefined (reading 'push') ```
1 parent 9139bdd commit efc17e7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

js/web/lib/wasm/jsep/backend-webgpu.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,10 @@ export class WebGpuBackend {
530530
};
531531
this.pendingKernels.push(pendingKernelInfo);
532532

533-
const sessionPendingKernels = this.capturedPendingKernels.get(this.currentSessionId!);
534-
sessionPendingKernels!.push(pendingKernelInfo);
533+
if (this.sessionStatus === 'capturing') {
534+
const sessionPendingKernels = this.capturedPendingKernels.get(this.currentSessionId!);
535+
sessionPendingKernels!.push(pendingKernelInfo);
536+
}
535537
}
536538

537539
this.programManager.run(artifact, inputDatas, outputDatas, normalizedDispatchGroup, uniformBufferBinding);

0 commit comments

Comments
 (0)