diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2020-01-29 09:02:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-29 09:02:55 -0500 |
| commit | 58cea79d8622a08b0887dbfda8f8042e42679c8f (patch) | |
| tree | 04c2e3e0ea1ec059b61e819987a2014e52050beb /tests | |
| parent | 8b3e3beea66d9773adf11ea2e163577d649f3d7c (diff) | |
Feature/test for double behavior (#1186)
* Split out binding writing.
* Pass in the entry type.
* Take into account output type with -output-using-type
Added GPULikeBindRoot
Added dxbc-double-problem test.
* Add the dxbc-double-problem test.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bugs/dxbc-double-problem.slang | 30 | ||||
| -rw-r--r-- | tests/bugs/dxbc-double-problem.slang.expected.txt | 8 |
2 files changed, 38 insertions, 0 deletions
diff --git a/tests/bugs/dxbc-double-problem.slang b/tests/bugs/dxbc-double-problem.slang new file mode 100644 index 000000000..1cd3ab204 --- /dev/null +++ b/tests/bugs/dxbc-double-problem.slang @@ -0,0 +1,30 @@ +//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -output-using-type +//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -output-using-type +//TEST(compute):COMPARE_COMPUTE_EX:-cpu -compute -output-using-type +//TEST(compute):COMPARE_COMPUTE_EX:-dx12 -compute -use-dxil -output-using-type +//DISABLE_TEST(compute):COMPARE_COMPUTE_EX:-dx12 -compute -output-using-type + +// The problem this test shows is around handling of double with dxbc on D3D12. In that combination +// this code does not write the correct value into the first element - it appears as 0, where +// clearly w * pi_180 where w = 1 means the answer is not zero. +// +// To demonstrate the problem, renable the -dx12 -compute -output-using-type test. It will output 0 for the first item. + +//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0], stride=4):out, name outputBuffer +RWStructuredBuffer<double> outputBuffer; + +[numthreads(1, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + double w = double(dispatchThreadID.x + 1) * 38.63323592724938038L; + + double pi = 3.14159274101257324L; + + double pi_180 = pi/180; + double rad = w * pi_180; + + outputBuffer[0] = rad; + outputBuffer[1] = pi; + outputBuffer[2] = pi_180; + outputBuffer[3] = w; +}
\ No newline at end of file diff --git a/tests/bugs/dxbc-double-problem.slang.expected.txt b/tests/bugs/dxbc-double-problem.slang.expected.txt new file mode 100644 index 000000000..2cffc0e7c --- /dev/null +++ b/tests/bugs/dxbc-double-problem.slang.expected.txt @@ -0,0 +1,8 @@ +0.674277 +3.141593 +0.017453 +38.633236 +0.000000 +0.000000 +0.000000 +0.000000 |
