@@ -10,7 +10,7 @@ an example to compile the GPU code without OpenACC:
10
10
.. code-block :: bash
11
11
12
12
cd tinker9 && mkdir build
13
- FC=gfortran compute_capability=70 gpu_lang=CUDA cmake ..
13
+ FC=gfortran compute_capability=70 gpu_lang=cuda cmake ..
14
14
make
15
15
make test
16
16
@@ -51,7 +51,7 @@ Configure Compilers
51
51
-------------------
52
52
If we are lucky, we do not need to specify compilers in the *cmake *
53
53
configuration. However, specifying these compilers is preferred because
54
- programs are not always installed they way we wanted.
54
+ programs are not always installed the way we wanted.
55
55
Set *CXX=... *, *CUDACXX=... *, and *FC=... * to specify the non-default C++,
56
56
CUDA, and Fortran compilers, respectively. These environmental variables
57
57
are supported by *cmake *.
@@ -99,9 +99,10 @@ different from the default cmake behavior to install the program under */usr/loc
99
99
C++ syntax standard. The source code is c++11-compliant, and should have no
100
100
problems compiled with c++14. If set to *14 * here, users should make sure
101
101
the compilers are c++14-compliant.
102
- In general, Users should not worry about the C++ standard for Tinker9.
103
- Using a more recent C++ standard is unlikely to speed up the performance of
104
- Tinker9 and may harm the availablity of Tinker9 to older machines.
102
+ In general, users should not worry about the C++ standard for Tinker9.
103
+ Using a more recent C++ standard to write the source code is unlikely
104
+ to speed up the performance of Tinker9 and may harm the availability of
105
+ Tinker9 to older machines.
105
106
106
107
**-DPREC (prec) = mixed **
107
108
0 commit comments