summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/api/operation/compute_pipeline/overrides.spec.ts
blob: 09248a0b412e5252797b56359621b8ced6b5e643 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
export const description = `
Compute pipeline using overridable constants test.
`;

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

class F extends GPUTest {
  async ExpectShaderOutputWithConstants(
    isAsync: boolean,
    expected: Uint32Array | Float32Array,
    constants: Record<string, GPUPipelineConstantValue>,
    code: string
  ) {
    const dst = this.device.createBuffer({
      size: expected.byteLength,
      usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
    });

    const descriptor: GPUComputePipelineDescriptor = {
      layout: 'auto',
      compute: {
        module: this.device.createShaderModule({
          code,
        }),
        entryPoint: 'main',
        constants,
      },
    };

    const promise = isAsync
      ? this.device.createComputePipelineAsync(descriptor)
      : Promise.resolve(this.device.createComputePipeline(descriptor));

    const pipeline = await promise;
    const bindGroup = this.device.createBindGroup({
      entries: [{ binding: 0, resource: { buffer: dst, offset: 0, size: expected.byteLength } }],
      layout: pipeline.getBindGroupLayout(0),
    });

    const encoder = this.device.createCommandEncoder();
    const pass = encoder.beginComputePass();
    pass.setPipeline(pipeline);
    pass.setBindGroup(0, bindGroup);
    pass.dispatchWorkgroups(1);
    pass.end();
    this.device.queue.submit([encoder.finish()]);

    this.expectGPUBufferValuesEqual(dst, expected);
  }
}

export const g = makeTestGroup(F);

g.test('basic')
  .desc(
    `Test that either correct constants override values or default values when no constants override value are provided at pipeline creation time are used as the output to the storage buffer.`
  )
  .params(u => u.combine('isAsync', [true, false]))
  .fn(async t => {
    const count = 11;
    await t.ExpectShaderOutputWithConstants(
      t.params.isAsync,
      new Uint32Array(range(count, i => i)),
      {
        c0: 0,
        c1: 1,
        c2: 2,
        c3: 3,
        // c4 is using default value
        c5: 5,
        c6: 6,
        // c7 is using default value
        c8: 8,
        c9: 9,
        // c10 is using default value
      },
      `
      override c0: bool;              // type: bool
      override c1: bool = false;      // default override
      override c2: f32;               // type: float32
      override c3: f32 = 0.0;         // default override
      override c4: f32 = 4.0;         // default
      override c5: i32;               // type: int32
      override c6: i32 = 0;           // default override
      override c7: i32 = 7;           // default
      override c8: u32;               // type: uint32
      override c9: u32 = 0u;          // default override
      override c10: u32 = 10u;        // default

      struct Buf {
          data : array<u32, ${count}>
      }

      @group(0) @binding(0) var<storage, read_write> buf : Buf;

      @compute @workgroup_size(1) fn main() {
          buf.data[0] = u32(c0);
          buf.data[1] = u32(c1);
          buf.data[2] = u32(c2);
          buf.data[3] = u32(c3);
          buf.data[4] = u32(c4);
          buf.data[5] = u32(c5);
          buf.data[6] = u32(c6);
          buf.data[7] = u32(c7);
          buf.data[8] = u32(c8);
          buf.data[9] = u32(c9);
          buf.data[10] = u32(c10);
      }
    `
    );
  });

g.test('numeric_id')
  .desc(
    `Test that correct values are used as output to the storage buffer for constants specified with numeric id instead of their names.`
  )
  .params(u => u.combine('isAsync', [true, false]))
  .fn(async t => {
    await t.ExpectShaderOutputWithConstants(
      t.params.isAsync,
      new Uint32Array([1, 2, 3]),
      {
        1001: 1,
        1: 2,
        // 1003 is using default value
      },
      `
        @id(1001) override c1: u32;            // some big numeric id
        @id(1) override c2: u32 = 0u;          // id == 1 might collide with some generated constant id
        @id(1003) override c3: u32 = 3u;       // default

        struct Buf {
            data : array<u32, 3>
        }

        @group(0) @binding(0) var<storage, read_write> buf : Buf;

        @compute @workgroup_size(1) fn main() {
            buf.data[0] = c1;
            buf.data[1] = c2;
            buf.data[2] = c3;
        }
      `
    );
  });

g.test('precision')
  .desc(
    `Test that float number precision is preserved for constants as they are used for compute shader output of the storage buffer.`
  )
  .params(u => u.combine('isAsync', [true, false]))
  .fn(async t => {
    const c1 = 3.14159;
    const c2 = 3.141592653589793238;
    await t.ExpectShaderOutputWithConstants(
      t.params.isAsync,
      // These values will get rounded to f32 and createComputePipeline, so the values coming out from the shader won't be the exact same one as shown here.
      new Float32Array([c1, c2]),
      {
        c1,
        c2,
      },
      `
        override c1: f32;
        override c2: f32;

        struct Buf {
            data : array<f32, 2>
        }

        @group(0) @binding(0) var<storage, read_write> buf : Buf;

        @compute @workgroup_size(1) fn main() {
            buf.data[0] = c1;
            buf.data[1] = c2;
        }
      `
    );
  });

g.test('workgroup_size')
  .desc(
    `Test that constants can be used as workgroup size correctly, the compute shader should write the max local invocation id to the storage buffer which is equal to the workgroup size dimension given by the constant.`
  )
  .params(u =>
    u //
      .combine('isAsync', [true, false])
      .combine('type', ['u32', 'i32'])
      .combine('size', [3, 16, 64])
      .combine('v', ['x', 'y', 'z'])
  )
  .fn(async t => {
    const { isAsync, type, size, v } = t.params;
    const workgroup_size_str = v === 'x' ? 'd' : v === 'y' ? '1, d' : '1, 1, d';
    await t.ExpectShaderOutputWithConstants(
      isAsync,
      new Uint32Array([size]),
      {
        d: size,
      },
      `
        override d: ${type};

        struct Buf {
            data : array<u32, 1>
        }

        @group(0) @binding(0) var<storage, read_write> buf : Buf;

        @compute @workgroup_size(${workgroup_size_str}) fn main(
            @builtin(local_invocation_id) local_invocation_id : vec3<u32>
        ) {
            if (local_invocation_id.${v} >= u32(d - 1)) {
                buf.data[0] = local_invocation_id.${v} + 1;
            }
        }
      `
    );
  });

g.test('shared_shader_module')
  .desc(
    `Test that when the same shader module is shared by different pipelines, the correct constant values are used as output to the storage buffer. The constant value should not affect other pipeline sharing the same shader module.`
  )
  .params(u => u.combine('isAsync', [true, false]))
  .fn(async t => {
    const module = t.device.createShaderModule({
      code: `
      override a: u32;

      struct Buf {
          data : array<u32, 1>
      }

      @group(0) @binding(0) var<storage, read_write> buf : Buf;

      @compute @workgroup_size(1) fn main() {
          buf.data[0] = a;
      }`,
    });

    const expects = [new Uint32Array([1]), new Uint32Array([2])];
    const buffers = [
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
    ];

    const descriptors: GPUComputePipelineDescriptor[] = [
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main',
          constants: {
            a: 1,
          },
        },
      },
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main',
          constants: {
            a: 2,
          },
        },
      },
    ];

    const promises = t.params.isAsync
      ? Promise.all([
          t.device.createComputePipelineAsync(descriptors[0]),
          t.device.createComputePipelineAsync(descriptors[1]),
        ])
      : Promise.resolve([
          t.device.createComputePipeline(descriptors[0]),
          t.device.createComputePipeline(descriptors[1]),
        ]);

    const pipelines = await promises;
    const bindGroups = [
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[0], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[0].getBindGroupLayout(0),
      }),
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[1], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[1].getBindGroupLayout(0),
      }),
    ];

    const encoder = t.device.createCommandEncoder();
    const pass = encoder.beginComputePass();
    pass.setPipeline(pipelines[0]);
    pass.setBindGroup(0, bindGroups[0]);
    pass.dispatchWorkgroups(1);
    pass.setPipeline(pipelines[1]);
    pass.setBindGroup(0, bindGroups[1]);
    pass.dispatchWorkgroups(1);
    pass.end();
    t.device.queue.submit([encoder.finish()]);

    t.expectGPUBufferValuesEqual(buffers[0], expects[0]);
    t.expectGPUBufferValuesEqual(buffers[1], expects[1]);
  });

g.test('multi_entry_points')
  .desc(
    `Test that constants used for different entry points are used correctly as output to the storage buffer. They should have no impact for pipeline using entry points that doesn't reference them.`
  )
  .params(u => u.combine('isAsync', [true, false]))
  .fn(async t => {
    const module = t.device.createShaderModule({
      code: `
    override c1: u32;
    override c2: u32;
    override c3: u32;

    struct Buf {
        data : array<u32, 1>
    }

    @group(0) @binding(0) var<storage, read_write> buf : Buf;

    @compute @workgroup_size(1) fn main1() {
        buf.data[0] = c1;
    }

    @compute @workgroup_size(1) fn main2() {
        buf.data[0] = c2;
    }

    @compute @workgroup_size(c3) fn main3() {
        buf.data[0] = 3u;
    }`,
    });

    const expects = [
      new Uint32Array([1]),
      new Uint32Array([2]),
      new Uint32Array([3]),
      new Uint32Array([4]),
    ];

    const buffers = [
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
      t.device.createBuffer({
        size: Uint32Array.BYTES_PER_ELEMENT,
        usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.STORAGE,
      }),
    ];

    const descriptors: GPUComputePipelineDescriptor[] = [
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main1',
          constants: {
            c1: 1,
          },
        },
      },
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main2',
          constants: {
            c2: 2,
          },
        },
      },
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main3',
          constants: {
            // c3 is used as workgroup size
            c3: 1,
          },
        },
      },
      {
        layout: 'auto',
        compute: {
          module,
          entryPoint: 'main1',
          constants: {
            // assign a different value to c1
            c1: 4,
          },
        },
      },
    ];

    const promises = t.params.isAsync
      ? Promise.all([
          t.device.createComputePipelineAsync(descriptors[0]),
          t.device.createComputePipelineAsync(descriptors[1]),
          t.device.createComputePipelineAsync(descriptors[2]),
          t.device.createComputePipelineAsync(descriptors[3]),
        ])
      : Promise.resolve([
          t.device.createComputePipeline(descriptors[0]),
          t.device.createComputePipeline(descriptors[1]),
          t.device.createComputePipeline(descriptors[2]),
          t.device.createComputePipeline(descriptors[3]),
        ]);

    const pipelines = await promises;
    const bindGroups = [
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[0], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[0].getBindGroupLayout(0),
      }),
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[1], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[1].getBindGroupLayout(0),
      }),
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[2], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[2].getBindGroupLayout(0),
      }),
      t.device.createBindGroup({
        entries: [
          {
            binding: 0,
            resource: { buffer: buffers[3], offset: 0, size: Uint32Array.BYTES_PER_ELEMENT },
          },
        ],
        layout: pipelines[3].getBindGroupLayout(0),
      }),
    ];

    const encoder = t.device.createCommandEncoder();
    const pass = encoder.beginComputePass();
    pass.setPipeline(pipelines[0]);
    pass.setBindGroup(0, bindGroups[0]);
    pass.dispatchWorkgroups(1);
    pass.setPipeline(pipelines[1]);
    pass.setBindGroup(0, bindGroups[1]);
    pass.dispatchWorkgroups(1);
    pass.setPipeline(pipelines[2]);
    pass.setBindGroup(0, bindGroups[2]);
    pass.dispatchWorkgroups(1);
    pass.setPipeline(pipelines[3]);
    pass.setBindGroup(0, bindGroups[3]);
    pass.dispatchWorkgroups(1);
    pass.end();
    t.device.queue.submit([encoder.finish()]);

    t.expectGPUBufferValuesEqual(buffers[0], expects[0]);
    t.expectGPUBufferValuesEqual(buffers[1], expects[1]);
    t.expectGPUBufferValuesEqual(buffers[2], expects[2]);
    t.expectGPUBufferValuesEqual(buffers[3], expects[3]);
  });