Проект Templet

акторный фреймворк для запуска задач
на множестве ядер, кластерах и в облаках
templet.ssau.ru

Инструменты пользователя

Инструменты сайта


templet:пример:hello_openmp_world
  #include <omp.h>
  #include <stdio.h>
  #include <stdlib.h>
   
  int main (int argc, char *argv[]) {
    int th_id, nthreads;
    #pragma omp parallel private(th_id)
    {
      th_id = omp_get_thread_num();
      printf("Hello World from thread %d\n", th_id);
      #pragma omp barrier
      if ( th_id == 0 ) {
        nthreads = omp_get_num_threads();
        printf("There are %d threads\n",nthreads);
      }
    }
    return EXIT_SUCCESS;
  }
templet/пример/hello_openmp_world.txt · Последнее изменение: 2013/10/25 19:16 — 127.0.0.1