summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/stress/queries/pipeline_statistics.spec.ts
blob: ce8a16f4625a7df8da1b9447c18a0af890beb210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export const description = `
Stress tests for pipeline statistics queries.

TODO: pipeline statistics queries are removed from core; consider moving tests to another suite.
`;

import { makeTestGroup } from '../../common/framework/test_group.js';
import { GPUTest } from '../../webgpu/gpu_test.js';

export const g = makeTestGroup(GPUTest);

g.test('render_pass_one_query_set')
  .desc(
    `Tests a huge number of pipeline statistics queries over a single query set in a
single render pass.`
  )
  .unimplemented();

g.test('render_pass_many_query_sets')
  .desc(
    `Tests a huge number of pipeline statistics queries over a huge number of query
sets in a single render pass.`
  )
  .unimplemented();

g.test('compute_pass_one_query_set')
  .desc(
    `Tests a huge number of pipeline statistics queries over a single query set in a
single compute pass.`
  )
  .unimplemented();

g.test('compute_pass_many_query_sets')
  .desc(
    `Tests a huge number of pipeline statistics queries over a huge number of query
sets in a single compute pass.`
  )
  .unimplemented();