Skip to content

Commit

Permalink
Fix Transpose benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutch committed Jan 3, 2011
1 parent c3b8bc5 commit cc32a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Benchmark/Micro/MatrixTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ public static void Transpose (int times)
Matrix result;

for (int i = 0; i < times; i++) {
Matrix.Transpose (ref a, out result);
result = Matrix.Transpose (a);
}
}

Expand Down

0 comments on commit cc32a81

Please sign in to comment.