Andrea Picciau
Followers: 0 Following: 0
統計
All
Feeds
回答済み
how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
This page from the documentation might help! Requires at least MATLAB R2023b.
how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
This page from the documentation might help! Requires at least MATLAB R2023b.
12ヶ月 前 | 0
回答済み
CUDA for M1 MacBook Pro
Hi Fatemah, You might be interested in this blog article of ours: Exploring the MATLAB beta for Native Apple Silicon. This talk...
CUDA for M1 MacBook Pro
Hi Fatemah, You might be interested in this blog article of ours: Exploring the MATLAB beta for Native Apple Silicon. This talk...
2年以上 前 | 1
回答済み
how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
Hi Michal, Parallel Computing Toolbox (and GPU coder from what I know) comes with its own version of the toolkit, so you should...
how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
Hi Michal, Parallel Computing Toolbox (and GPU coder from what I know) comes with its own version of the toolkit, so you should...
4年弱 前 | 1
回答済み
gpuDevice suddenly stopped working
Hello there! I would check the following: Make sure that the environment variable CUDA_VISIBLE_DEVICES is not set. You can do ...
gpuDevice suddenly stopped working
Hello there! I would check the following: Make sure that the environment variable CUDA_VISIBLE_DEVICES is not set. You can do ...
約4年 前 | 0
| 採用済み
回答済み
Large discrepency between CPU and GPU with fftn and ifftn?
Hi Nathan, The results differ for two related reasons: GPUs and CPUs have quite different architectures, the CPU and GPU algo...
Large discrepency between CPU and GPU with fftn and ifftn?
Hi Nathan, The results differ for two related reasons: GPUs and CPUs have quite different architectures, the CPU and GPU algo...
4年以上 前 | 1
| 採用済み
回答済み
Why is MATLAB gpuArray sparse matrix multiplication so fast despite using double precision?
Hello there! The correct way to time GPU operations is by using gputimeit. mvm_time = gputimeit(@() gpu_matrix*gpu_input, 1); ...
Why is MATLAB gpuArray sparse matrix multiplication so fast despite using double precision?
Hello there! The correct way to time GPU operations is by using gputimeit. mvm_time = gputimeit(@() gpu_matrix*gpu_input, 1); ...
4年以上 前 | 2
回答済み
Alternatives to accumarray for faster calculations?
Hi Nathan, Accumulation operations require synchronisation and are never going to squeeze the best performance out of your GPU....
Alternatives to accumarray for faster calculations?
Hi Nathan, Accumulation operations require synchronisation and are never going to squeeze the best performance out of your GPU....
4年以上 前 | 3
| 採用済み
回答済み
How to run program on GPU
Hi Sania, If you're training your network, you need to set 'ExecutionEnvironment' to 'gpu' or 'multi-gpu' in trainingOptions. ...
How to run program on GPU
Hi Sania, If you're training your network, you need to set 'ExecutionEnvironment' to 'gpu' or 'multi-gpu' in trainingOptions. ...
5年弱 前 | 0
| 採用済み
回答済み
GeForce GTX 1080 TI "GPU acceleration using the Parallel Computing Toolbox"
Hi Khaled, It's going to be difficult for anyone to help without a crash dump. The best thing to do is to click on the button a...
GeForce GTX 1080 TI "GPU acceleration using the Parallel Computing Toolbox"
Hi Khaled, It's going to be difficult for anyone to help without a crash dump. The best thing to do is to click on the button a...
約5年 前 | 1
回答済み
Why is the gpuArray version of my code slower?
Hi Ariel, There are three problems with your script. Your code is doing a lot of for loops and indexing of gpuArray data, whic...
Why is the gpuArray version of my code slower?
Hi Ariel, There are three problems with your script. Your code is doing a lot of for loops and indexing of gpuArray data, whic...
5年以上 前 | 1
回答済み
GPU utilization and parallel computation With Matlab for heavy computation
I'll try to answer your questions in order... Yes! Isn't that great? Yes, because there are two problems with your code: (a) y...
GPU utilization and parallel computation With Matlab for heavy computation
I'll try to answer your questions in order... Yes! Isn't that great? Yes, because there are two problems with your code: (a) y...
5年以上 前 | 0
| 採用済み
回答済み
Out of memory issue on evaluating CNNs
The problem is that your GPU's 6GB memory is not enough to execute the semantic segmentation with the default settings. Reducing...
Out of memory issue on evaluating CNNs
The problem is that your GPU's 6GB memory is not enough to execute the semantic segmentation with the default settings. Reducing...
5年以上 前 | 4
| 採用済み
回答済み
Setting up desktop computer for remote computing
To do that, you'll need to have a MATLAB Parallel Server license. If you have it, you can install the MATLAB Job Scheduler on yo...
Setting up desktop computer for remote computing
To do that, you'll need to have a MATLAB Parallel Server license. If you have it, you can install the MATLAB Job Scheduler on yo...
5年以上 前 | 0
回答済み
PARFOR Transparency violation error
The problem occurs in this line: syms tt Although the syms function is very handy for hacking symbolic math on your client mac...
PARFOR Transparency violation error
The problem occurs in this line: syms tt Although the syms function is very handy for hacking symbolic math on your client mac...
5年以上 前 | 6
| 採用済み
回答済み
Running Code on GPU Seems much Slower than Doing so on CPU
You don't need to disable JIT acceleration. Rather, you need to measure using timeit and gputimeit like so: % CPU data a = one...
Running Code on GPU Seems much Slower than Doing so on CPU
You don't need to disable JIT acceleration. Rather, you need to measure using timeit and gputimeit like so: % CPU data a = one...
5年以上 前 | 1
| 採用済み