Réponse apportée
Computing the distance between a grid of points and N points with arrayfun and GPU
Well, the normal way is to use scalar expansion: Xdist = X(:) - XP(:)'; Ydist = YX(:) - YP(:)'; Zdist = ZX(:) - ZP(:)...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
GPUを使用したDeepLearningの並列処理に関する質問
MATLAB CNNs support any modern multi-gpu environment and it's difficult to advise. Amazon and Azure provide cloud environments o...

environ 9 ans il y a | 1

Réponse apportée
gpuArray/filter doesn't support multi-channel lag terms?
This is a bug that was fixed in R2016b, so you must have an earlier version of MATLAB. If you can't upgrade, you can avoid it by...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Are there any GPU which is compatible both with MATLAB and a MacBook?
An older line of MacBook Pro has the NVIDIA GTX 750M which is compatible with MATLAB. They don't make them any more but you migh...

environ 9 ans il y a | 0

Réponse apportée
How to change activation function for fully connected layer in convolutional neural network?
Activations are added as a separate layer, and in R2017a there is only the |RelULayer| (see <https://www.mathworks.com/help/nnet...

environ 9 ans il y a | 4

| A accepté

Réponse apportée
Limit total GPU memory usage
Since several releases ago MATLAB releases variables as soon as they go out of scope, are overwritten, cleared (using |clear| or...

environ 9 ans il y a | 1

Réponse apportée
Why for loop in CPU faster than in GPU
This isn't amazing at all. You are launching 7 million kernels, each to copy one value into GPU memory. The kernels cannot overl...

environ 9 ans il y a | 0

Réponse apportée
GPU for ConvNN training out of memory
You're going to struggle massively with a small mobile chip like the 750M with only 2GB of memory and a large network like AlexN...

environ 9 ans il y a | 0

Réponse apportée
Cubic interp1 on a GPU array: bug?
This looks like a straightforward bug in the error message that's come as a result of a change in the default |'cubic'| algorith...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Unable to compile cuda code containing dynamic parallelism: Error: “ptxas fatal : Unresolved extern function 'cublasCreate_v2'”
You need to link against the cublas device library in the device linking stage and unfortunately there isn't a proper formal API...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Unable to compile cuda code containing dynamic parallelism: Error: “ptxas fatal : Unresolved extern function 'cublasCreate_v2'”
I don't think you can call cublasDgemm inside a kernel - that's not the way dynamic parallelism works. You can't just call any o...

environ 9 ans il y a | 0

Réponse apportée
Can I use cpu instead of gpu for the DeepLearningImageClassificationExample.m
<https://www.mathworks.com/help/nnet/ref/seriesnetwork.activations.html#namevaluepairs Yes>

environ 9 ans il y a | 0

Réponse apportée
Matlab bug and deadly error while trying to visualize FasterRCNN network feature maps from softmax layer
The |activations| function of the |vision.cnn.FastRCNN| is undocumented and Hidden and so not officially supported. Its inputs a...

environ 9 ans il y a | 0

Réponse apportée
CUDAKernel/feval error, cannot find 'single' input.
I presume if you ask classUnderlying(patches) it'll probably tell you they are single. After all, you have just declare...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
problem with using GPU in matlab
The GTX 1050 doesn't have very good double precision performance, and the default precision for all MATLAB computation is double...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
How to utilize power of GPU computing in Matlab
<https://www.mathworks.com/products/parallel-computing.html Start here.>

environ 9 ans il y a | 0

Réponse apportée
run gpu function using matlab
The argument parser cannot handle your type qualifier 'volatile' in order to work out the appropriate datatypes of arrays to pas...

environ 9 ans il y a | 0

Réponse apportée
Preallocation of composites using smpd
It seems like this is just an issue of timing and synchronisation. You can see this by adding a call to |wait(g)| at the end of ...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
why two different mini-batch Accuracy in CNN
You need to <https://www.mathworks.com/support/bugreports/1439741 install the patch>.

environ 9 ans il y a | 0

Réponse apportée
Unable to get less time for PARFOR loop than FOR loop on the system which has Tesla K20c GPU card in it .
You can try using <https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiIp8Gro-3TAhUGJMA...

plus de 9 ans il y a | 0

Réponse apportée
Generate C/C ++ source code with maximum optimization
Nope, sorry. The third one is supported for some kinds of codegen.

plus de 9 ans il y a | 0

Réponse apportée
Better performace: GPU + Workers
It depends what you're optimizing. Use of the GPU only really make sense if the objective function is a large enough operation t...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Evaluating fucntion by GPU.
Your question is extremely confusing. Every function can act on every element of its inputs at once. So if I write a function ...

plus de 9 ans il y a | 0

Réponse apportée
how to use parallel computing with train faster rcnn detector.
The Error says that |'multi-gpu' and 'parallel'| are not supported and yet you have tried to set your |'ExecutionEnvironment'| t...

plus de 9 ans il y a | 0

Réponse apportée
How do I compile cuda library dll files so that I can use them from Matlab.
PTX is device code only so it's only the runtime CUDA libraries you can link in. You need to learn more about CUDA device code g...

plus de 9 ans il y a | 0

Réponse apportée
Will Matlab support AMD GPU in future?
We periodically review support for OpenCL and AMD. At the moment it doesn't quite have sufficient support to provide the integra...

plus de 9 ans il y a | 3

Réponse apportée
How to distribute computation on GPU vector-wise?
You can loop over and read multiple entries in an input array (as an up-value variable) inside |arrayfun|, but you can't loop ov...

plus de 9 ans il y a | 0

Réponse apportée
How to convert this vectorized code into GPU code for MAXIMUM speedup ?
I was able to get a marginal speedup with additional vectorization of the mask: x = sum(I < cat(3, 120, 155, 160), 3) == t...

plus de 9 ans il y a | 0

Réponse apportée
GPU requirement for convolution neural network.
Current best value for deep learning, image processing and computer vision applications is the GeForce GTX 1080i or the Titan X ...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
indexing sparse gpuArrays?
Generally if you are indexing scalar values in a sparse gpuArray then you're trying to do something very inefficient. Still, if ...

plus de 9 ans il y a | 0

| A accepté

Charger plus