├── .gitignore ├── benchmark.txt ├── debug.txt ├── eval.py ├── fp8_gemm.py ├── mk_solution.py ├── process_results.py ├── reference.py ├── results.txt ├── solution.hip ├── solution.template.py ├── task.py ├── test.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | solution.py 2 | build 3 | -------------------------------------------------------------------------------- /benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/benchmark.txt -------------------------------------------------------------------------------- /debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/debug.txt -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/eval.py -------------------------------------------------------------------------------- /fp8_gemm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/fp8_gemm.py -------------------------------------------------------------------------------- /mk_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/mk_solution.py -------------------------------------------------------------------------------- /process_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/process_results.py -------------------------------------------------------------------------------- /reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/reference.py -------------------------------------------------------------------------------- /results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/results.txt -------------------------------------------------------------------------------- /solution.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/solution.hip -------------------------------------------------------------------------------- /solution.template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/solution.template.py -------------------------------------------------------------------------------- /task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/task.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/test.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snektron/gpumode-amd-fp8-mm/HEAD/utils.py --------------------------------------------------------------------------------