summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-08-18 13:08:45 -0700
committerGitHub <noreply@github.com>2020-08-18 13:08:45 -0700
commitb820f34a1b6336af184458c5b1dfe2273c99f1ff (patch)
treeca9986891127cfe07eda18bfbdb5094eef5677cc /tests
parent9abcb6ea24dbc7184c3a2ad9f4458f63f8901928 (diff)
Support initializing an existential value from a generic value. (#1503)
* Support initializing an existential value from a generic value. * Remove trailing spaces and clean up debugging code.
Diffstat (limited to 'tests')
-rw-r--r--tests/compute/dynamic-dispatch-9.slang50
-rw-r--r--tests/compute/dynamic-dispatch-9.slang.expected.txt4
2 files changed, 54 insertions, 0 deletions
diff --git a/tests/compute/dynamic-dispatch-9.slang b/tests/compute/dynamic-dispatch-9.slang
new file mode 100644
index 000000000..4fb45edc9
--- /dev/null
+++ b/tests/compute/dynamic-dispatch-9.slang
@@ -0,0 +1,50 @@
+//TEST(compute):COMPARE_COMPUTE:-cpu -xslang -allow-dynamic-code
+//DISABLE_TEST(compute):COMPARE_COMPUTE:-cuda -xslang -allow-dynamic-code
+
+// Test dynamic dispatch code gen for initializing an extential value
+// from a generic value.
+
+[anyValueSize(16)]
+interface IInterface
+{
+ int Compute(int inVal);
+};
+
+int GenericCompute0(IInterface obj, int inVal)
+{
+ return obj.Compute(inVal);
+}
+
+int GenericCompute1<T:IInterface>(T obj, int inVal)
+{
+ IInterface iobj = obj;
+ return iobj.Compute(inVal) +
+ GenericCompute0(obj, inVal) -
+ GenericCompute0(iobj, inVal);
+}
+
+
+struct Impl : IInterface
+{
+ int base;
+ int Compute(int inVal) { return base + inVal * inVal; }
+};
+
+int test(int inVal)
+{
+ Impl obj;
+ obj.base = 1;
+ return GenericCompute1(obj, inVal);
+}
+
+//TEST_INPUT:ubuffer(data=[0 1 2 3], stride=4):out,name=outputBuffer
+RWStructuredBuffer<int> outputBuffer : register(u0);
+
+[numthreads(4, 1, 1)]
+void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
+{
+ uint tid = dispatchThreadID.x;
+ int inVal = outputBuffer[tid];
+ int outVal = test(inVal);
+ outputBuffer[tid] = outVal;
+}
diff --git a/tests/compute/dynamic-dispatch-9.slang.expected.txt b/tests/compute/dynamic-dispatch-9.slang.expected.txt
new file mode 100644
index 000000000..146ab3c8c
--- /dev/null
+++ b/tests/compute/dynamic-dispatch-9.slang.expected.txt
@@ -0,0 +1,4 @@
+1
+2
+5
+A