├── .github └── workflows │ ├── bh-update-status-by-label.yml │ ├── build-all.yml │ ├── build-debian.yml │ ├── build-pypi.yml │ ├── community-issue-tagging.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── LICENSE_understanding.txt ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── debhelper-build-stamp ├── files ├── py3dist-overrides └── rules ├── images ├── linear_layout.png ├── linear_layout_2x4.png ├── mesh_layout.png ├── mesh_layout_2x4.png ├── torus_layout.png └── torus_layout_2x4.png ├── pyproject.toml ├── setup.py └── tt_topology ├── __init__.py ├── __main__.py ├── backend.py ├── constants.py ├── data └── wormhole │ └── fw_defines.yaml ├── log.py ├── tests ├── test_detect_current_configs.py ├── test_galaxy.py ├── test_linear.py ├── test_mesh.py ├── test_new_mesh.py └── test_torus.py └── tt_topology.py /.github/workflows/bh-update-status-by-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/bh-update-status-by-label.yml -------------------------------------------------------------------------------- /.github/workflows/build-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/build-all.yml -------------------------------------------------------------------------------- /.github/workflows/build-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/build-debian.yml -------------------------------------------------------------------------------- /.github/workflows/build-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/build-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/community-issue-tagging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/community-issue-tagging.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_understanding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/LICENSE_understanding.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/debhelper-build-stamp: -------------------------------------------------------------------------------- 1 | tt-topology 2 | -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/files -------------------------------------------------------------------------------- /debian/py3dist-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/py3dist-overrides -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/debian/rules -------------------------------------------------------------------------------- /images/linear_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/linear_layout.png -------------------------------------------------------------------------------- /images/linear_layout_2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/linear_layout_2x4.png -------------------------------------------------------------------------------- /images/mesh_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/mesh_layout.png -------------------------------------------------------------------------------- /images/mesh_layout_2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/mesh_layout_2x4.png -------------------------------------------------------------------------------- /images/torus_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/torus_layout.png -------------------------------------------------------------------------------- /images/torus_layout_2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/images/torus_layout_2x4.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/setup.py -------------------------------------------------------------------------------- /tt_topology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/__init__.py -------------------------------------------------------------------------------- /tt_topology/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/__main__.py -------------------------------------------------------------------------------- /tt_topology/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/backend.py -------------------------------------------------------------------------------- /tt_topology/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/constants.py -------------------------------------------------------------------------------- /tt_topology/data/wormhole/fw_defines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/data/wormhole/fw_defines.yaml -------------------------------------------------------------------------------- /tt_topology/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/log.py -------------------------------------------------------------------------------- /tt_topology/tests/test_detect_current_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_detect_current_configs.py -------------------------------------------------------------------------------- /tt_topology/tests/test_galaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_galaxy.py -------------------------------------------------------------------------------- /tt_topology/tests/test_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_linear.py -------------------------------------------------------------------------------- /tt_topology/tests/test_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_mesh.py -------------------------------------------------------------------------------- /tt_topology/tests/test_new_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_new_mesh.py -------------------------------------------------------------------------------- /tt_topology/tests/test_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tests/test_torus.py -------------------------------------------------------------------------------- /tt_topology/tt_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-topology/HEAD/tt_topology/tt_topology.py --------------------------------------------------------------------------------