Update document for version 1.10.7

This commit is contained in:
Atsushi Togo 2016-04-16 12:17:19 +09:00
parent 0b77e01908
commit fd87beb6bd
4 changed files with 22 additions and 9 deletions

View File

@ -3,6 +3,13 @@
Change Log
==========
Apr-16-2016: version 1.10.7
------------------------------
- API example is prepared and it is found in ``Si`` example. No
doucment yet.
- Minor bug fixes.
Mar-15-2016: version 1.10.5
------------------------------

View File

@ -49,9 +49,9 @@ copyright = u'2015, Atsushi Togo'
# built documents.
#
# The short X.Y version.
version = '1.10.5'
version = '1.10.7'
# The full version, including alpha/beta/rc tags.
release = '1.10.5'
release = '1.10.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -13,7 +13,9 @@ The theoretical background is summarized in the paper found at
http://dx.doi.org/10.1103/PhysRevB.91.094306 or the draft in arxiv at
http://arxiv.org/abs/1501.00691 .
Examples are found in ``example-phono3py`` directory.
Examples are found in ``example-phono3py`` directory. Phono3py API
example ``Si.py`` is found in ``example-phono3py/Si`` directory, but
the API document has not yet written.
Documentation
=============

View File

@ -20,15 +20,16 @@ ubuntu linux, these are installed using the package manager::
% sudo apt-get install python-dev python-numpy python-matplotlib \
python-yaml python-h5py libgomp1 liblapacke-dev
In the versions of Ubuntu-12.10 or later, lapacke
In the versions of Ubuntu-12.10 or later, LAPACKE
(http://www.netlib.org/lapack/lapacke.html) can be installed from the
package manager (``liblapacke`` and ``liblapacke-dev``). But in the
older versions of Ubuntu or in the other environments, e.g., Mac, you
may have to compile lapacke by yourself. The compilation procedure is
found at the lapacke web site. After creating the lapacke library,
package manager (``liblapacke`` and ``liblapacke-dev``). In the recent
MacPorts, the ``lapack`` package may contains LAPACKE. But in the
older versions of Ubuntu or in the other environments, you
may have to compile LAPACKE by yourself. The compilation procedure is
found at the LAPACKE web site. After creating the LAPACKE library,
``liblapacke.a`` (or the dynamic link library), ``setup3.py`` must be
properly modified to link it. As an example, the procedure of
compiling lapacke is shown below.
compiling LAPACKE is shown below.
::
@ -37,6 +38,9 @@ compiling lapacke is shown below.
% cp make.inc.example make.inc
% make lapackelib
BLAS, LAPACK, and LAPACKE, these all may have to be compiled
with -fPIC option to use it with python.
Multithreading support
------------------------