benchmarks
benchmarks copied to clipboard
Matmul with D-style dot_product
A new matmul that uses a dot_product function that's inspired by the D language library function.
For me the best compiler switches for this program are: -C opt-level=3 -C target-cpu=native
this is quite low level, i avoid such implementations, and try to implement all things with stdlibs or standard language constructs.
This is how the D standard library does it: https://github.com/dlang/phobos/blob/master/std/numeric.d#L1715
Do you suggest me to close down this issue?