Réponse apportée
Back propagation on a deep learning custom layer with a maxpooling "alike" functionality
Don't write this: function [Z, memory] = forward(layer, X) N = size(X,4); X_reshaped = res...

environ 8 ans il y a | 0

Réponse apportée
semanticseg - out of memory on device
I understand that there's a bug in this demo script, and the default MiniBatchSize is too large and should be reduced to 4: ...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
help error CNN The output of layer 6 is incompatible with the input expected by layer 7.
I ran the <https://uk.mathworks.com/help/nnet/ref/analyzenetwork.html Network Analyzer> on your network: analyzeNetwork(lay...

environ 8 ans il y a | 0

Réponse apportée
Solving sparse matrix on GPU and memory problems (even with free memory available)
Hi Paulo. I must admit, I'm not extremely familiar with the behaviour of the matrix factorization we use to implement the sparse...

environ 8 ans il y a | 0

Réponse apportée
GPU Array lazy evaluation?
MATLAB doesn't take 200MB on device selection, the CUDA driver does. MATLAB pools up to a quarter of the GPU memory by defaul...

environ 8 ans il y a | 1

Réponse apportée
Is Matlab/ Simulink supporting Nvidia external GPU Systems/Thunderbold 3 for Machine Learning and Deep Learning projects including embedded systems like Jetson TX2?
Yes, it's supported. This isn't really a question of MATLAB's system requirements; if the CUDA driver can interact with your car...

environ 8 ans il y a | 2

| A accepté

Réponse apportée
GPU overload - specifying gpus using parpool
That code is selecting device 2 on every worker. You want something like parpool('local', 3); spmd gpuDevice(labi...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
How to start operations in parrallel once the data has become avaliable
Try <https://www.mathworks.com/help/distcomp/parfeval.html parfeval> in conjunction with <https://www.mathworks.com/help/distcom...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
why iam having error "The following error occurred converting from gpuArray to single: Conversion to single from gpuArray is not possible"
This can happen sometimes when you are running low on GPU memory due to a bug. You will be receiving the "GPULowOnMemory" warnin...

environ 8 ans il y a | 1

Réponse apportée
call mexcuda file returned gpuarray cost abnormal time
The time is all in your mex function. It looks as though the time is spent in line 11 because your kernel is running asynchronou...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
Connection problems with cloud center to AWS p2.8 GPU
P2 is limited and under heavy use. You should try a range of different regions, see what's available. You could also try P3, G2 ...

environ 8 ans il y a | 0

Réponse apportée
Manipulating matrices/vectors in GPU array operation
It's hard to know how to get started answering your question. Using the GPU requires vectorized code, so you need to translate l...

plus de 8 ans il y a | 0

Réponse apportée
CUDA Unexpected Error for nndata2gpu
Looks like you found a bug, many thanks. We will investigate. Meanwhile, best guess for now, this is caused by using more data t...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
interp1() broken on GPUs in 2017a?
This is a bug, thanks for reporting it to us. To work around, make sure the data X and query Xq are the same datatype.

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
error while trying to train network using multiple cpus
The error means that the |vdsrImagePatchDatastore| does not support parallel training. This is a custom datastore created for th...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
What does the error message "Requested code-table for unsupported compute-capability: 2" mean?
It means you've hit a <https://uk.mathworks.com/support/bugreports/search_results?utf8=✓&search_executed=1&keyword=Fermi&release...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
If gpu computing or convert to mex file help to accelerate the code
It doesn't look as though the problem is the speed of execution of those functions, so much as the number of times they are call...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How is it possible to use a validation set with a LSTM?
It's ugly, but if you use Checkpoints, then you can use an OutputFcn to (once per epoch) load the network from a checkpoint and ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
mex/mexcuda for a target GPU
The supported (if not exactly documented) way of doing this is to define the variable |NVCCFLAGS| in your call to |mexcuda|. ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Parallel running coroutines in Matlab
This is one of the major purposes of the Parallel Computing Toolbox. Start by taking a look at <https://uk.mathworks.com/help/di...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Is there a plan to have gpu support for rangesearch?
The best I can say is: I have reported your request to the Stats Team. So I hope you'll have it in a future release!

plus de 8 ans il y a | 0

Réponse apportée
Processing on GPU in Simulink
|gpuArray| is not yet supported by GPU Coder. To see how you can use GPU Coder with Simulink, take a look at <https://uk.mathwor...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
GPU speed up, matrix multiplication
|tic| and |toc| are not giving the correct timings for your first set of iterations, because your kernels are launching asynchro...

plus de 8 ans il y a | 0

Réponse apportée
slow training on single gpu
Upgrade MATLAB with each new release, we are making big performance improvements all the time.

plus de 8 ans il y a | 0

Réponse apportée
GPU programming on Matlab (Mac/Window): What are my options?
Others may have a longer answer to your question, but certainly it is possible to get an NVIDIA GPU for a desktop PC with a PCI ...

plus de 8 ans il y a | 2

| A accepté

Réponse apportée
Use CUdA and CudNN with Matlab
Check <https://uk.mathworks.com/help/gpucoder/gs/setting-up-the-toolchain.html some of these environment variables> to make sure...

plus de 8 ans il y a | 0

Réponse apportée
Deep Learning - Data no longer exists on the device
This would happen if you are resetting the device or switching device using |reset| or |gpuDevice|. Perhaps you have a custom la...

plus de 8 ans il y a | 2

Réponse apportée
Code Vectorization in custom layer
Adotf = cellfun(@(aa,ff)ff.'*aa, A, f, 'UniformOutput', false); Adotf = cat(1, Adotf{:}); Z = X(k).*Adotf(jj,:); j = ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Dear friends, when I use the gather command of MATLAB 2016a, sometimes this command takes a very large amount of time. That's why? thanks a lot.
|gather| itself cannot possibly take 5 seconds - you can prove this by running |gputimeit(@()gather(b))| rather than using |tic|...

plus de 8 ans il y a | 1

Réponse apportée
I need to do this without for loop(For Gpu computing)
You can't do this, but I will take it as a further request for |pagefun| to support |qr| which will be coming in a future versio...

plus de 8 ans il y a | 1

| A accepté

Charger plus