Skip to content

Commit 591f90c

Browse files
author
Yang Gu
authored
[js/webgpu] Fix issue of timestamp query (#19258)
When we enable webgpu profiling mode between session.create and session.run, current implementation has a problem to create querySet (and also queryResolveBuffer) if we share the commandEncoder with inputs upload. This PR fixes this by moving the querySet creation to the place we set queryType.
1 parent bc54ad3 commit 591f90c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -222,16 +222,6 @@ export class WebGpuBackend {
222222
getCommandEncoder(): GPUCommandEncoder {
223223
if (!this.commandEncoder) {
224224
this.commandEncoder = this.device.createCommandEncoder();
225-
226-
if (this.queryType !== 'none' && typeof this.querySet === 'undefined') {
227-
this.querySet = this.device.createQuerySet({
228-
type: 'timestamp',
229-
count: this.maxDispatchNumber * 2,
230-
});
231-
this.queryResolveBuffer = this.device.createBuffer(
232-
// eslint-disable-next-line no-bitwise
233-
{size: this.maxDispatchNumber * 2 * 8, usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.QUERY_RESOLVE});
234-
}
235225
}
236226
return this.commandEncoder;
237227
}
@@ -654,6 +644,16 @@ export class WebGpuBackend {
654644
} else if (this.device.features.has('timestamp-query')) {
655645
this.queryType = 'at-passes';
656646
}
647+
648+
if (this.queryType !== 'none' && typeof this.querySet === 'undefined') {
649+
this.querySet = this.device.createQuerySet({
650+
type: 'timestamp',
651+
count: this.maxDispatchNumber * 2,
652+
});
653+
this.queryResolveBuffer = this.device.createBuffer(
654+
// eslint-disable-next-line no-bitwise
655+
{size: this.maxDispatchNumber * 2 * 8, usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.QUERY_RESOLVE});
656+
}
657657
}
658658
}
659659
onRunStart(): void {

0 commit comments

Comments
 (0)