Skip to content

Commit

Permalink
Fixed example
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak Battini committed Jun 12, 2020
1 parent c460e39 commit 36906b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/AmplifierExamples/SGEMM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public void Execute()
int N = 30;
int K = 20;

var x = new XArray(new long[] { M, K }, DType.Float32);
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);
var z = new OutArray(new long[] { M, N }, DType.Float32) { IsElementWise = false };

//Get the execution engine
Expand Down

0 comments on commit 36906b1

Please sign in to comment.