Réponse apportée
MATLAB Requirements for Neural Network on GPU
Yes.

plus de 8 ans il y a | 0

Réponse apportée
Complex numbers in ifft(fft(x))
I'm not sure but I assume it's because the GPU FFT computation is non-deterministic. The order of operations is not preserved be...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
GPU Out of memory on device.
Reduce the |'MiniBatchSize'| option to |classify|.

plus de 8 ans il y a | 5

| A accepté

Réponse apportée
Does matlab support parallelized loops on GPU
Scrap |A = repmat(A,N,1)| and instead repeat along dim 3. Then use |pagefun|. A = repmat(A,1,1,N); inv_A = pagefun(@mldi...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
How to solve following CUDA error "matconvnet"?
Unknown CUDA errors like this are nearly always due to a kernel timeout. If you have a graphics card that is driving your displa...

plus de 8 ans il y a | 0

Réponse apportée
When using multiple GPU's get out of memory error at less than max single GPU memory x number GPUS
Make sure your default parallel pool only opens one worker per GPU, otherwise many workers will all try to share the same GPU, h...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Coding a deep learning network
There is no current CPU support for codegen for deep networks. You could use MATLAB Compiler instead, which can generate DLLs.

plus de 8 ans il y a | 0

Réponse apportée
Solving multiple systems of equations using GPU and iterative methods
Sparse |gpuArrays| have been supported since R2015b and |bicg| since R2016b, so you should just call |bicg| with the original sp...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to run "Train a Convolutional Neural Network for Regression" example in single precision on laptop with NVIDIA GPU?
Laptop GPUs are severely limited in power and performance and are often no better for compute than the CPU, even in single preci...

plus de 8 ans il y a | 0

Réponse apportée
What's the name of the fully connected layers in googlenet?
net = googlenet; lg = getLayerGraph(net); for i = 1:numel(lg.Layers) name = sprintf('%s_%d', class(lg.Layers{i}),...

plus de 8 ans il y a | 1

Réponse apportée
Select a group gpu's that are discontinuous in gpuDevice
There are two ways: The best way is to set environment variable CUDA_VISIBLE_DEVICES to 0,2,3 before you start MATLAB, or as ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Titan V using huge amount of memory
To avoid this cost, do not use the same GPU on multiple workers. Although the GPU is a data parallel system, it is not task para...

plus de 8 ans il y a | 1

Réponse apportée
Out of memory error in matlab
Clearly you can't store the activations for your entire dataset in memory. fc7 of AlexNet has 4096 single precision outputs. Tha...

plus de 8 ans il y a | 0

Réponse apportée
Titan V using huge amount of memory
The CUDA runtime in the latest drivers appears to be allocating a huge amount of main memory when it is initialized on a Volta c...

plus de 8 ans il y a | 0

Réponse apportée
Matlab limits GPU utilization?
I'm not sure I understand why it was recommended to you to move to Windows - can you explain? The way the Task Manager define...

plus de 8 ans il y a | 0

Réponse apportée
GTX1060 for deep learning semantic image segmentation
Yes, 3GB isn't enough for this example, sorry. SegNet is just too high resolution a network. You could try training on the CPU. ...

plus de 8 ans il y a | 0

Réponse apportée
How to apply a function to each column of a 3D array?
There isn't anything supported for |gpuArray| that can take any generic user function in this way. If |test_f| contains operatio...

plus de 8 ans il y a | 0

Réponse apportée
griddedInterpolant not a built-In Functions on a GPU
I'm not sure what you're asking, but if you're asking "am I right that I have to rewrite my code?" then yes, you are right.

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Why is Titan V training performance so poor?
I am posting here the same information with which I responded to your tech support request. Perhaps others will find this useful...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Using Arrays inside arrayfun()
You can't do any array or matrix operations in a GPU |arrayfun| kernel. You can access the contents of an array that is present ...

plus de 8 ans il y a | 0

Réponse apportée
Debugging CUDA in Matlab without having to restart
If you crash your card, you often need to reload the driver, in much the same way that if a program segfaults, it has to be rest...

plus de 8 ans il y a | 0

Réponse apportée
Qt GUI wrapper for matlab based dlls to run on GPU
MATLAB Compiler will work correctly for |gpuArray| code. You don't need to write your own CUDA kernels, you just write MATLAB co...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
GPU memory usage using Matlab deep learning
While you are training a network it needs a lot of working memory. The deeper the network, the more memory it needs. Which netwo...

plus de 8 ans il y a | 0

Réponse apportée
What happen to the CUDA cache mem?
The result is stored as the variable |ans|, which means you have less memory the second time round.

plus de 8 ans il y a | 1

Réponse apportée
GPU problem with Matlab 2017b
To use a Fermi card with R2017b you will first need to install Update 2. Follow the link in this bug report: <https://www.mathwo...

plus de 8 ans il y a | 1

Réponse apportée
How are gpuArrays handled inside parfor?
Yes, they can all use the same GPU. By default, anything you run on the same GPU from different processes will run in serial. Ho...

plus de 8 ans il y a | 1

Réponse apportée
why i receive the following error?
In <http://www.vlfeat.org/matconvnet/install/ MatConvNet's own installation documentation>, which I found by typing "MatConvNet ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Choose a graphic card to train SegNet for deep learning
The GeForce 10 series will all work fine, they just have different capabilities and constraints. On a cheaper GPU you may need t...

plus de 8 ans il y a | 1

Réponse apportée
Geforce 1080ti vs Quadro P4000 for neural networks and deep learning
On the face of it the GTX 1080Ti is an all-round better performing card than the Quadro P4000 for deep learning applications, wi...

plus de 8 ans il y a | 3

| A accepté

Réponse apportée
Issue CUDA_ERROR_LAUNCH_FAILED and reset(gpuDevice) doesn't work
In the last few days MATLAB R2017b was updated with a bug fix for the Volta architecture. This requires all users of Deep Networ...

plus de 8 ans il y a | 0

Charger plus