Skip to content

Commit b0f3256

Browse files
committed
Update blog info.
1 parent f25f8ac commit b0f3256

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

INSTALL.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# GAFT Installation Instruction
2+
3+
## 1. Install MPI implementations ([MPICH](http://www.mpich.org/downloads/), [OpenMPI](https://www.open-mpi.org/software/ompi/v3.0/))
4+
5+
### Ubuntu
6+
7+
``` shell
8+
sudo apt install mpich
9+
```
10+
11+
### macOS
12+
13+
``` shell
14+
brew install mpich
15+
```
16+
17+
### Windows
18+
19+
Download the [Microsoft MPI (MS-MPI)](http://msdn.microsoft.com/en-us/library/bb524831%28v=vs.85%29.aspx)
20+
21+
### Other platforms
22+
23+
See more details in http://www.mpich.org/downloads/
24+
25+
## 2. Install GAFT
26+
27+
### Via pip
28+
29+
``` shell
30+
pip install gaft
31+
```
32+
### From source
33+
34+
``` shell
35+
git clone [email protected]:PytLab/gaft.git
36+
37+
cd gaft
38+
39+
python setup.py install
40+
```
41+
42+
## 3. Run test
43+
44+
``` shell
45+
cd gaft
46+
47+
python tests/gaft_test.py
48+
```
49+

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Installation:
4242

4343
python setup.py install
4444

45+
See `INSTALL.md <https://github.com/PytLab/gaft/blob/master/INSTALL.md>`_ for more installation details.
46+
4547
Example:
4648
--------
4749

@@ -148,7 +150,9 @@ Blogs
148150

149151
- `使用MPI并行化遗传算法框架GAFT <http://pytlab.github.io/2017/08/02/%E4%BD%BF%E7%94%A8MPI%E5%B9%B6%E8%A1%8C%E5%8C%96%E9%81%97%E4%BC%A0%E7%AE%97%E6%B3%95/>`_
150152

151-
- `遗传算法中几种不同选择算子的比较 <http://pytlab.org/2017/09/19/%E9%81%97%E4%BC%A0%E7%AE%97%E6%B3%95%E4%B8%AD%E5%87%A0%E7%A7%8D%E4%B8%8D%E5%90%8C%E9%80%89%E6%8B%A9%E7%AE%97%E5%AD%90%E7%9A%84%E6%AF%94%E8%BE%83/>`_
153+
- `遗传算法中几种不同选择算子的比较 <http://pytlab.github.io/2017/09/19/%E9%81%97%E4%BC%A0%E7%AE%97%E6%B3%95%E4%B8%AD%E5%87%A0%E7%A7%8D%E4%B8%8D%E5%90%8C%E9%80%89%E6%8B%A9%E7%AE%97%E5%AD%90%E7%9A%84%E6%AF%94%E8%BE%83/>`_
154+
155+
- `遗传算法中适值函数的标定与大变异算法 <http://pytlab.github.io/2017/09/23/%E9%81%97%E4%BC%A0%E7%AE%97%E6%B3%95%E4%B8%AD%E9%80%82%E5%80%BC%E5%87%BD%E6%95%B0%E7%9A%84%E6%A0%87%E5%AE%9A%E4%B8%8E%E5%A4%A7%E5%8F%98%E5%BC%82%E7%AE%97%E6%B3%95/>`_
152156

153157
TODO
154158
----

0 commit comments

Comments
 (0)