13c66032d5
It's not necessary to store the tests in a separate repository, since other packages can just reference the tests in this repo. Also update, the other tests to pull from git repos in the rpms namespace.
9 lines
166 B
C
9 lines
166 B
C
#include <omp.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
int nthreads = omp_get_num_threads();
|
|
printf("Num Threads: %d\n", nthreads);
|
|
return 0;
|
|
}
|