i am writing the following command to use gpu:
k=parallel.gpu.CUDAKernel('STOMP.ptx', 'STOMP.cu','WavefrontUpdateSelfJoin')
using matlab 2015a on Windows 7. I get the following error at runtime:
error using parallel.internal.gpu.handleKernelArgs>iParseToken (line272)
unsupported type argument specification 'volatile unsigned long long int* profile'
error in parallel.internal.gpu.handleKernelArgs>iParseCPrototype (line 191)
error in parallel.internal.gpu.handleKernelArgs (line 79)

답변 (2개)

Joss Knight
Joss Knight 2017년 5월 22일

0 개 추천

The argument parser cannot handle your type qualifier 'volatile' in order to work out the appropriate datatypes of arrays to pass to the kernel.
Either remove the qualifier 'volatile' (which is meaningless for a function argument anyway), or specify the prototype of your kernel function directly as a string instead of passing the .cu file in its entirety.
Mohsen Moftah
Mohsen Moftah 2017년 5월 25일
편집: Walter Roberson 2017년 5월 25일

0 개 추천

I removed the 'volatile' qualifier from the .cu file and regenerated the .ptx. but i got the following
error when using parallel.gpu.CUDAKernel:
an error occurred during PTX compilation of <image>
The information log was:
<No information>
The error log was:
<No information>
the CUDA error code was: CUDA_ERROR_UNKONWN

댓글 수: 1

Joss Knight
Joss Knight 2017년 5월 29일
편집: Joss Knight 2017년 5월 29일
Did you recompile your kernel?

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

카테고리

도움말 센터File Exchange에서 GPU Computing에 대해 자세히 알아보기

제품

질문:

2017년 5월 21일

편집:

2017년 5월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by