File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -705,13 +705,11 @@ export class WebGpuBackend {
705
705
706
706
captureBegin ( ) : void {
707
707
LOG_DEBUG ( 'info' , 'captureBegin' ) ;
708
- let sessionCommandList = this . capturedCommandList . get ( this . currentSessionId ! ) ;
709
- let sessionPendingKernels = this . capturedPendingKernels . get ( this . currentSessionId ! ) ;
710
- if ( ! sessionCommandList ) {
711
- sessionCommandList = [ ] ;
712
- this . capturedCommandList . set ( this . currentSessionId ! , sessionCommandList ) ;
713
- sessionPendingKernels = [ ] ;
714
- this . capturedPendingKernels . set ( this . currentSessionId ! , sessionPendingKernels ) ;
708
+ if ( ! this . capturedCommandList . get ( this . currentSessionId ! ) ) {
709
+ this . capturedCommandList . set ( this . currentSessionId ! , [ ] ) ;
710
+ }
711
+ if ( ! this . capturedPendingKernels . get ( this . currentSessionId ! ) ) {
712
+ this . capturedPendingKernels . set ( this . currentSessionId ! , [ ] ) ;
715
713
}
716
714
// flush the left commands before we change the status.
717
715
this . flush ( ) ;
You can’t perform that action at this time.
0 commit comments