Precision quandaries: why can I print 64 digits?

2 visualizzazioni (ultimi 30 giorni)
I've been testing a Modified Gram-Schmidt algorithm that is part of a larger pipeline:
function [Q, R] = mgs(X)
% [Q, R] = MGS(X) performs Modified Gram-Schmidt on the m x s matrix X.
%%
% Pre-allocate memory for Q and R
[m, s] = size(X);
R = zeros(s,s);
Q = zeros(m,s);
% Modified Gram-Schmidt
R(1,1) = norm(X(:,1));
Q(:,1) = X(:,1)/R(1,1);
for k = 1:s-1
w = X(:,k+1);
for j = 1:k
R(j,k+1) = Q(:,j)'*w;
w = w - Q(:,j)*R(j,k+1);
end
R(k+1,k+1) = norm(w);
Q(:,k+1) = w/R(k+1,k+1);
end
end
Farther down the software pipeline, I measure loss of orthogonality and backward error. My colleague ran our software on her machine and found that for several key examples I have nearly full orthogonality and she has none. I am 100% certain we are using the same X and software (we checked; everything is pushed and pulled through Git).
We found something surprising with the following script that may explain the issue:
% mgs test
X = magic(10); X = X(:,1:2);
[Q, R] = mgs(X);
fprintf('||I - Q''*Q|| = %0.64e\n', norm(eye(2) - Q'*Q)); % loss of orthogonality
fprintf('||Q*R - X|| = %0.64e\n', norm(Q*R - X)); % backward error
% Results on my machine:
% mgs:
% ||I - Q'*Q|| = 4.1017407521273322775592436112613973088682572487422006712876054735e-16
% ||Q*R - X|| = 1.7763568394002504646778106689453125000000000000000000000000000000e-15
The same script on her machine prints trailing 0's after the 16th digit for both quantities.
I had assumed that Matlab computed in double precision regardless of the machine, but it would seem that Matlab is somehow utilizing higher precision on my machine than on my colleague's. Or is there another explanation for why I can print 64 digits of precision?
My specs: Matlab 2019a, Windows 10 64-bit, Intel Core i7-8850U CPU @ 1.80GHz, 16GB RAM, Thinkpad X1 Carbon Gen 6
Colleague's: Matlab 2017a, Windows 7 (don't know the rest but her Thinkpad is about 6 years older than mine, so likely lacking some features that mine has)

Risposta accettata

James Tursa
James Tursa il 18 Feb 2020
Modificato: James Tursa il 18 Feb 2020
What you describe sounds like it is just a display issue. Earlier versions of MATLAB on PC machines used a library print function that only printed significant digits. Later versions of MATLAB on PC machines switched to a library function that prints all of the requested digits in an exact binary floating point to decimal sense ... but still only about 15-16 of those digits are significant. The underlying double precision arithmetic and storage is the same. I don't recall the exact MATLAB version when they made the switch, but I can look it up to confirm.
Results on PCWIN64 R2017a:
||I - Q'*Q|| = 4.1017407521273323000000000000000000000000000000000000000000000000e-16
||Q*R - X|| = 1.7763568394002505000000000000000000000000000000000000000000000000e-15
>> num2strexact(norm(eye(2) - Q'*Q))
ans =
'4.1017407521273322775592436112613973088682572487422006712876054734806530177593231201171875e-16'
>> num2strexact(norm(Q*R - X))
ans =
'1.7763568394002504646778106689453125e-15'
Results on PCWIN64 R2017b:
||I - Q'*Q|| = 4.1017407521273322775592436112613973088682572487422006712876054735e-16
||Q*R - X|| = 1.7763568394002504646778106689453125000000000000000000000000000000e-15
>> num2strexact(norm(eye(2) - Q'*Q))
ans =
'4.1017407521273322775592436112613973088682572487422006712876054734806530177593231201171875e-16'
>> num2strexact(norm(Q*R - X))
ans =
'1.7763568394002504646778106689453125e-15'
Results on PCWIN64 R2019a:
||I - Q'*Q|| = 4.1017407521273322775592436112613973088682572487422006712876054735e-16
||Q*R - X|| = 1.7763568394002504646778106689453125000000000000000000000000000000e-15
>> num2strexact(norm(eye(2) - Q'*Q))
ans =
'4.1017407521273322775592436112613973088682572487422006712876054734806530177593231201171875e-16'
>> num2strexact(norm(Q*R - X))
ans =
'1.7763568394002504646778106689453125e-15'
So you can see that it is just a display issue, and the display change came in R2017b. The underlying calculations actually produce the exact same result in all three versions. (num2strexact is a mex routine that prints the exact binary floating point to decimal conversion)
But, regardless of how many decimal digits actually get printed, the double floating point arithmetic in the background is the same on your machine as it is on hers.
  7 Commenti
Walter Roberson
Walter Roberson il 19 Feb 2020
Loop code on vectors or arrays can end up automatically vectorized if the array is large enough and MATLAB recognizes the pattern of operations as ones that can be sent to LAPACK or MKL
Kathryn Lund
Kathryn Lund il 19 Feb 2020
We both have C compilers.
And along similar lines: the only way to standardize vectorization across our machines would be to change the way Matlab compiles C-libraries, right? Is that even possible?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Performance and Memory in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by