This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "bench.h" | |
using SOURCE = u64; | |
using RESULT = u64; | |
SOURCE src[ 10000 ]; | |
constexpr u32 SIZE = sizeof src / sizeof *src; | |
RESULT dst0[ SIZE ], dst1[ SIZE ], dst2[ SIZE ], dst3[ SIZE ], dst4[ SIZE ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
couple: couple.o | |
gcc couple.o -lm -o couple | |
couple.o: couple.c | |
gcc -c -O2 couple.c | |
clean: | |
rm -f couple couple.o |
NewerOlder