View previous topic :: View next topic |
Author |
Message |
sclytrack
Joined: 14 Jul 2006 Posts: 14
|
Posted: Mon Jan 14, 2008 7:23 am Post subject: Tango support? |
|
|
Is there going to be tango support for this library?
I mean most of your work goes into tango. _________________ AMD Athlon 1800+
Debian Etch 4.0 (stable)
Geforce 2 MX
Please no comments about me passing a 4x4 matrix by value. |
|
Back to top |
|
|
sclytrack
Joined: 14 Jul 2006 Posts: 14
|
Posted: Mon Jan 14, 2008 7:42 am Post subject: matrix view |
|
|
RowMajor
0 1 2
3 4 5
6 7 8
ColumnMajor == What lapack does
0 3 6
1 4 7
2 5 8
2x2 view of a 4x4 matrix
0 4 8 12
1 5 9 13
2 6 10 14
3 7 11 15
The view
5 9
6 10
rowCount = 2
columnCount = 2
rowStep = 1
columnStep = allocatedRowCount
allocatedRowCount = 4 //rowCount from the original matrix
allocatedColumnCount = 4 //columnCount from the original matrix
data[5..10] _________________ AMD Athlon 1800+
Debian Etch 4.0 (stable)
Geforce 2 MX
Please no comments about me passing a 4x4 matrix by value. |
|
Back to top |
|
|
sclytrack
Joined: 14 Jul 2006 Posts: 14
|
Posted: Mon Jan 28, 2008 7:21 am Post subject: Yeps |
|
|
Okay I got it running. Now all I need is a computer with newer SSE instructions. _________________ AMD Athlon 1800+
Debian Etch 4.0 (stable)
Geforce 2 MX
Please no comments about me passing a 4x4 matrix by value. |
|
Back to top |
|
|
|