OpenMPCheckVersion.c
Go to the documentation of this file.
1 
2 #include <stdio.h>
3 #include <omp.h>
4 const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M',
5  'P', '-', 'd', 'a', 't', 'e', '[',
6  ('0' + ((_OPENMP/100000)%10)),
7  ('0' + ((_OPENMP/10000)%10)),
8  ('0' + ((_OPENMP/1000)%10)),
9  ('0' + ((_OPENMP/100)%10)),
10  ('0' + ((_OPENMP/10)%10)),
11  ('0' + ((_OPENMP/1)%10)),
12  ']', '\0' };
13 int main(void)
14 {
15  puts(ompver_str);
16  return 0;
17 }
int main(void)
const char ompver_str[]


orb_slam2_with_maps_odom
Author(s): teng zhang
autogenerated on Fri Sep 25 2020 03:24:47