Created
June 19, 2012 18:10
-
-
Save jashwanth9/2955661 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$load "rosella/test.pbc"; | |
$load "./src/Double.pbc"; | |
class Test_dgetrf{ | |
function dgetrf_test(){ | |
var pla = loadlib("linalg_group"); | |
var lapack = loadlib('liblapack.so'); | |
var A = new 'NumMatrix2D'; | |
A.initialize_from_args(3, 3, | |
1.0, 2.0, 3.0, | |
4.0, 5.0, 6.0, | |
7.0, 8.0, 9.0); | |
int m,n,lda,ipiv_size,info; | |
m=n=3; | |
lda=max(1,m); | |
ipiv_size=min(m,n); | |
int ipiv[ipiv_size]; | |
var dgetrf = dlfunc(lapack, "dgetrf_", "vpppppp"); | |
if(dgetrf == null || !dgetrf) | |
die("Not DGETRF"); | |
dgetrf(m,n,A,lda,ipiv,info); | |
self.assert.equal(info,0); | |
} | |
} | |
function main[main](var args) { | |
using Rosella.Test.test; | |
test(class Test_dgetrf); | |
} | |
OUTPUT: | |
WARNING: class NumMatrix2D not found at compile time near 'NumMatrix2D' at dgetrf.t line 9 | |
Cannot find main sub | |
Null PMC access in invoke() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment