├── LICENSE ├── README.md ├── perftorch ├── activation.py ├── dilatedconv.py └── locoprop.py ├── setup.py └── tests ├── activation.py ├── locoprop.py └── truegrad.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/README.md -------------------------------------------------------------------------------- /perftorch/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/perftorch/activation.py -------------------------------------------------------------------------------- /perftorch/dilatedconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/perftorch/dilatedconv.py -------------------------------------------------------------------------------- /perftorch/locoprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/perftorch/locoprop.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/tests/activation.py -------------------------------------------------------------------------------- /tests/locoprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/tests/locoprop.py -------------------------------------------------------------------------------- /tests/truegrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClashLuke/PerfTorch/HEAD/tests/truegrad.py --------------------------------------------------------------------------------