필터 지우기
필터 지우기

different result between gpuArray / matrix

조회 수: 4 (최근 30일)
emar
emar 2017년 5월 2일
댓글: Joss Knight 2017년 5월 13일
Hello, I tried to compare the result between two codes two inputs with the same function:
function local_sum_A = local_sum(A,m,n)
B = padarray(A,[m n]);
s = cumsum(B,1);
c = s(1+m:end-1,:)-s(1:end-m-1,:);
s = cumsum(c,2);
local_sum_A = s(:,1+n:end-1)-s(:,1:end-n-1)
It's a function that i found on Matlab. When i compile :
A=rand(20);
s=local_sum(A,21,22);
gpuDevice;
A2=gpuArray(A);
s2=local_sum(A2,21,22);
I have two different results ( difference by a factor 1e-13), but I do a lot of calculations after, so the difference become important (1e-02).
Could you tell me why there is such difference ?
Thank you in advance
  댓글 수: 2
Adam
Adam 2017년 5월 2일
gpu does calculations differently to the cpu so there will be different levels of accuracy. 1e-13 is insignificant, but the more calculations you do certainly the more the error will inevitably accumulate.
Joss Knight
Joss Knight 2017년 5월 13일
To be clear, the error here is between the computed result and the theoretically correct result, not between the CPU result and the GPU result. The CPU result is no more correct than the GPU one. All floating point computation has error, and this error always accumulates the more operations you do.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 GPU Computing in MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by