├── .env ├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── books ├── eac2 │ ├── README.md │ ├── ch01.md │ ├── ch02.md │ ├── ch03.md │ ├── ch04.md │ ├── ch05.md │ ├── ch06.md │ ├── ch07.md │ ├── ch08.md │ ├── ch09.md │ ├── ch10.md │ ├── ch11.md │ ├── ch12.md │ ├── ch13.md │ └── img │ │ └── ch01_structure_of_a_typical_compiler.png ├── flex_bison │ ├── .gitignore │ ├── CPPLINT.cfg │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── build │ │ ├── base.mk │ │ └── rule.mk │ ├── ch01 │ │ ├── 1-1_wc │ │ │ ├── Makefile │ │ │ └── wc.l │ │ ├── 1-2_trans │ │ │ ├── Makefile │ │ │ └── trans.l │ │ ├── 1-3_calc │ │ │ ├── Makefile │ │ │ └── calc.l │ │ ├── 1-4_calc │ │ │ ├── Makefile │ │ │ └── calc.l │ │ └── 1-5_calc │ │ │ ├── Makefile │ │ │ ├── calc.l │ │ │ └── calc.y │ ├── ch02 │ │ ├── 2-1_wc │ │ │ ├── Makefile │ │ │ └── wc.l │ │ ├── 2-2_wc │ │ │ ├── Makefile │ │ │ └── wc.l │ │ ├── 2-3_inc │ │ │ ├── Makefile │ │ │ ├── inc.l │ │ │ ├── stdio.h │ │ │ └── test.c │ │ ├── 2-4_sym │ │ │ ├── Makefile │ │ │ ├── poem.txt │ │ │ └── sym.l │ │ └── 2-5_ref │ │ │ ├── Makefile │ │ │ ├── ref.l │ │ │ ├── stdio.h │ │ │ └── test.c │ ├── ch03 │ │ ├── 3-1_calc │ │ │ ├── Makefile │ │ │ ├── calc.c │ │ │ ├── calc.h │ │ │ ├── calc.l │ │ │ └── calc.y │ │ └── 3-5_calc │ │ │ ├── Makefile │ │ │ ├── calc.c │ │ │ ├── calc.h │ │ │ ├── calc.l │ │ │ └── calc.y │ ├── ch09 │ │ ├── 9-1_wc │ │ │ ├── Makefile │ │ │ └── wc.l │ │ └── 9-2_calc │ │ │ ├── Makefile │ │ │ ├── purecalc.h │ │ │ ├── purecalc.l │ │ │ ├── purecalc.y │ │ │ └── purecalcfuncs.c │ └── clean.sh └── ph_riscv │ └── README.md ├── docs ├── arch.md ├── img │ ├── arch_dnn.png │ ├── arch_lanse.jpg │ └── arch_survey.png ├── term.md └── tvm │ ├── autotvm_tune.md │ ├── relay_start.md │ ├── te_auto_scheduling.md │ ├── te_auto_tuning.md │ ├── te_mat_mul.md │ ├── te_vec_add.md │ ├── tir_start.md │ ├── topi_start.md │ ├── tvm_arch.md │ ├── tvm_install.md │ └── tvmc_tune.md └── frameworks └── tvm ├── autotvm_tune └── autotvm_tune.py ├── relay_start └── relay_start.py ├── te_auto_scheduling └── te_auto_scheduling.py ├── te_auto_tuning └── te_auto_tuning.py ├── te_mat_mul └── te_mat_mul.py ├── te_vec_add └── te_vec_add.py ├── tir_start └── tir_start.py ├── topi_start └── topi_start.py └── tvmc_tune ├── postprocess.py └── preprocess.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/README.md -------------------------------------------------------------------------------- /books/eac2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/README.md -------------------------------------------------------------------------------- /books/eac2/ch01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch01.md -------------------------------------------------------------------------------- /books/eac2/ch02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch02.md -------------------------------------------------------------------------------- /books/eac2/ch03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch03.md -------------------------------------------------------------------------------- /books/eac2/ch04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch04.md -------------------------------------------------------------------------------- /books/eac2/ch05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch05.md -------------------------------------------------------------------------------- /books/eac2/ch06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch06.md -------------------------------------------------------------------------------- /books/eac2/ch07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch07.md -------------------------------------------------------------------------------- /books/eac2/ch08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch08.md -------------------------------------------------------------------------------- /books/eac2/ch09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch09.md -------------------------------------------------------------------------------- /books/eac2/ch10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch10.md -------------------------------------------------------------------------------- /books/eac2/ch11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch11.md -------------------------------------------------------------------------------- /books/eac2/ch12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch12.md -------------------------------------------------------------------------------- /books/eac2/ch13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/ch13.md -------------------------------------------------------------------------------- /books/eac2/img/ch01_structure_of_a_typical_compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/eac2/img/ch01_structure_of_a_typical_compiler.png -------------------------------------------------------------------------------- /books/flex_bison/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/.gitignore -------------------------------------------------------------------------------- /books/flex_bison/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/CPPLINT.cfg -------------------------------------------------------------------------------- /books/flex_bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/Makefile -------------------------------------------------------------------------------- /books/flex_bison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/README.md -------------------------------------------------------------------------------- /books/flex_bison/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/build.sh -------------------------------------------------------------------------------- /books/flex_bison/build/base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/build/base.mk -------------------------------------------------------------------------------- /books/flex_bison/build/rule.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/build/rule.mk -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-1_wc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-1_wc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-1_wc/wc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-1_wc/wc.l -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-2_trans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-2_trans/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-2_trans/trans.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-2_trans/trans.l -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-3_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-3_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-3_calc/calc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-3_calc/calc.l -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-4_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-4_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-4_calc/calc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-4_calc/calc.l -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-5_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-5_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-5_calc/calc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-5_calc/calc.l -------------------------------------------------------------------------------- /books/flex_bison/ch01/1-5_calc/calc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch01/1-5_calc/calc.y -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-1_wc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-1_wc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-1_wc/wc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-1_wc/wc.l -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-2_wc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-2_wc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-2_wc/wc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-2_wc/wc.l -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-3_inc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-3_inc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-3_inc/inc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-3_inc/inc.l -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-3_inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-3_inc/stdio.h -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-3_inc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-3_inc/test.c -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-4_sym/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-4_sym/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-4_sym/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-4_sym/poem.txt -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-4_sym/sym.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-4_sym/sym.l -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-5_ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-5_ref/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-5_ref/ref.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-5_ref/ref.l -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-5_ref/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-5_ref/stdio.h -------------------------------------------------------------------------------- /books/flex_bison/ch02/2-5_ref/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch02/2-5_ref/test.c -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-1_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-1_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-1_calc/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-1_calc/calc.c -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-1_calc/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-1_calc/calc.h -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-1_calc/calc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-1_calc/calc.l -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-1_calc/calc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-1_calc/calc.y -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-5_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-5_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-5_calc/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-5_calc/calc.c -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-5_calc/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-5_calc/calc.h -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-5_calc/calc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-5_calc/calc.l -------------------------------------------------------------------------------- /books/flex_bison/ch03/3-5_calc/calc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch03/3-5_calc/calc.y -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-1_wc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-1_wc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-1_wc/wc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-1_wc/wc.l -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-2_calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-2_calc/Makefile -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-2_calc/purecalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-2_calc/purecalc.h -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-2_calc/purecalc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-2_calc/purecalc.l -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-2_calc/purecalc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-2_calc/purecalc.y -------------------------------------------------------------------------------- /books/flex_bison/ch09/9-2_calc/purecalcfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/ch09/9-2_calc/purecalcfuncs.c -------------------------------------------------------------------------------- /books/flex_bison/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/flex_bison/clean.sh -------------------------------------------------------------------------------- /books/ph_riscv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/books/ph_riscv/README.md -------------------------------------------------------------------------------- /docs/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/arch.md -------------------------------------------------------------------------------- /docs/img/arch_dnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/img/arch_dnn.png -------------------------------------------------------------------------------- /docs/img/arch_lanse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/img/arch_lanse.jpg -------------------------------------------------------------------------------- /docs/img/arch_survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/img/arch_survey.png -------------------------------------------------------------------------------- /docs/term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/term.md -------------------------------------------------------------------------------- /docs/tvm/autotvm_tune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/autotvm_tune.md -------------------------------------------------------------------------------- /docs/tvm/relay_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/relay_start.md -------------------------------------------------------------------------------- /docs/tvm/te_auto_scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/te_auto_scheduling.md -------------------------------------------------------------------------------- /docs/tvm/te_auto_tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/te_auto_tuning.md -------------------------------------------------------------------------------- /docs/tvm/te_mat_mul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/te_mat_mul.md -------------------------------------------------------------------------------- /docs/tvm/te_vec_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/te_vec_add.md -------------------------------------------------------------------------------- /docs/tvm/tir_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/tir_start.md -------------------------------------------------------------------------------- /docs/tvm/topi_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/topi_start.md -------------------------------------------------------------------------------- /docs/tvm/tvm_arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/tvm_arch.md -------------------------------------------------------------------------------- /docs/tvm/tvm_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/tvm_install.md -------------------------------------------------------------------------------- /docs/tvm/tvmc_tune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/docs/tvm/tvmc_tune.md -------------------------------------------------------------------------------- /frameworks/tvm/autotvm_tune/autotvm_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/autotvm_tune/autotvm_tune.py -------------------------------------------------------------------------------- /frameworks/tvm/relay_start/relay_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/relay_start/relay_start.py -------------------------------------------------------------------------------- /frameworks/tvm/te_auto_scheduling/te_auto_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/te_auto_scheduling/te_auto_scheduling.py -------------------------------------------------------------------------------- /frameworks/tvm/te_auto_tuning/te_auto_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/te_auto_tuning/te_auto_tuning.py -------------------------------------------------------------------------------- /frameworks/tvm/te_mat_mul/te_mat_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/te_mat_mul/te_mat_mul.py -------------------------------------------------------------------------------- /frameworks/tvm/te_vec_add/te_vec_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/te_vec_add/te_vec_add.py -------------------------------------------------------------------------------- /frameworks/tvm/tir_start/tir_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/tir_start/tir_start.py -------------------------------------------------------------------------------- /frameworks/tvm/topi_start/topi_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/topi_start/topi_start.py -------------------------------------------------------------------------------- /frameworks/tvm/tvmc_tune/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/tvmc_tune/postprocess.py -------------------------------------------------------------------------------- /frameworks/tvm/tvmc_tune/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikuokuo/start-ai-compiler/HEAD/frameworks/tvm/tvmc_tune/preprocess.py --------------------------------------------------------------------------------