Skip to content

Commit 36906b1

Browse files
author
Deepak Battini
committed
Fixed example
1 parent c460e39 commit 36906b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/AmplifierExamples/SGEMM.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public void Execute()
2424
int N = 30;
2525
int K = 20;
2626

27-
var x = new XArray(new long[] { M, K }, DType.Float32);
28-
var y = new XArray(new long[] { K, M }, DType.Float32);
27+
var x = new InArray(new long[] { M, K }, DType.Float32);
28+
var y = new InArray(new long[] { K, M }, DType.Float32);
2929
var z = new OutArray(new long[] { M, N }, DType.Float32) { IsElementWise = false };
3030

3131
//Get the execution engine

0 commit comments

Comments
 (0)