├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── README.md ├── common ├── cgra_multi_param.py ├── cgra_param.py ├── cgra_param_link.py ├── cgra_param_spm.py ├── cgra_param_tile.py └── constants.py ├── doc ├── debug │ ├── DEBUGGING.md │ ├── debugging.png │ └── docker_extension.png └── theme │ ├── classic_theme.png │ ├── dark_theme.png │ └── light_theme.png ├── docker ├── Dockerfile ├── config.mk └── constraint.sdc ├── fir.cpp ├── launch.py ├── launchUI.bash ├── mode_classic.py ├── mode_dark_light.py ├── mode_dark_light_single_cgra.py ├── run_mac_docker.sh └── run_windows_docker.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | **/__pycache__ 3 | verilog/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/README.md -------------------------------------------------------------------------------- /common/cgra_multi_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/cgra_multi_param.py -------------------------------------------------------------------------------- /common/cgra_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/cgra_param.py -------------------------------------------------------------------------------- /common/cgra_param_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/cgra_param_link.py -------------------------------------------------------------------------------- /common/cgra_param_spm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/cgra_param_spm.py -------------------------------------------------------------------------------- /common/cgra_param_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/cgra_param_tile.py -------------------------------------------------------------------------------- /common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/common/constants.py -------------------------------------------------------------------------------- /doc/debug/DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/debug/DEBUGGING.md -------------------------------------------------------------------------------- /doc/debug/debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/debug/debugging.png -------------------------------------------------------------------------------- /doc/debug/docker_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/debug/docker_extension.png -------------------------------------------------------------------------------- /doc/theme/classic_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/theme/classic_theme.png -------------------------------------------------------------------------------- /doc/theme/dark_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/theme/dark_theme.png -------------------------------------------------------------------------------- /doc/theme/light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/doc/theme/light_theme.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/docker/config.mk -------------------------------------------------------------------------------- /docker/constraint.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/docker/constraint.sdc -------------------------------------------------------------------------------- /fir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/fir.cpp -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/launch.py -------------------------------------------------------------------------------- /launchUI.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/launchUI.bash -------------------------------------------------------------------------------- /mode_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/mode_classic.py -------------------------------------------------------------------------------- /mode_dark_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/mode_dark_light.py -------------------------------------------------------------------------------- /mode_dark_light_single_cgra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/mode_dark_light_single_cgra.py -------------------------------------------------------------------------------- /run_mac_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/run_mac_docker.sh -------------------------------------------------------------------------------- /run_windows_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tancheng/CGRA-Flow/HEAD/run_windows_docker.sh --------------------------------------------------------------------------------