forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenmp.f
24 lines (24 loc) · 804 Bytes
/
openmp.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
c
c
c ###################################################
c ## COPYRIGHT (C) 2010 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c #############################################################
c ## ##
c ## module openmp -- OpenMP processor and thread values ##
c ## ##
c #############################################################
c
c
c nproc number of processors available to OpenMP
c nthread number of threads to be used with OpenMP
c
c
module openmp
implicit none
integer nproc
integer nthread
save
end