Get rid of malloc() and free() (PR#2549)
Just the minimal changes to qr_solve.cpp and .h to get rid of malloc() and free(). Saves about 656 bytes of progmem (library-code) and 22 bytes for static variables. Should use exactly the same amount of stack as it did before on the heap.
This commit is contained in:
parent
f9195d114b
commit
d03f037a92
@ -2643,7 +2643,8 @@ inline void gcode_G28() {
|
|||||||
#else // !DELTA
|
#else // !DELTA
|
||||||
|
|
||||||
// solve lsq problem
|
// solve lsq problem
|
||||||
double *plane_equation_coefficients = qr_solve(abl2, 3, eqnAMatrix, eqnBVector);
|
double plane_equation_coefficients[3];
|
||||||
|
qr_solve(plane_equation_coefficients, abl2, 3, eqnAMatrix, eqnBVector);
|
||||||
|
|
||||||
mean /= abl2;
|
mean /= abl2;
|
||||||
|
|
||||||
|
@ -260,7 +260,7 @@ double r8mat_amax ( int m, int n, double a[] )
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
double *r8mat_copy_new ( int m, int n, double a1[] )
|
void r8mat_copy( double a2[], int m, int n, double a1[] )
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/*
|
/*
|
||||||
@ -294,12 +294,9 @@ double *r8mat_copy_new ( int m, int n, double a1[] )
|
|||||||
Output, double R8MAT_COPY_NEW[M*N], the copy of A1.
|
Output, double R8MAT_COPY_NEW[M*N], the copy of A1.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
double *a2;
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
a2 = ( double * ) malloc ( m * n * sizeof ( double ) );
|
|
||||||
|
|
||||||
for ( j = 0; j < n; j++ )
|
for ( j = 0; j < n; j++ )
|
||||||
{
|
{
|
||||||
for ( i = 0; i < m; i++ )
|
for ( i = 0; i < m; i++ )
|
||||||
@ -307,8 +304,6 @@ double *r8mat_copy_new ( int m, int n, double a1[] )
|
|||||||
a2[i+j*m] = a1[i+j*m];
|
a2[i+j*m] = a1[i+j*m];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return a2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
@ -726,14 +721,13 @@ void dqrank ( double a[], int lda, int m, int n, double tol, int *kr,
|
|||||||
int j;
|
int j;
|
||||||
int job;
|
int job;
|
||||||
int k;
|
int k;
|
||||||
double *work;
|
double work[n];
|
||||||
|
|
||||||
for ( i = 0; i < n; i++ )
|
for ( i = 0; i < n; i++ )
|
||||||
{
|
{
|
||||||
jpvt[i] = 0;
|
jpvt[i] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
work = ( double * ) malloc ( n * sizeof ( double ) );
|
|
||||||
job = 1;
|
job = 1;
|
||||||
|
|
||||||
dqrdc ( a, lda, m, n, qraux, jpvt, work, job );
|
dqrdc ( a, lda, m, n, qraux, jpvt, work, job );
|
||||||
@ -750,8 +744,6 @@ void dqrank ( double a[], int lda, int m, int n, double tol, int *kr,
|
|||||||
*kr = j + 1;
|
*kr = j + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
free ( work );
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
@ -1845,7 +1837,7 @@ void dswap ( int n, double x[], int incx, double y[], int incy )
|
|||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
double *qr_solve ( int m, int n, double a[], double b[] )
|
void qr_solve ( double x[], int m, int n, double a[], double b[] )
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/*
|
/*
|
||||||
@ -1895,34 +1887,22 @@ double *qr_solve ( int m, int n, double a[], double b[] )
|
|||||||
Output, double QR_SOLVE[N], the least squares solution.
|
Output, double QR_SOLVE[N], the least squares solution.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
double *a_qr;
|
double a_qr[n*m];
|
||||||
int ind;
|
int ind;
|
||||||
int itask;
|
int itask;
|
||||||
int *jpvt;
|
int jpvt[n];
|
||||||
int kr;
|
int kr;
|
||||||
int lda;
|
int lda;
|
||||||
double *qraux;
|
double qraux[n];
|
||||||
double *r;
|
double r[m];
|
||||||
double tol;
|
double tol;
|
||||||
double *x;
|
|
||||||
|
|
||||||
a_qr = r8mat_copy_new ( m, n, a );
|
r8mat_copy( a_qr, m, n, a );
|
||||||
lda = m;
|
lda = m;
|
||||||
tol = r8_epsilon ( ) / r8mat_amax ( m, n, a_qr );
|
tol = r8_epsilon ( ) / r8mat_amax ( m, n, a_qr );
|
||||||
x = ( double * ) malloc ( n * sizeof ( double ) );
|
|
||||||
jpvt = ( int * ) malloc ( n * sizeof ( int ) );
|
|
||||||
qraux = ( double * ) malloc ( n * sizeof ( double ) );
|
|
||||||
r = ( double * ) malloc ( m * sizeof ( double ) );
|
|
||||||
itask = 1;
|
itask = 1;
|
||||||
|
|
||||||
ind = dqrls ( a_qr, lda, m, n, tol, &kr, b, x, r, jpvt, qraux, itask );
|
ind = dqrls ( a_qr, lda, m, n, tol, &kr, b, x, r, jpvt, qraux, itask );
|
||||||
|
|
||||||
free ( a_qr );
|
|
||||||
free ( jpvt );
|
|
||||||
free ( qraux );
|
|
||||||
free ( r );
|
|
||||||
|
|
||||||
return x;
|
|
||||||
}
|
}
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
|
@ -17,6 +17,6 @@ int dqrsl ( double a[], int lda, int n, int k, double qraux[], double y[],
|
|||||||
double qy[], double qty[], double b[], double rsd[], double ab[], int job );
|
double qy[], double qty[], double b[], double rsd[], double ab[], int job );
|
||||||
void dscal ( int n, double sa, double x[], int incx );
|
void dscal ( int n, double sa, double x[], int incx );
|
||||||
void dswap ( int n, double x[], int incx, double y[], int incy );
|
void dswap ( int n, double x[], int incx, double y[], int incy );
|
||||||
double *qr_solve ( int m, int n, double a[], double b[] );
|
void qr_solve ( double x[], int m, int n, double a[], double b[] );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user