Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Does CUDAImageConvolve work on lists?

8 views
Skip to first unread message

DmitryG

unread,
Oct 19, 2011, 5:39:00 AM10/19/11
to
It is written in Mathematica's help:

"
CUDAImageConvolve[img,kern]
gives the convolution of img with kern.

CUDAImageConvolve[list,kern]
gives the convolution of list with kern.
"

However, for me CUDAImageConvolve does not work on lists. An example:

NN = 500;
sList = Table[RandomReal[{0, 1}], {i, 1, NN}, {j, 1, NN}];

ListConvolve[sList, sList] (* Works *)

(* But *)
Needs["CUDALink`"]
CUDAImageConvolve[sList, sList] (* Does not work *)

Dmitry



.

0 new messages