Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AllFeaturesMaxLimitsGPUTest #4184

Merged
merged 1 commit into from
Feb 11, 2025
Merged

Conversation

greggman
Copy link
Contributor

This is a test that requests all features and maximum limits. This should be the default test for the majority of tests, otherwise optional features will not be tested. The exceptions are only tests that explicitly test the absence of a feature or specific limits such as the tests under validation/capability_checks.

As a concrete example to demonstrate the issue, texture format rg11b10ufloat is optionally renderable and can optionally be used multisampled. Any test that tests texture formats should test this format, skipping only if the feature is missing. So, the default should be that the test tests kAllTextureFormats with the appropriate filters from format_info.ts or the various helpers. This way, rg11b10ufloat will included in the test and fail if not appropriately filtered. If instead you were to use GPUTest then rg11b10ufloat would just be skipped as its never enabled. You could enable it manually but that spreads enabling to every test instead of being centralized in one place, here.

Honestly, I'd prefer to rename GPUTest to SpecialGPUTest or possibly even DeprecatedGPUTest it clear not to use it and where it needs to be fixed and then name this GPUTest. But, we can do that later. For now, I just effectively replaced MaxLimitsTestMixin with AllFeaturesMaxLimitsGPUTest in the places where it could easily be replaced.

The remaining places bring up an issue. All of them are based on ValidationTest. I think the same rules apply. For example, if we're validating that textures fail validation for certain reasons we should be checking formats that are optional also pass the same validation rules. The simplest way to do that would be to make ValidationTest inherit from AllFeaturesMaxLimitsGPUTest.

Unfortunately, the capability_checks/* are all based off ValidationTest so they need to be moved to something else before we can make that change.

Issue: #4178


Requirements for PR author:

  • All missing test coverage is tracked with "TODO" or .unimplemented().
  • New helpers are /** documented */ and new helper files are found in helper_index.txt.
  • Test behaves as expected in a WebGPU implementation. (If not passing, explain above.)
  • Test have be tested with compatibility mode validation enabled and behave as expected. (If not passing, explain above.)

Requirements for reviewer sign-off:

  • Tests are properly located in the test tree.
  • Test descriptions allow a reader to "read only the test plans and evaluate coverage completeness", and accurately reflect the test code.
  • Tests provide complete coverage (including validation control cases). Missing coverage MUST be covered by TODOs.
  • Helpers and types promote readability and maintainability.

When landing this PR, be sure to make any necessary issue status updates.

@greggman greggman requested a review from shrekshao February 10, 2025 23:07
@greggman greggman force-pushed the allfeaturesmaxlimits branch from c504377 to 6cd2b9d Compare February 11, 2025 00:18
@shrekshao
Copy link
Contributor

Honestly, I'd prefer to rename GPUTest to SpecialGPUTest or possibly even DeprecatedGPUTest it clear not to use it and where it needs to be fixed and then name this GPUTest. But, we can do that later. For now, I just effectively replaced MaxLimitsTestMixin with AllFeaturesMaxLimitsGPUTest in the places where it could easily be replaced.

Sounds good

Copy link
Contributor

@shrekshao shrekshao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

This is  test that requests all features and maximum limits. This should be the default
test for the majority of tests, otherwise optional features will not be tested.
The exceptions are only tests that explicitly test the absence of a feature or
specific limits such as the tests under validation/capability_checks.

As a concrete example to demonstrate the issue, texture format `rg11b10ufloat` is
optionally renderable and can optionally be used multisampled. Any test that tests
texture formats should test this format, skipping only if the feature is missing.
So, the default should be that the test tests `kAllTextureFormats` with the appropriate
filters from format_info.ts or the various helpers. This way, `rg11b10ufloat` will
included in the test and fail if not appropriately filtered. If instead you were
to use GPUTest then `rg11b10ufloat` would just be skipped as its never enabled.
You could enable it manually but that spreads enabling to every test instead of being
centralized in one place, here.

Honestly, I'd prefer to rename `GPUTest` to `SpecialGPUTest` or possibly even
`DeprecatedGPUTest` it clear not to use it and where it needs to be fixed and then
name this `GPUTest`. But, we can do that later. For now, I just effectively replaced
`MaxLimitsTestMixin` with `AllFeaturesMaxLimitsGPUTest` in the places where it could
easily be replaced.

The remaining places bring up an issue. All of them are based on `ValidationTest`.
I think the same rules apply. For example, if we're validating that textures fail
validation for certain reasons we should be checking formats that are optional
also pass the same validation rules. The simplest wasy to do that would be
to make `ValidationTest` inherit from `AllFeaturesMaxLimitsGPUTest`.

Unforunately, the capability_checks/* are all based off `ValidationTest`
so they need to be moved to something else before we can make that change.
@greggman greggman force-pushed the allfeaturesmaxlimits branch from 6cd2b9d to ebfdf09 Compare February 11, 2025 23:30
@greggman greggman enabled auto-merge (squash) February 11, 2025 23:30
@greggman greggman merged commit a71a20e into gpuweb:main Feb 11, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants