mirror of
https://github.com/tezc/sc.git
synced 2025-01-14 06:43:04 +08:00
22 lines
334 B
C
22 lines
334 B
C
#include "sc_perf.h"
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
size_t total = 0;
|
|
|
|
sc_perf_start();
|
|
for (int i = 0; i < 100000000; i++) {
|
|
total += (rand() % 331) ^ 33;
|
|
}
|
|
sc_perf_pause();
|
|
|
|
for (int i = 0; i < 100000000; i++) {
|
|
total += (rand() % 327) ^ 37;
|
|
}
|
|
|
|
sc_perf_end();
|
|
|
|
return total;
|
|
}
|