We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c460e39 commit 36906b1Copy full SHA for 36906b1
examples/AmplifierExamples/SGEMM.cs
@@ -24,8 +24,8 @@ public void Execute()
24
int N = 30;
25
int K = 20;
26
27
- var x = new XArray(new long[] { M, K }, DType.Float32);
28
- var y = new XArray(new long[] { K, M }, DType.Float32);
+ var x = new InArray(new long[] { M, K }, DType.Float32);
+ var y = new InArray(new long[] { K, M }, DType.Float32);
29
var z = new OutArray(new long[] { M, N }, DType.Float32) { IsElementWise = false };
30
31
//Get the execution engine
0 commit comments