设置线程数打开Mp(c ++)

时间:2015-05-13 09:33:00

标签: c++ multithreading openmp

我正在开发visual studio 2012并试图在一个非常简单的问候语单词上使用几个线程:

#include <omp.h> 
#include <stdio.h> 

int main() {
    omp_set_dynamic(0);
    omp_set_num_threads(4);
#pragma omp parallel 
    printf("Hello from thread %d, nthreads %d\n", omp_get_thread_num(), omp_get_num_threads()); 
}

但我得到的结果是:

Hello from thread 0, nthreads 1

为什么我不能有4个帖子?

0 个答案:

没有答案