herrDeng網內搜尋

自訂搜尋

Ads

2021年8月26日 星期四

openmp C ++平行化程式算Fibonacci費式數列

 

 openmp C ++平行化程式算Fibonacci費式數列。簡易的費式數列,可以練就諸多的程式設計概念與技巧https://www.youtube.com/playlist?list=PLYRlUBnWnd5Jb9PI7P1V2GEgOu1n3hki- 
平行化的費氏數列遞迴程式,這真需要老師教,有的程式設計師也搞不定。如果就照網路一般作法,居然是序列版的好幾倍時間(問題出在哪裡?可能別人用的compiler太好,根本不用操心threads用幾個,而你用的compiler每呼叫一次多重執行緒遞迴函數,又多配置了執行緒,所謂的好幾倍,是謙虛的說法,事實上可能是萬倍、百萬倍時間)。此時真不能高估compiler的能力,少用神Class,要能自己分配執行緒才是王道。關鍵的程式碼如下:
  1. #include <omp.h>
  2.  
  3. int f0(int n, int n_threads){
  4. int x, y;
  5. if( n<=1) return 1;
  6. else
  7. {
  8. if (n_threads>1)
  9. {
  10. n_threads=(n_threads+1)/2;
  11. #pragma omp task shared(x)
  12. x=f0(n-1, n_threads);
  13. #pragma omp task shared(y)
  14. y=f0(n-2, n_threads);
  15. #pragma omp taskwait
  16. return x+y;
  17. }
  18. else
  19. {
  20. x=f0(n-1, 1);
  21. y=f0(n-2, 1);
  22. return x+y;
  23. }
  24. }
  25. }
而主程式呼叫的部分,可寫為
  1. #pragma omp parallel sections num_threads(8)
  2. {
  3. answer=f0(40,8);
  4. }

沒有留言:

Related Posts Plugin for WordPress, Blogger...

熱門文章