gitextract_xv6br66t/ ├── .conda/ │ └── meta.yaml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── collect_env.py │ ├── dependabot.yml │ ├── labeler.yml │ ├── release.yml │ ├── verify_labels.py │ └── workflows/ │ ├── builds.yml │ ├── doc-status.yml │ ├── docs.yml │ ├── pr-labels.yml │ ├── publish.yml │ ├── pull_requests.yml │ ├── style.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── make.bat │ └── source/ │ ├── _static/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── js/ │ │ └── custom.js │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ ├── installing.rst │ ├── modules.rst │ ├── process.rst │ ├── torchscan.rst │ └── utils.rst ├── pyproject.toml ├── scripts/ │ └── benchmark.py ├── setup.py ├── tests/ │ ├── test_crawler.py │ ├── test_modules.py │ ├── test_process.py │ └── test_utils.py └── torchscan/ ├── __init__.py ├── crawler.py ├── modules/ │ ├── __init__.py │ ├── flops.py │ ├── macs.py │ ├── memory.py │ └── receptive.py ├── process/ │ ├── __init__.py │ └── memory.py └── utils.py