diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/compute/dump-repro.slang | 31 | ||||
| -rw-r--r-- | tests/front-end/import-subdir-search-path-repro.slang | 12 |
2 files changed, 43 insertions, 0 deletions
diff --git a/tests/compute/dump-repro.slang b/tests/compute/dump-repro.slang new file mode 100644 index 000000000..eebe04852 --- /dev/null +++ b/tests/compute/dump-repro.slang @@ -0,0 +1,31 @@ +//TEST(compute):SIMPLE:-target hlsl -dump-repro repro.slang-repro + +//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0], stride=4):dxbinding(0),glbinding(0),out,name outputBuffer +RWStructuredBuffer<int> outputBuffer; + +//TEST_INPUT:array(size=2):name g_aoa +RWStructuredBuffer<int> g_aoa[]; + +//TEST_INPUT:ubuffer(data=[1 2 3 4], stride=4):name=g_aoa[0] +//TEST_INPUT:ubuffer(data=[8 17 34], stride=4):name=g_aoa[1] + +[numthreads(8, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + int index = int(dispatchThreadID.x); + + int baseIndex = index >> 2; + int innerIndex = index & 3; + + RWStructuredBuffer<int> buffer = g_aoa[baseIndex]; + + // Get the size + uint bufferCount, bufferStride; + buffer.GetDimensions(bufferCount, bufferStride); + + if (innerIndex >= bufferCount) + { + innerIndex = bufferCount - 1; + } + outputBuffer[index] = buffer[innerIndex]; +}
\ No newline at end of file diff --git a/tests/front-end/import-subdir-search-path-repro.slang b/tests/front-end/import-subdir-search-path-repro.slang new file mode 100644 index 000000000..2978933fa --- /dev/null +++ b/tests/front-end/import-subdir-search-path-repro.slang @@ -0,0 +1,12 @@ +//DISABLE_TEST:SIMPLE: -Itests/front-end/subdir -dump-repro import-subdir-search-path-repro.slang-repro +//DISABLE_TEST:SIMPLE_EX: -extract-repro import-subdir-search-path-repro.slang-repro +//DISABLE_TEST:SIMPLE: -load-repro import-subdir-search-path-repro.slang-repro + +// Confirming import lookup via search paths work + +__import import_subdir_a; + +// Should realize it's the same thing +__import subdir.import_subdir_a; + +float bar(float x) { return foo(x); }
\ No newline at end of file |
