How to run the iteration (total= 2^22) faster?

2 次查看(过去 30 天)
Hi everyone, I will make number of simulations next week, and I would like to know if I can make the for loop faster. I already use parfor actually in pretty straight forward coding algorithm in a mimo communication system model. I heard that maybe gpu can be added to make the iteration faster. Does anyone have an idea? Otherwise, I will keep my computer to finish my simulations almos 2 weeks non-stop. Best regards Samet

采纳的回答

Matt J
Matt J 2014-12-12
编辑:Matt J 2014-12-12
It depends on what your computation looks like. The GPU can accelerate many of the usual vectorized operations. A.*B, A+B, A./B, etc... can be made faster as long as A and B can be kept on the GPU across all iterations. However, if you have to pull data back from the GPU to the host, at every iteration, it can introduce communication overhead that could make it all non-worthwhile.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by