Skip to content

Commit a353231

Browse files
committed
feat: add lapack/base/dorg2r
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f79bf70 commit a353231

File tree

6 files changed

+473
-0
lines changed

6 files changed

+473
-0
lines changed
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2024 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MODULES //
22+
23+
var dscal = require( '@stdlib/blas/base/dscal' ).ndarray;
24+
var dlarf1f = require( './dlarf1f.js' );
25+
26+
27+
// MAIN //
28+
29+
/**
30+
* Generates an M-by-N real matrix Q with orthonormal columns. The matrix Q is defined as the first N columns of a product of K elementary reflectors of order M. `Q = H(1) H(2) . . . H(K)` as returned by `dgeqrf`.
31+
*
32+
* @private
33+
* @param {PositiveInteger} M - number of rows in matrix `A`
34+
* @param {PositiveInteger} N - number of columns in matrix `A`
35+
* @param {NonNegativeInteger} K - number of elementary reflectors whose product defines the matrix Q
36+
* @param {Float64Array} A - input matrix (overwritten by Householder vectors from `dgeqrf`
37+
* @param {integer} strideA1 - stride of the first dimension of `A`
38+
* @param {integer} strideA2 - stride of the second dimension of `A`
39+
* @param {NonNegativeInteger} offsetA - index offset for `A`
40+
* @param {Float64Array} tau - vector of K scalar factors of the elementary reflectors
41+
* @param {integer} strideTau - stride length for `tau`
42+
* @param {NonNegativeInteger} offsetTau - index offset for `tau`
43+
* @param {Float64Array} work - workspace array
44+
* @param {integer} strideWork - stride length for `work`
45+
* @param {NonNegativeInteger} offsetWork - index offset for `work`
46+
*
47+
* @example
48+
* var Float64Array = require( '@stdlib/array/float64' );
49+
*
50+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
51+
* var tau = new Float64Array( [ 0.0, 0.0 ] );
52+
* var work = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
53+
*
54+
* dorg2r( 3, 2, 2, A, 1, 3, 0, tau, 1, 0, work, 1, 0 );
55+
* // A => <Float64Array>[ 1.0, 0.0, 0.0, 0.0, 1.0, 0.0 ]
56+
*/
57+
function dorg2r( M, N, K, A, strideA1, strideA2, offsetA, tau, strideTau, offsetTau, work, strideWork, offsetWork ) { // eslint-disable-line max-len, max-params
58+
var i;
59+
var j;
60+
var l;
61+
62+
if ( N <= 0 ) {
63+
return;
64+
}
65+
66+
// Initialize columns k+1:n to columns of the unit matrix
67+
for ( j = K; j < N; j++ ) {
68+
for ( l = 0; l < M; l++ ) {
69+
A[ offsetA + (l*strideA1) + (j*strideA2) ] = 0.0;
70+
}
71+
A[ offsetA + (j*strideA1) + (j*strideA2) ] = 1.0;
72+
}
73+
74+
// Apply H(i) to A(i:m,i:n) from the left
75+
for ( i = K-1; i >= 0; i-- ) {
76+
if ( i < N ) {
77+
// Apply H(i) to A(i:m,i+1:n) from the left
78+
dlarf1f( 'left', M-i, N-i-1, A, strideA1, offsetA + (i*strideA1) + (i*strideA2), tau[ offsetTau + (i*strideTau) ], A, strideA1, strideA2, offsetA + (i*strideA1) + ((i+1)*strideA2), work, strideWork, offsetWork );
79+
}
80+
if ( i < M ) {
81+
// Scale A(i+1:m,i) by -tau(i)
82+
dscal( M-i-1, -tau[ offsetTau + (i*strideTau) ], A, strideA1, offsetA + ((i+1)*strideA1) + (i*strideA2) ); // eslint-disable-line max-len
83+
}
84+
// Set A(i,i) = 1 - tau(i)
85+
A[ offsetA + (i*strideA1) + (i*strideA2) ] = 1.0 - tau[ offsetTau + (i*strideTau) ]; // eslint-disable-line max-len
86+
87+
// Set A(0:i-1,i) to zero
88+
for ( l = 0; l < i; l++ ) {
89+
A[ offsetA + (l*strideA1) + (i*strideA2) ] = 0.0;
90+
}
91+
}
92+
}
93+
94+
95+
// EXPORTS //
96+
97+
module.exports = dorg2r;
Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2025 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
/* eslint-disable max-len */
22+
23+
// MODULES //
24+
25+
var iladlc = require( '@stdlib/lapack/base/iladlc' ).ndarray;
26+
var iladlr = require( '@stdlib/lapack/base/iladlr' ).ndarray;
27+
var dgemv = require( '@stdlib/blas/base/dgemv' ).ndarray;
28+
var dger = require( '@stdlib/blas/base/dger' ).ndarray;
29+
var daxpy = require( '@stdlib/blas/base/daxpy' ).ndarray;
30+
var dscal = require( '@stdlib/blas/base/dscal' ).ndarray;
31+
32+
33+
// MAIN //
34+
35+
/**
36+
* Applies a real elementary reflector `H = I - tau * v * v ^ T` to a real M by N matrix `C`.
37+
*
38+
* ## Notes
39+
*
40+
* - `work` should have `N` indexed elements if side = `left` and `M` indexed elements if side = `right`.
41+
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `left` and `1 + (N-1) * abs(strideV)` indexed elements if side = `right`.
42+
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
43+
*
44+
* @private
45+
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
46+
* @param {NonNegativeInteger} M - number of rows in `C`
47+
* @param {NonNegativeInteger} N - number of columns in `C`
48+
* @param {Float64Array} V - the vector `v` in the representation of `H`
49+
* @param {integer} strideV - stride length for `V`
50+
* @param {NonNegativeInteger} offsetV - starting index for `V`
51+
* @param {number} tau - the value of `tau` in representation of `H`
52+
* @param {Float64Array} C - input matrix
53+
* @param {integer} strideC1 - stride of the first dimension of `C`
54+
* @param {integer} strideC2 - stride of the second dimension of `C`
55+
* @param {NonNegativeInteger} offsetC - starting index for `C`
56+
* @param {Float64Array} work - workspace array
57+
* @param {integer} strideWork - stride length for `work`
58+
* @param {NonNegativeInteger} offsetWork - starting index for `work`
59+
* @returns {Float64Array} `C * H` or `H * C`
60+
*
61+
* @example
62+
* var Float64Array = require( '@stdlib/array/float64' );
63+
*
64+
* var C = new Float64Array( [ 1.0, 5.0, 9.0, 2.0, 6.0, 10.0, 3.0, 7.0, 11.0, 4.0, 8.0, 12.0 ] );
65+
* var V = new Float64Array( [ 0.5, 0.5, 0.5, 0.5 ] );
66+
* var work = new Float64Array( 3 );
67+
*
68+
* var out = dlarf1f( 'left', 4, 3, V, 1, 0, 1.0, C, 3, 1, 0, work, 1, 0 );
69+
* // returns <Float64Array>[ -4.5, -10.5, -16.5, -0.75, -1.75, -2.75, 0.25, -0.75, -1.75, 1.25, 0.25, -0.75 ]
70+
*/
71+
function dlarf1f( side, M, N, V, strideV, offsetV, tau, C, strideC1, strideC2, offsetC, work, strideWork, offsetWork ) { // eslint-disable-line max-params
72+
var lastv;
73+
var lastc;
74+
var i;
75+
76+
lastv = 1;
77+
lastc = 0;
78+
if ( tau !== 0.0 ) {
79+
if ( side === 'left' ) {
80+
lastv = M;
81+
} else {
82+
lastv = N;
83+
}
84+
85+
// i points to the last element in V
86+
i = offsetV + ( ( lastv - 1 ) * strideV );
87+
88+
// Move i to the last non-zero element in V
89+
while ( lastv > 0 && V[ i ] === 0.0 ) {
90+
lastv -= 1;
91+
i -= strideV;
92+
}
93+
if ( side === 'left' ) {
94+
lastc = iladlc( lastv + 1, N, C, strideC1, strideC2, offsetC ) + 1; // to account for the difference between zero-based and one-based indexing
95+
} else {
96+
lastc = iladlr( M, lastv + 1, C, strideC1, strideC2, offsetC ) + 1; // to account for the difference between zero-based and one-based indexing
97+
}
98+
// lastc is zero if a matrix is filled with zeros
99+
}
100+
if ( lastc === 0 ) {
101+
// Returns C unchanged if tau is zero or all elements in C are zero
102+
return C;
103+
}
104+
if ( side === 'left' ) {
105+
if ( lastv === 0 ) {
106+
dscal( lastc, 1.0 - tau, C, strideC2, offsetC ); // scale the first row
107+
} else {
108+
dgemv( 'transpose', lastv-1, lastc, 1.0, C, strideC1, strideC2, offsetC + strideC1, V, strideV, offsetV + strideV, 0.0, work, strideWork, offsetWork ); // C( 1, 0 ) is accessed here
109+
daxpy( lastc, 1.0, C, strideC2, offsetC, work, strideWork, offsetWork ); // operates on the first row of C
110+
daxpy( lastc, -tau, work, strideWork, offsetWork, C, strideC2, offsetC ); // operates on the first row of C
111+
dger( lastv-1, lastc, -tau, V, strideV, offsetV + strideV, work, strideWork, offsetWork, C, strideC1, strideC2, offsetC + strideC1 ); // C( 1, 0 ) is accessed here
112+
}
113+
} else if ( lastv === 0 ) {
114+
dscal( lastc, 1.0 - tau, C, strideC1, offsetC ); // scale the first column
115+
} else {
116+
dgemv( 'no-transpose', lastc, lastv-1, 1.0, C, strideC1, strideC2, offsetC + strideC2, V, strideV, offsetV + strideV, 0.0, work, strideWork, offsetWork ); // C( 0, 1 ) is accessed here
117+
daxpy( lastc, 1.0, C, strideC1, offsetC, work, strideWork, offsetWork ); // operates on the first column of C
118+
daxpy( lastc, -tau, work, strideWork, offsetWork, C, strideC1, offsetC ); // operates on the first column of C
119+
dger( lastc, lastv-1, -tau, work, strideWork, offsetWork, V, strideV, offsetV + strideV, C, strideC1, strideC2, offsetC + strideC2 ); // C( 0, 1 ) is accessed here
120+
}
121+
122+
return C;
123+
}
124+
125+
126+
// EXPORTS //
127+
128+
module.exports = dlarf1f;
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2025 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MODULES //
22+
23+
var isLayout = require( '@stdlib/blas/base/assert/is-layout' );
24+
var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major-string' );
25+
var isColumnMajor = require( '@stdlib/ndarray/base/assert/is-column-major-string' );
26+
var max = require( '@stdlib/math/base/special/max' );
27+
var format = require( '@stdlib/string/format' );
28+
var base = require( './base.js' );
29+
30+
31+
// MAIN //
32+
33+
/**
34+
* Generates an M-by-N real matrix Q with orthonormal columns. The matrix Q is defined as the first N columns of a product of K elementary reflectors of order M. `Q = H(1) H(2) . . . H(K)` as returned by `dgeqrf`.
35+
*
36+
* @param {string} order - storage layout
37+
* @param {PositiveInteger} M - number of rows in matrix `A`
38+
* @param {PositiveInteger} N - number of columns in matrix `A`
39+
* @param {NonNegativeInteger} K - number of elementary reflectors whose product defines the matrix Q
40+
* @param {Float64Array} A - input matrix (overwritten by Householder vectors from `dgeqrf`
41+
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
42+
* @param {Float64Array} tau - vector of K scalar factors of the elementary reflectors
43+
* @param {Float64Array} work - workspace array
44+
* @throws {TypeError} first argument must be a valid order
45+
* @throws {RangeError} sixth argument must be greater than or equal to max(1,M)
46+
* @returns {Float64Array} matrix `A` overwritten with the orthogonal matrix Q
47+
*
48+
* @example
49+
* var Float64Array = require( '@stdlib/array/float64' );
50+
*
51+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
52+
* var tau = new Float64Array( [ 0.0, 0.0 ] );
53+
* var work = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
54+
*
55+
* dorg2r( 'column-major', 3, 2, 2, A, 3, tau, work );
56+
* // A => <Float64Array>[ 1.0, 0.0, 0.0, 0.0, 1.0, 0.0 ]
57+
*/
58+
function dorg2r( order, M, N, K, A, LDA, tau, work ) {
59+
var sa1;
60+
var sa2;
61+
if ( !isLayout( order ) ) {
62+
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
63+
}
64+
if ( isRowMajor( order ) && LDA < max( 1, M ) ) {
65+
throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.', M, LDA ) );
66+
}
67+
if ( isColumnMajor( order ) ) {
68+
sa1 = 1;
69+
sa2 = LDA;
70+
} else { // order === 'row-major'
71+
sa1 = LDA;
72+
sa2 = 1;
73+
}
74+
return base( M, N, K, A, sa1, sa2, 0, tau, 1, 0, work, 1, 0 );
75+
}
76+
77+
78+
// EXPORTS //
79+
80+
module.exports = dorg2r;
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2025 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
/**
22+
* Generate an M-by-N real matrix Q with orthonormal columns. The matrix Q is defined as the first N columns of a product of K elementary reflectors of order M. `Q = H(1) H(2) . . . H(K)` as returned by `dgeqrf`.
23+
*
24+
* @module @stdlib/lapack/base/dorg2r
25+
*
26+
* @example
27+
* var Float64Array = require( '@stdlib/array/float64' );
28+
* var dorg2r = require( '@stdlib/lapack/base/dorg2r' );
29+
*
30+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
31+
* var tau = new Float64Array( [ 0.0, 0.0 ] );
32+
* var work = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
33+
*
34+
* dorg2r( 'column-major', 3, 2, 2, A, 3, tau, work );
35+
* // A => <Float64Array>[ 1.0, 0.0, 0.0, 0.0, 1.0, 0.0 ]
36+
*
37+
* @example
38+
* var Float64Array = require( '@stdlib/array/float64' );
39+
* var dorg2r = require( '@stdlib/lapack/base/dorg2r' );
40+
*
41+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
42+
* var tau = new Float64Array( [ 0.0, 0.0 ] );
43+
* var work = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
44+
*
45+
* dorg2r.ndarray( 3, 2, 2, A, 1, 3, 0, tau, 1, 0, work, 1, 0 );
46+
* // A => <Float64Array>[ 1.0, 0.0, 0.0, 0.0, 1.0, 0.0 ]
47+
*/
48+
49+
// MODULES //
50+
51+
var join = require( 'path' ).join;
52+
var tryRequire = require( '@stdlib/utils/try-require' );
53+
var isError = require( '@stdlib/assert/is-error' );
54+
var main = require( './main.js' );
55+
56+
57+
// MAIN //
58+
59+
var dorg2r;
60+
var tmp = tryRequire( join( __dirname, './native.js' ) );
61+
if ( isError( tmp ) ) {
62+
dorg2r = main;
63+
} else {
64+
dorg2r = tmp;
65+
}
66+
67+
68+
// EXPORTS //
69+
70+
module.exports = dorg2r;

0 commit comments

Comments
 (0)