Error while using dct on gpu. Matrix dimensions must agree.
조회 수: 1 (최근 30일)
이전 댓글 표시
N=8;
A=gpuArray(rand(N,N,N));
B=dct(A);
댓글 수: 0
답변 (1개)
Edric Ellis
2020년 3월 9일
This appears to be a problem with the gpuArray version of dct. Thanks for reporting this.
댓글 수: 2
Paul Kry
2022년 3월 31일
Just installed 2022a, and get "Error using dct. Input gpuArray must be a vector or two-dimensional matrix." Any solution for this on the horizon?
Walter Roberson
2022년 3월 31일
Reshape your input to the same number of rows and [] columns. dct() that. Reshape back.
참고 항목
카테고리
Help Center 및 File Exchange에서 GPU Computing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!