├── .gitattributes ├── .gitignore ├── README.md ├── coremlprofiler ├── __init__.py ├── cli.py └── prof.py ├── pyproject.toml └── tests └── test_main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/README.md -------------------------------------------------------------------------------- /coremlprofiler/__init__.py: -------------------------------------------------------------------------------- 1 | from .prof import * 2 | -------------------------------------------------------------------------------- /coremlprofiler/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/coremlprofiler/cli.py -------------------------------------------------------------------------------- /coremlprofiler/prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/coremlprofiler/prof.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL33TW00D/coremlprofiler/HEAD/tests/test_main.py --------------------------------------------------------------------------------