├── .cirrus.yml ├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── asan.sh ├── asan1.sh ├── common.mk ├── crc3.h ├── debug.sh ├── fnv16.h ├── fnv3.h ├── graph2.c ├── graph2.h ├── graph3.c ├── makefile ├── mi_vector_hash.c ├── mi_vector_hash.h ├── mi_wyhash.h ├── nbperf-bdz.c ├── nbperf-c-2.log ├── nbperf-chm.c ├── nbperf-chm3.c ├── nbperf.1 ├── nbperf.c ├── nbperf.h ├── nbperf.log ├── nbperf.png ├── nbperf.svg ├── nbtool_config.h ├── perf.cc ├── perf.h ├── perf_img.sh ├── perf_img_c2.sh ├── perf_plot.py ├── perf_test.c ├── run-c-2.log ├── run-c-2.png ├── run-c-2.svg ├── run.log ├── run.png ├── run.svg ├── size-c-2.log ├── size.log ├── size.png ├── size.svg ├── test ├── test1.sh ├── test_main.c └── wyhash.h /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/README.md -------------------------------------------------------------------------------- /asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/asan.sh -------------------------------------------------------------------------------- /asan1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/asan1.sh -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/common.mk -------------------------------------------------------------------------------- /crc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/crc3.h -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/debug.sh -------------------------------------------------------------------------------- /fnv16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/fnv16.h -------------------------------------------------------------------------------- /fnv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/fnv3.h -------------------------------------------------------------------------------- /graph2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/graph2.c -------------------------------------------------------------------------------- /graph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/graph2.h -------------------------------------------------------------------------------- /graph3.c: -------------------------------------------------------------------------------- 1 | /* $NetBSD*/ 2 | 3 | #define GRAPH_SIZE 3 4 | #include "graph2.c" 5 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/makefile -------------------------------------------------------------------------------- /mi_vector_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/mi_vector_hash.c -------------------------------------------------------------------------------- /mi_vector_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/mi_vector_hash.h -------------------------------------------------------------------------------- /mi_wyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/mi_wyhash.h -------------------------------------------------------------------------------- /nbperf-bdz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf-bdz.c -------------------------------------------------------------------------------- /nbperf-c-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf-c-2.log -------------------------------------------------------------------------------- /nbperf-chm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf-chm.c -------------------------------------------------------------------------------- /nbperf-chm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf-chm3.c -------------------------------------------------------------------------------- /nbperf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.1 -------------------------------------------------------------------------------- /nbperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.c -------------------------------------------------------------------------------- /nbperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.h -------------------------------------------------------------------------------- /nbperf.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.log -------------------------------------------------------------------------------- /nbperf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.png -------------------------------------------------------------------------------- /nbperf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbperf.svg -------------------------------------------------------------------------------- /nbtool_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/nbtool_config.h -------------------------------------------------------------------------------- /perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf.cc -------------------------------------------------------------------------------- /perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf.h -------------------------------------------------------------------------------- /perf_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf_img.sh -------------------------------------------------------------------------------- /perf_img_c2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf_img_c2.sh -------------------------------------------------------------------------------- /perf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf_plot.py -------------------------------------------------------------------------------- /perf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/perf_test.c -------------------------------------------------------------------------------- /run-c-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run-c-2.log -------------------------------------------------------------------------------- /run-c-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run-c-2.png -------------------------------------------------------------------------------- /run-c-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run-c-2.svg -------------------------------------------------------------------------------- /run.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run.log -------------------------------------------------------------------------------- /run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run.png -------------------------------------------------------------------------------- /run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/run.svg -------------------------------------------------------------------------------- /size-c-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/size-c-2.log -------------------------------------------------------------------------------- /size.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/size.log -------------------------------------------------------------------------------- /size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/size.png -------------------------------------------------------------------------------- /size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/size.svg -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/test -------------------------------------------------------------------------------- /test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/test1.sh -------------------------------------------------------------------------------- /test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/test_main.c -------------------------------------------------------------------------------- /wyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rurban/nbperf/HEAD/wyhash.h --------------------------------------------------------------------------------