-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·66 lines (50 loc) · 2.3 KB
/
Copy pathMakefile
File metadata and controls
executable file
·66 lines (50 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
rungui:
./run_mlo.sh --gui
run_example1:
./run_mlo.sh -f examples/artificial_continous_function/fitness_script.py -c examples/artificial_continous_function/configuration_script.py
run_example2:
./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/configuration_script.py
run_example3:
./run_mlo.sh -f examples/reconfigurable_radio/fitness_script.py -c examples/reconfigurable_radio/configuration_script.py
run_example4:
./run_mlo.sh -f examples/xinyu_rtm/fitness_script.py -c examples/xinyu_rtm/configuration_script.py
run_exp:
nohup ./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/a1.py > /homes/mk306/public_html/a1.txt&
nohup ./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/a2.py > /homes/mk306/public_html/a2.txt&
nohup ./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/a3.py > /homes/mk306/public_html/a3.txt&
nohup ./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/a4.py > /homes/mk306/public_html/a4.txt&
nohup ./run_mlo.sh -f examples/quadrature_method_based_app/fitness_script.py -c examples/quadrature_method_based_app/pso.py > /homes/mk306/public_html/pso.txt&
nohup ./run_mlo.sh -f examples/xinyu_rtm/fitness_script.py -c examples/xinyu_rtm/configuration_script.py > /homes/mk306/public_html/xin.txt &
install_gui:
easy_install numpy
easy_install scipy
easy_install scikit-learn
east_install matplotlib
easy_install pisa
easy_install pypdf
easy_install wxPython pyt
easy_install deap
easy_install html5lib
easy_isntall reportlab
install_terminal:
easy_install numpy
easy_install scipy
easy_install scikit-learn
easy_install matplotlib
easy_install pisa
easy_install pypdf
easy_install deap
easy_install html5lib
easy_isntall reportlab
restart:
./run_mlo.sh --restart
pep:
pep8 --statistic --exclude=pyXGPR,Old_Files .
.PHONY: presentation
presentation:
pdflatex -output-directory=Presentation Presentation/presentation.tex
pdflatex -output-directory=Presentation Presentation/presentation.tex
clean:
rm profile
find . -name "*.pyc" -delete
find . -name "*~" -delete