tesseract  4.00.00dev
/home/stefan/src/github/tesseract-ocr/tesseract/omptest.cpp File Reference
#include <stdio.h>
#include <omp.h>

Go to the source code of this file.

Functions

int main (int argc)
 

Function Documentation

◆ main()

int main ( int  argc)

Definition at line 8 of file omptest.cpp.

8  {
9 #pragma omp parallel num_threads(argc)
10  {
11  int i = omp_get_thread_num();
12  printf("Hello from thread %d\n", i);
13  }
14 }