NAG FL Interface
f10daf (randproj_​dct_​real)

1 Purpose

f10daf computes a fast random projection of a real m by n matrix A using a Discrete Cosine Transform (DCT). The routine can be used as a building block in Randomised Numerical Linear Algebra (RNLA) algorithms, such as QR decompositions, Singular Value Decompositions (SVDs), and (approximate) least squares solvers.

2 Specification

Fortran Interface
Subroutine f10daf ( trans, m, n, a, lda, k, state, ifail)
Integer, Intent (In) :: m, n, lda, k
Integer, Intent (Inout) :: state(*), ifail
Real (Kind=nag_wp), Intent (Inout) :: a(lda,*)
Character (1), Intent (In) :: trans
C Header Interface
#include <nag.h>
void  f10daf_ (const char *trans, const Integer *m, const Integer *n, double a[], const Integer *lda, const Integer *k, Integer state[], Integer *ifail, const Charlen length_trans)
The routine may be called by the names f10daf or nagf_rnla_randproj_dct_real.

3 Description

A random projection is written as either
Y=AΩ  
or
Y=ΩA ,  
where A is a real m by n matrix, Ω is an n by k matrix in the first case, and a k by m matrix in the second case. These cases are referred to as random projection by post-multiplication and random projection by pre-multiplication, respectively.
When a random projection by post-multiplication uses the DCT, it is written as
Ω = DFC ,  
where D is a diagonal matrix whose values are uniformly distributed on the set -1,+1, F is a DCT, and C is a matrix that selects a subset of columns, uniformly at random.
When a random projection by pre-multiplication uses the DCT, it is written as
Ω = RFD.  
The operators D and F are as above and R is a matrix that selects a subset of rows, again uniformly at random.
None of these matrix operators require a full matrix-matrix product to be computed. The computational complexity of applying this type of random projection is Omnlogk. More details of the DCT-based random projection can be found in Avron et al. (2010).
The DCT-based random projection is closely related to the Subsampled Random Fourier Transform (SRFT) presented in Section 4.6 of Halko et al. (2011).

4 References

Avron H, Maymounkov P and Toledo S (2010) Blendenpik: Supercharging LAPACK's least-squares solver SIAM J. Sci. Comput. 32(3) 1217–1236
Halko N (2012) Randomized methods for computing low-rank approximations of matrices PhD thesis
Halko N, Martinsson P G and Tropp J A (2011) Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions SIAM Rev. 53(2) 217–288 https://epubs.siam.org/doi/abs/10.1137/090771806

5 Arguments

1: trans Character(1) Input
On entry: specifies whether the operation pre-multiplies A or post-multiplies A.
trans='N'
Random projection is done by post-multiplication, Y=AΩ.
trans='T'
Random projection is done by pre-multiplication, Y=ΩA.
Constraint: trans='N' or 'T'.
2: m Integer Input
On entry: m, the number of rows of the matrix A.
Constraint: m>0.
3: n Integer Input
On entry: n, the number of columns of the matrix A.
Constraint: n>0.
4: alda* Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array a must be at least n.
On entry: the m by n matrix A.
On exit: if trans='N', the first k columns of A are overwritten with the m by k random projection of A.
If trans='T', the first k rows of A are overwritten with the k by n random projection of A.
5: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f10daf is called.
Constraint: ldam.
6: k Integer Input
On entry: k, number of columns in the random projection, Y=AΩ.
Constraints:
  • if trans='N', 0<kn;
  • if trans='T', 0<km.
7: state* Integer array Communication Array
Note: the actual argument supplied must be the array state supplied to the initialization routines g05kff or g05kgf.
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
8: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, trans=value.
Constraint: trans='N' or 'T'.
ifail=2
On entry, m=value.
Constraint: m>0.
ifail=3
On entry, n=value.
Constraint: n>0.
ifail=4
On entry, k=value and trans=value.
Constraint: if trans='N', 0<kn, if trans='T', 0<km.
ifail=6
On entry, state vector has been corrupted or not initialized.
ifail=7
On entry, lda=value.
Constraint: ldam.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The accuracy of algorithms that use f10daf depend on the extent to which the random projection, Y, captures the range (i.e., column space) of the matrix A. More formally, the following probabilistic error bound holds,
I-PYA1+7n/k·σk+1  
with failure probability at most Ok-1, and where σk+1 is the k+1th singular value and the norm on the left-hand side of the equation is the spectral norm.
The matrix I-PY is sometimes referred to as the orthogonal projector onto the complementary subspace, rangePY.
Informally, Y captures the range of A well if
A=PYA+I-PYA  
is dominated by the first term, PYA.
See Section 8–11 of Halko et al. (2011) for more details.

8 Parallelism and Performance

f10daf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

f10daf uses the same DCT as c06rff. The time taken by c06rff is fastest if the only prime factors of the projected dimension are 2, 3 or 5. In order to make the performance of f10daf less sensitive to the size of the projected dimension, the input, a, is padded with zeros up to the nearest power of 2 or the nearest 1000, whichever is smaller.

10 Example

This example applies a random projection using the DCT to the 6 by 6 matrix
A = 2.27 0.28 -0.48 1.07 -2.35 0.62 -1.54 -1.67 -3.09 1.22 2.93 -7.39 1.15 0.94 0.99 0.79 -1.45 1.03 -1.94 -0.78 -0.21 0.63 2.30 -2.57 -1.94 -0.78 -0.21 0.63 2.30 -2.57 -1.94 -0.78 -0.21 0.63 2.30 -2.57 .  
It then computes a 6 by 5 orthornormal matrix Q and a probabilistic error bound, E that quantifies how well the range of Q approximates the range of A. The matrix Q is calculated through a QR factorization of the projection Y=AΩ. The error bound is based on the following result from Section 4.3 of Halko et al. (2011). Given a sequence ωi:i=1,2,,r of standard Gaussian vectors, where r is some positive integer, then the measure, E, of the error in how well the projection captures the range of A is given by
I-PYA = I-QQ*A 10 2 π max i=1,,r I-QQ* A ωi = E , with probability ​1-10-r  
where · is the spectral norm when applied to a matrix and the Euclidean norm when applied to a vector.
The exact approximation error I-QQ*A is also computed for comparison.
This example is constructed so that the true rank of A is 4: the last 3 rows are identical so the matrix only has 4 linearly independent rows. This means that when k4 the accuracy of Q will be close to machine precision.

10.1 Program Text

Program Text (f10dafe.f90)

10.2 Program Data

Program Data (f10dafe.d)

10.3 Program Results

Program Results (f10dafe.r)