logoalt Hacker News

ismailmajyesterday at 2:37 PM1 replyview on HN

You drop the memory throughput requirements because of the packed representation of bits so an FMA can become the bottleneck, and you bypass the problem of needing to upscale the bits to whatever FP the FMA instruction needs.

typically for 1-bit matmul, you can get away with xors and pop_counts which should have a better throughput profile than FMA when taking into account the SIMD nature of the inputs/outputs.


Replies

WithinReasonyesterday at 4:35 PM

yes but this is not 1 bit matmul, it's 1.58 bits with expensive unpacking

show 1 reply