├── .gitignore ├── LICENSE ├── README.md ├── assets └── quadmul.jpg ├── benchmarks ├── 4090.md └── a40.md ├── configs.cu ├── extension.cpp ├── helpers.cu ├── kernel.cu ├── run.sh ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | quadmul.egg-info/ 3 | dist/ 4 | tuning/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/README.md -------------------------------------------------------------------------------- /assets/quadmul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/assets/quadmul.jpg -------------------------------------------------------------------------------- /benchmarks/4090.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/benchmarks/4090.md -------------------------------------------------------------------------------- /benchmarks/a40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/benchmarks/a40.md -------------------------------------------------------------------------------- /configs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/configs.cu -------------------------------------------------------------------------------- /extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/extension.cpp -------------------------------------------------------------------------------- /helpers.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/helpers.cu -------------------------------------------------------------------------------- /kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/kernel.cu -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/run.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonpo/quadmul/HEAD/test.py --------------------------------------------------------------------------------