I got error while executing this solution
Mostrar comentarios más antiguos
tic
k = gpuArray(1:0.5:10);
a = gpuArray(1:0.5:5);
n1 = numel(k);
n2 = numel(a);
numpl = repmat(k, 1, n2)';
denpl = repmat([ones(n2,1), a.', zeros(n2,1)] ,n1, 1);
w=[.1,.5,.8,1,2,8,15,50,100];
P=freqcp(numpl,denpl,w);
plottmpl(w,w,P);
gpu_time=toc
7 comentarios
KSSV
el 24 de Jul. de 2017
You have to mention the error....
nelson
el 24 de Jul. de 2017
KSSV
el 24 de Jul. de 2017
The error you have specified has nothing to do with the code you have given..
nelson
el 24 de Jul. de 2017
KSSV
el 24 de Jul. de 2017
Okay Okay...you are getting error in this function: plottmpl(w,w,P) it is not a inbuilt function..show us this function.
Walter Roberson
el 24 de Jul. de 2017
Adam
el 24 de Jul. de 2017
Use the debugging 'Stop on errors' option from the Breakpoints menu, then you will see instantly what the problem is.
Respuestas (1)
Walter Roberson
el 25 de Jul. de 2017
0 votos
That code was not designed to expect the possibility that the data was on the GPU.
Please see attached for a modified version that gather()'s the data it needs.
Note: execution of this code also requires the following functions from http://www.codeforge.com/article/216700
bndsdef.m freqcp.m qatan4.m qftdefs.m qsubset.m repltest.m
Grabbing the source is a minor nuisance if (like me) you do not have a codeforge account -- you cannot just copy and paste the source.
Categorías
Más información sobre GPU Computing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!