Closed fischeti closed 8 months ago
@viv-eth Can you check if that solves your issue?
I added additional commits on top of this PR, to test multiple GEMM configurations:
gemm.h
file into multiple files (by precision) to make it more manageable.dump_results_to_csv()
when called not on a Numpy array (e.g. a list of FP8 values).run.py
script, so that other testing scripts can be developed deriving from those functionalities.run.py
functionality) to build and test multiple GEMM configurations.
Adresses #105
The GEMM kernel previously checked for unsupported transpositions of matrices and returned a non-zero exitcode. However, the assertions were wrong.
This PR removes the assertions from the GEMM kernel and moves them into the
datagen
script, where they should be easier to detect.