Skip to content
Snippets Groups Projects

tests: Test coarse and fine derivates and demand less precision from ddx() and ddy().

Merged Francisco Casas requested to merge fcasas/vkd3d:ddxddy_adjust_2 into master
3 unresolved threads

On my Nvidia GeForce GTX 1050 Ti ddxddy.shader_test doesn't pass because of considerably different numeric results.

As Giovanni pointed out, this is because my GPU uses the fine derivate and not the coarse derivate to implement ddx() and ddy().

For this reason, the result for ddx|ddy() is quantized so that the test passes if the GPU uses either coarse or fine derivates.

Additionally, tests for both ddx_coarse|ddy_coarse() and ddx_fine|ddy_fine() are added, that expect a more precise result.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 % NOTE: Only allowed from shader model ps_2_1
2 [require]
3 shader model >= 4.0
  • Comment on lines +1 to +3

    That would be unfortunate, do we really need this?

  • Author Developer

    Well, only if we want to keep the crosstests from failing.

    shader_runner:1237: Running tests from a Windows cross build
    shader_runner:1239: Compiling shaders with d3dcompiler_47.dll and executing with d3d9.dll
    shader_runner:95: Driver string: d3d10warp.dll.
    shader_runner:96: Device: Microsoft Basic Render Driver, 1414:008c.
    shader_runner:99: Using WARP device.
    shader_runner:73: Section [test], line 9: Test failed: Failed to compile shader, hr 0x80004005.
    shader_runner:73: Section [test], line 28: Test failed: Failed to compile shader, hr 0x80004005.

    Ideally we would be able to specify

    [require]
    shader model >= 2.1
  • Ideally we would be able to specify

    [require]
    shader model >= 2.1

    That should be simple enough to add :-)

  • Francisco Casas changed this line in version 2 of the diff

    changed this line in version 2 of the diff

  • Author Developer

    Correction, the profile ps_2_1 doesn't exist. I confused it with ps_2_x, which the native compiler doesn't seem to support, unless we pass ps_4_0_level_9_1 or ps_4_0_level_9_3, but those don't support sv_position either, so shader model >= 3, would do.

    I had to make a change to the test too, because ps_3_0 doesn't add 0.5 to sv_position, like ps_4_0 and ps_5_0.

  • Right. It's not actually called 2.1. The actual profile is two different profiles, ps_2_a and ps_2_b, which both compile to a version token of 2.1 in the bytecode. I don't know what the difference between a and b is.

  • Right. It's not actually called 2.1. The actual profile is two different profiles, ps_2_a and ps_2_b, which both compile to a version token of 2.1 in the bytecode. I don't know what the difference between a and b is.

    IIRC ps_2_a was the NVIDIA variant and ps_2_b the ATI variant at the time, and they had slightly different features and limits. I'm not sure the differences are particularly well documented anywhere, but you may be able to find something in the GPU vendor documentation from back then.

  • Odd, given they seem to emit the same bytecode. I guess those features must have been checked at compile time.

  • Please register or sign in to reply
    • Do you already have implementations for the coarse and fine derivatives? They should rather simple to add. If you can add them to the MR we can actually check that the test values for coarse and fine derivatives are accepted on different devices, to minimize the probability we have to edit them again in the futures.

    • Author Developer

      I added patches for supporting coarse and fine derivates. You were right, the Nvidia GeForce GTX 1050 Ti required some ulps more for these tests to pass.

    • Please register or sign in to reply
  • Francisco Casas added 5 commits

    added 5 commits

    • 0b60faa8 - tests: Test coarse and fine derivates.
    • 029ff92a - tests: Make ddx() and ddy() test behave correctly for shader models < 4.
    • f57208cc - tests: Quantize ddx() and ddy() test.
    • d032fa76 - vkd3d-shader/hlsl: Coarse derivates support.
    • 76cb88c0 - vkd3d-shader/hlsl: Fine derivates support.

    Compare with previous version

    • Great! Only one last favor: I'd like llvmpipe to pass tests too. This needs two simple changes:

      • Despite its name, the coarse derivative can be fine, and in the case of llvmpipe it seems to be. So please quantize it like you do for the unqualified derivative.
      • llvmpipe is apparently even less precise than NVIDIA. So please raise the ULP limits like in giomasce/vkd3d@e78c53aa.

      That commit passes tests in all the implementations I have access to (radv, NVIDIA and Intel). If it is compiled in your mesa binaries, you can test on llvmpipe using VKD3D_VULKAN_DEVICE=1 or something.

      Also, we normally use the imperative form in commit subjects: "Support fine derivatives" rather than "Fine derivatives support". Thanks!

    • Author Developer

      Thanks, I applied these changes.

    • Please register or sign in to reply
  • Francisco Casas added 5 commits

    added 5 commits

    • 0e5d42a1 - tests: Test coarse and fine derivates.
    • bc23fdbe - tests: Make ddx() and ddy() test behave correctly for shader models < 4.
    • 3cdd44ec - tests: Quantize regular and coarse derivate test results.
    • dea61011 - vkd3d-shader/hlsl: Support coarse derivates.
    • 91ca12ff - vkd3d-shader/hlsl: Support fine derivates.

    Compare with previous version

  • Giovanni Mascellani approved this merge request

    approved this merge request

  • Francisco Casas added 75 commits

    added 75 commits

    • 91ca12ff...d5a0b3af - 70 commits from branch wine:master
    • 640a03e7 - tests: Test coarse and fine derivates.
    • df976541 - tests: Make ddx() and ddy() test behave correctly for shader models < 4.
    • 46900e75 - tests: Quantize regular and coarse derivate test results.
    • 36ab3e18 - vkd3d-shader/hlsl: Support coarse derivates.
    • 65eb499a - vkd3d-shader/hlsl: Support fine derivates.

    Compare with previous version

  • Author Developer

    Rebased.

  • Elizabeth Figura approved this merge request

    approved this merge request

  • Henri Verbeet approved this merge request

    approved this merge request

  • added 5 commits

    • 62e9b866 - tests: Test coarse and fine derivates.
    • f0584cad - tests: Make ddx() and ddy() test behave correctly for shader models < 4.
    • dc84afe7 - tests: Quantize regular and coarse derivate test results.
    • ff31284f - vkd3d-shader/hlsl: Support coarse derivates.
    • e4d94d95 - vkd3d-shader/hlsl: Support fine derivates.

    Compare with previous version

  • Alexandre Julliard approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading