Sign in
qemu
/
meson
/
refs/heads/endmessage
/
.
/
test cases
/
common
/
190 openmp
/
main.f90
blob: c062d8691053e16225fc9b7b7a7de6316b13a894 [
file
] [
log
] [
blame
]
program main
if
(
omp_get_max_threads
()
.
eq
.
2
)
then
stop
0
else
print
*,
'Max threads is'
,
omp_get_max_threads
(),
'not 2.'
stop
1
endif
end
program main