From 61ccc7b97c811631a706020419bc89909ae3e887 Mon Sep 17 00:00:00 2001 From: Whiteknight Date: Tue, 20 Oct 2009 20:01:35 -0400 Subject: [PATCH] transpose doesn't use BLAS (currently) so we can un-TODO this test --- t/300-transpose.t | 3 --- 1 file changed, 3 deletions(-) diff --git a/t/300-transpose.t b/t/300-transpose.t index 7add607..c2049d0 100644 --- a/t/300-transpose.t +++ b/t/300-transpose.t @@ -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); @@ -39,4 +37,3 @@ is(X, Y, "ctranspose() on complex matrix"); Y = A'; is(X, Y, "ctranspose op ' on complex matrix"); -end_todo();