tests: Test coarse and fine derivates and demand less precision from ddx() and ddy().
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
Activity
mentioned in merge request !199 (closed)
1 % NOTE: Only allowed from shader model ps_2_1 2 [require] 3 shader model >= 4.0 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
changed this line in version 2 of the diff
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.
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.
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.
added 5 commits
Toggle commit listGreat! 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!
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.
Toggle commit listadded 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.
Toggle commit list-
91ca12ff...d5a0b3af - 70 commits from branch
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.
Toggle commit list