Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- BITS="16"
-
- cc -I../src -O3 -Wall -m64 bloom_perf.c -o bloom_perf.none
- for bits in $BITS
- do
- cc -I../src -DHASH_BLOOM=$bits -O3 -Wall -m64 bloom_perf.c -o bloom_perf.$bits
- done
-
- for bits in none $BITS
- do
- echo
- echo "using $bits-bit filter:"
- ./bloom_perf.$bits 10
- done
|