summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-01-30 19:24:09 -0800
committerGitHub <noreply@github.com>2023-01-30 19:24:09 -0800
commit499b0253c224e68ceed6e5b6b1ee9cd7d65aad0f (patch)
tree4c570a36d305c8909d633183694e0d1225f044c2 /tests
parent134dd7eb26fc7988ae13559d276cbf337b4b9d27 (diff)
Make ArrayExpressionType a DeclRefType and define its autodiff extension in stdlib. (#2615)
* Allow array parameters in forward diff. * Use type canonicalization instead of coersion. * Reimplement array type. * Fix. * Update test case. --------- Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/autodiff/fwd-array-out-param.slang46
-rw-r--r--tests/autodiff/fwd-array-out-param.slang.expected.txt6
2 files changed, 52 insertions, 0 deletions
diff --git a/tests/autodiff/fwd-array-out-param.slang b/tests/autodiff/fwd-array-out-param.slang
new file mode 100644
index 000000000..26c77c976
--- /dev/null
+++ b/tests/autodiff/fwd-array-out-param.slang
@@ -0,0 +1,46 @@
+//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -shaderobj -output-using-type
+//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj -output-using-type
+
+//TEST_INPUT:ubuffer(data=[0 0 0 0 0], stride=4):out,name=outputBuffer
+RWStructuredBuffer<float> outputBuffer;
+
+struct D : IDifferentiable
+{
+ float n;
+ float m;
+}
+
+[ForwardDifferentiable]
+float f(D d, int i, out D outArray[1][2])
+{
+ outArray[0][0].m = d.n;
+ outArray[0][0].n = d.m * 3.0f + 1.0;
+
+ outArray[0][1].m = d.n * d.n;
+ outArray[0][1].n = d.m * 4.0f + 1.0;
+
+ return outArray[0][0].m + outArray[0][1].n * 2.0;
+}
+
+[numthreads(1, 1, 1)]
+void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
+{
+ D d = { 1.0, 2.0 };
+ D.Differential dd = { 1.0, 1.0 };
+
+ var dpd = diffPair(d, dd);
+
+ D tmp[1][2] = { { { 1.0, 1.0 }, { 1.0, 1.0 } } };
+ DifferentialPair<D[2][1]> dOut = diffPair(tmp);
+ var result = __fwd_diff(f)(dpd, 1, dOut).d;
+
+ // dOut.d has type D[2][1].Differential. Verify that it can coerce to D.Differential[2][1].
+ D.Differential darrCopy[1][2] = dOut.d;
+
+ outputBuffer[0] = result;
+ outputBuffer[1] = dOut.d[0][0].n;
+ outputBuffer[2] = dOut.d[0][0].m;
+ outputBuffer[3] = darrCopy[0][1].n;
+ outputBuffer[4] = darrCopy[0][1].m;
+
+}
diff --git a/tests/autodiff/fwd-array-out-param.slang.expected.txt b/tests/autodiff/fwd-array-out-param.slang.expected.txt
new file mode 100644
index 000000000..7133763d0
--- /dev/null
+++ b/tests/autodiff/fwd-array-out-param.slang.expected.txt
@@ -0,0 +1,6 @@
+type: float
+9.000000
+3.000000
+1.000000
+4.000000
+2.000000