Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
transpose doesn't use BLAS (currently) so we can un-TODO this test
  • Loading branch information
Whiteknight committed Oct 21, 2009
1 parent 9afd842 commit 61ccc7b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions t/300-transpose.t
Expand Up @@ -5,8 +5,6 @@ plan(8)
# BLAS support. Once we have a proper benchmarking function we should
# redo this using simple PIR and compare the two.

start_todo("BLAS functions not implemented yet");

A = [1, 2, 3, 4; 5, 6, 7, 8; 9, 10, 11, 12; 13, 14, 15, 16];
X = [1, 5, 9, 13; 2, 6, 10, 14; 3, 7, 11, 15; 4, 8, 12, 16];
Y = transpose(A);
Expand Down Expand Up @@ -39,4 +37,3 @@ is(X, Y, "ctranspose() on complex matrix");
Y = A';
is(X, Y, "ctranspose op ' on complex matrix");
end_todo();

0 comments on commit 61ccc7b

Please sign in to comment.