aboutsummaryrefslogtreecommitdiff
path: root/dave/dclapack_test.c
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2016-12-19 01:09:45 -0500
committercnlohr <lohr85@gmail.com>2016-12-19 01:09:45 -0500
commit948b07fe3849bd1a574d7e4b6c56b0a594bac7c1 (patch)
treed47cce21854deaea0600b4a707f47c21392661a2 /dave/dclapack_test.c
parent0d6e2a3d208a3e12f2ff450d2b898616ed158894 (diff)
parent6c6849f4a66599c44e85c3445cb11fde35a6b44d (diff)
downloadlibsurvive-948b07fe3849bd1a574d7e4b6c56b0a594bac7c1.tar.gz
libsurvive-948b07fe3849bd1a574d7e4b6c56b0a594bac7c1.tar.bz2
Merge branch 'master' of https://github.com/cnlohr/libsurvive
Diffstat (limited to 'dave/dclapack_test.c')
-rw-r--r--dave/dclapack_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dave/dclapack_test.c b/dave/dclapack_test.c
index 38ae651..b0667ef 100644
--- a/dave/dclapack_test.c
+++ b/dave/dclapack_test.c
@@ -11,7 +11,7 @@ int main()
float Ainv[ORDER][ORDER];
float Prod[ORDER][ORDER];
- int i, j, n = 12;
+ int i, j, n = 3;
srand(7779);
for(i=0; i<n; i++) {
@@ -24,6 +24,7 @@ int main()
INV(A,Ainv,n);
}
+ PRINT(A,n,n);
PRINT(Ainv,n,n);
MUL(A,Ainv,Prod,n,n,n);
PRINT(Prod,n,n);