Uses a memset operation to invalidate the cache by changing data in the block_A, block_B, Block_C matrices.
I chose memset rather than ping-pong or re-initialization of data because it would otherwise be too slow,
and benchmarks would take a lot of time to run
Uses a
memset
operation to invalidate the cache by changing data in the block_A, block_B,Block_C
matrices. I chosememset
rather than ping-pong or re-initialization of data because it would otherwise be too slow, and benchmarks would take a lot of time to run