├── .gitignore ├── HASH-refs.txt ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── ackermann ├── Makefile ├── ackermann.c ├── ackermann.hash └── ackermann.out ├── aes ├── Makefile ├── aes.c ├── aes.hash └── aes.out ├── anagram ├── Makefile ├── anagram.c ├── anagram.hash ├── anagram.out ├── input.h ├── input.txt ├── words └── words.h ├── audio-codec ├── Makefile ├── audio-codec.c ├── audio-codec.hash └── audio-codec.out ├── avl-tree ├── Makefile ├── avl-tree.c ├── avl-tree.hash ├── avl-tree.out ├── avlcore.c ├── avlcore.h ├── element.c └── element.h ├── banner ├── Makefile ├── banner.c ├── banner.hash └── banner.out ├── bit-kernels ├── Makefile ├── bit-kernels.c ├── bit-kernels.hash └── bit-kernels.out ├── blake2b ├── Makefile ├── blake2b.c ├── blake2b.hash └── blake2b.out ├── bloom-filter ├── Makefile ├── bloom-filter.c ├── bloom-filter.hash ├── bloom-filter.out ├── tinybloom.c └── tinybloom.h ├── boyer-moore-search ├── Makefile ├── boyer-moore-search.c ├── boyer-moore-search.hash └── boyer-moore-search.out ├── bubble-sort ├── Makefile ├── bubble-sort.c ├── bubble-sort.hash └── bubble-sort.out ├── c-interp ├── Makefile ├── c-interp.c ├── c-interp.hash ├── c-interp.out ├── hello-c.h ├── hello.c └── xc.c ├── ccmac ├── Makefile ├── ccmac.c ├── ccmac.hash └── ccmac.out ├── checkers ├── Makefile ├── checkers.c ├── checkers.hash ├── checkers.out ├── consttypes.c ├── consttypes.h ├── functions.c ├── functions.h ├── test0-txt.h └── test0.txt ├── cipher ├── Makefile ├── cipher.c ├── cipher.hash └── cipher.out ├── common ├── libmin.h ├── libmin_abs.c ├── libmin_acos.c ├── libmin_asin.c ├── libmin_atan.c ├── libmin_atof.c ├── libmin_atoi.c ├── libmin_atol.c ├── libmin_ctype.c ├── libmin_exp.c ├── libmin_fabs.c ├── libmin_fail.c ├── libmin_floor.c ├── libmin_fnv1a.c ├── libmin_getopt.c ├── libmin_malloc.c ├── libmin_mclose.c ├── libmin_memcmp.c ├── libmin_memcpy.c ├── libmin_memmove.c ├── libmin_memset.c ├── libmin_meof.c ├── libmin_mgetc.c ├── libmin_mgets.c ├── libmin_mopen.c ├── libmin_mread.c ├── libmin_msize.c ├── libmin_pow.c ├── libmin_printf.c ├── libmin_putc.c ├── libmin_puts.c ├── libmin_qsort.c ├── libmin_rand.c ├── libmin_rempio2.c ├── libmin_scalbn.c ├── libmin_scanf.c ├── libmin_sincos.c ├── libmin_sqrt.c ├── libmin_strcasestr.c ├── libmin_strcat.c ├── libmin_strchr.c ├── libmin_strcmp.c ├── libmin_strcpy.c ├── libmin_strcspn.c ├── libmin_strdup.c ├── libmin_strlen.c ├── libmin_strncasecmp.c ├── libmin_strncat.c ├── libmin_strncmp.c ├── libmin_strncpy.c ├── libmin_strpbrk.c ├── libmin_strrchr.c ├── libmin_strspn.c ├── libmin_strstr.c ├── libmin_strtok.c ├── libmin_strtol.c └── libmin_success.c ├── congrad ├── Makefile ├── congrad.c ├── congrad.hash └── congrad.out ├── connect4-minimax ├── Makefile ├── connect4-minimax.c ├── connect4-minimax.hash └── connect4-minimax.out ├── convex-hull ├── Makefile ├── convex-hull.c ├── convex-hull.hash └── convex-hull.out ├── dhrystone ├── Makefile ├── dhrystone.c ├── dhrystone.hash └── dhrystone.out ├── distinctness ├── Makefile ├── distinctness.c ├── distinctness.hash └── distinctness.out ├── donut ├── Makefile ├── donut.c ├── donut.hash └── donut.out ├── fft-int ├── Makefile ├── fft-int.c ├── fft-int.hash └── fft-int.out ├── flood-fill ├── Makefile ├── flood-fill.c ├── flood-fill.hash └── flood-fill.out ├── frac-calc ├── Makefile ├── frac-calc.c ├── frac-calc.hash ├── frac-calc.out ├── input-txt.h └── input.txt ├── fuzzy-match ├── Makefile ├── fuzzy-match.c ├── fuzzy-match.hash └── fuzzy-match.out ├── fy-shuffle ├── Makefile ├── fy-shuffle.c ├── fy-shuffle.hash └── fy-shuffle.out ├── gcd-list ├── Makefile ├── gcd-list.c ├── gcd-list.hash └── gcd-list.out ├── grad-descent ├── Makefile ├── grad-descent.c ├── grad-descent.hash └── grad-descent.out ├── graph-tests ├── Makefile ├── graph-tests.c ├── graph-tests.hash └── graph-tests.out ├── hanoi ├── Makefile ├── hanoi.c ├── hanoi.hash └── hanoi.out ├── heapsort ├── Makefile ├── heapsort.c ├── heapsort.hash └── heapsort.out ├── heat-calc ├── Makefile ├── heat-calc.c ├── heat-calc.hash └── heat-calc.out ├── huff-encode ├── Makefile ├── huff-encode.c ├── huff-encode.hash └── huff-encode.out ├── idct-alg ├── Makefile ├── idct-alg.c ├── idct-alg.hash └── idct-alg.out ├── indirect-test ├── Makefile ├── indirect-test.c ├── indirect-test.hash └── indirect-test.out ├── k-means ├── Makefile ├── k-means.c ├── k-means.hash └── k-means.out ├── kadane ├── Makefile ├── kadane.c ├── kadane.hash └── kadane.out ├── kepler ├── Makefile ├── kepler.c ├── kepler.hash └── kepler.out ├── knapsack ├── Makefile ├── knapsack.c ├── knapsack.hash └── knapsack.out ├── knights-tour ├── Makefile ├── knights-tour.c ├── knights-tour.hash └── knights-tour.out ├── life ├── Makefile ├── life.c ├── life.hash └── life.out ├── longdiv ├── Makefile ├── longdiv.c ├── longdiv.hash └── longdiv.out ├── lu-decomp ├── Makefile ├── lu-decomp.c ├── lu-decomp.hash └── lu-decomp.out ├── lz-compress ├── Lamia.txt ├── Makefile ├── lamia-txt.h ├── lz-compress.c ├── lz-compress.hash └── lz-compress.out ├── mandelbrot ├── Makefile ├── mandelbrot.c ├── mandelbrot.hash └── mandelbrot.out ├── matmult ├── Makefile ├── matmult.c ├── matmult.hash └── matmult.out ├── max-subseq ├── Makefile ├── max-subseq.c ├── max-subseq.hash └── max-subseq.out ├── mersenne ├── Makefile ├── mersenne.c ├── mersenne.hash └── mersenne.out ├── minspan ├── Makefile ├── minspan.c ├── minspan.hash └── minspan.out ├── monte-carlo ├── Makefile ├── monte-carlo.c ├── monte-carlo.hash └── monte-carlo.out ├── murmur-hash ├── Makefile ├── murmur-hash.c ├── murmur-hash.hash └── murmur-hash.out ├── n-queens ├── Makefile ├── n-queens.c ├── n-queens.hash └── n-queens.out ├── natlog ├── Makefile ├── natlog.c ├── natlog.hash └── natlog.out ├── nbody-sim ├── Makefile ├── nbody-sim.c ├── nbody-sim.hash └── nbody-sim.out ├── nr-solver ├── Makefile ├── nr-solver.c ├── nr-solver.hash └── nr-solver.out ├── packet-filter ├── Makefile ├── packet-filter.c ├── packet-filter.hash └── packet-filter.out ├── parrondo ├── Makefile ├── parrondo.c ├── parrondo.hash └── parrondo.out ├── pascal ├── Makefile ├── pascal.c ├── pascal.hash └── pascal.out ├── pi-calc ├── Makefile ├── pi-calc.c ├── pi-calc.hash └── pi-calc.out ├── primal-test ├── Makefile ├── primal-test.c ├── primal-test.hash └── primal-test.out ├── priority-queue ├── Makefile ├── priority-queue.c ├── priority-queue.hash └── priority-queue.out ├── qsort-demo ├── Makefile ├── qsort-demo.c ├── qsort-demo.hash └── qsort-demo.out ├── qsort-test ├── Makefile ├── qsort-test.c ├── qsort-test.hash └── qsort-test.out ├── quaternions ├── Makefile ├── quaternions.c ├── quaternions.hash └── quaternions.out ├── quine ├── Makefile ├── quine.c ├── quine.hash └── quine.out ├── rabinkarp-search ├── Makefile ├── rabinkarp-search.c ├── rabinkarp-search.hash └── rabinkarp-search.out ├── rand-test ├── Makefile ├── rand-test.c ├── rand-test.hash └── rand-test.out ├── ransac ├── Makefile ├── ransac.c ├── ransac.hash └── ransac.out ├── regex-parser ├── Makefile ├── regex-parser.c ├── regex-parser.hash └── regex-parser.out ├── rho-factor ├── Makefile ├── rho-factor.c ├── rho-factor.hash └── rho-factor.out ├── rle-compress ├── Makefile ├── rle-compress.c ├── rle-compress.hash └── rle-compress.out ├── rsa-cipher ├── Makefile ├── rsa-cipher.c ├── rsa-cipher.hash └── rsa-cipher.out ├── sat-solver ├── Makefile ├── sat-solver.c ├── sat-solver.hash └── sat-solver.out ├── scripts ├── file2hex.py ├── filter-less.sh └── run-all-tests.sh ├── shortest-path ├── Makefile ├── shortest-path.c ├── shortest-path.hash └── shortest-path.out ├── sieve ├── Makefile ├── sieve.c ├── sieve.hash └── sieve.out ├── simple-grep ├── Makefile ├── simple-grep.c ├── simple-grep.hash ├── simple-grep.out ├── speech.h └── speech.txt ├── skeleton ├── Makefile ├── skeleton.c ├── skeleton.hash └── skeleton.out ├── spelt2num ├── Makefile ├── spelt2num.c ├── spelt2num.hash └── spelt2num.out ├── spirograph ├── Makefile ├── spirograph.c ├── spirograph.hash └── spirograph.out ├── strange ├── Makefile ├── strange.c ├── strange.hash └── strange.out ├── sudoku-solver ├── Makefile ├── sudoku-solver.c ├── sudoku-solver.hash └── sudoku-solver.out ├── target ├── Makefile ├── libtarg.c ├── libtarg.h ├── simple-crt0.S ├── simple-map.ld ├── simple_sim.sh ├── spike-crt0.S ├── spike-map.ld └── spike_mmio_plugin.cpp ├── tetris-sim ├── Makefile ├── tetris-sim.c ├── tetris-sim.hash └── tetris-sim.out ├── tiny-NN ├── Makefile ├── tiny-NN.c ├── tiny-NN.hash └── tiny-NN.out ├── topo-sort ├── Makefile ├── topo-sort.c ├── topo-sort.hash └── topo-sort.out ├── totient ├── Makefile ├── totient.c ├── totient.hash └── totient.out ├── transcend ├── Makefile ├── transcend.c ├── transcend.hash └── transcend.out ├── uniquify ├── Makefile ├── uniquify.c ├── uniquify.hash └── uniquify.out ├── vectors-3d ├── Makefile ├── vectors-3d.c ├── vectors-3d.hash └── vectors-3d.out ├── verlet ├── Makefile ├── verlet.c ├── verlet.hash └── verlet.out └── weekday ├── Makefile ├── weekday.c ├── weekday.hash └── weekday.out /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/.gitignore -------------------------------------------------------------------------------- /HASH-refs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/HASH-refs.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/VERSION -------------------------------------------------------------------------------- /ackermann/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ackermann/Makefile -------------------------------------------------------------------------------- /ackermann/ackermann.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ackermann/ackermann.c -------------------------------------------------------------------------------- /ackermann/ackermann.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xf015ef2d7ff304bd 2 | -------------------------------------------------------------------------------- /ackermann/ackermann.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ackermann/ackermann.out -------------------------------------------------------------------------------- /aes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/aes/Makefile -------------------------------------------------------------------------------- /aes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/aes/aes.c -------------------------------------------------------------------------------- /aes/aes.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xaba657249bbabf16 2 | -------------------------------------------------------------------------------- /aes/aes.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/aes/aes.out -------------------------------------------------------------------------------- /anagram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/Makefile -------------------------------------------------------------------------------- /anagram/anagram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/anagram.c -------------------------------------------------------------------------------- /anagram/anagram.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x152896be5f75f092 2 | -------------------------------------------------------------------------------- /anagram/anagram.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/anagram.out -------------------------------------------------------------------------------- /anagram/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/input.h -------------------------------------------------------------------------------- /anagram/input.txt: -------------------------------------------------------------------------------- 1 | todd austin 2 | scott breach 3 | guri sohi 4 | -------------------------------------------------------------------------------- /anagram/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/words -------------------------------------------------------------------------------- /anagram/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/anagram/words.h -------------------------------------------------------------------------------- /audio-codec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/audio-codec/Makefile -------------------------------------------------------------------------------- /audio-codec/audio-codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/audio-codec/audio-codec.c -------------------------------------------------------------------------------- /audio-codec/audio-codec.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x442baf347d064faf 2 | -------------------------------------------------------------------------------- /audio-codec/audio-codec.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/audio-codec/audio-codec.out -------------------------------------------------------------------------------- /avl-tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/Makefile -------------------------------------------------------------------------------- /avl-tree/avl-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/avl-tree.c -------------------------------------------------------------------------------- /avl-tree/avl-tree.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xaf5967f98cf6ab19 2 | -------------------------------------------------------------------------------- /avl-tree/avl-tree.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/avl-tree.out -------------------------------------------------------------------------------- /avl-tree/avlcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/avlcore.c -------------------------------------------------------------------------------- /avl-tree/avlcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/avlcore.h -------------------------------------------------------------------------------- /avl-tree/element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/element.c -------------------------------------------------------------------------------- /avl-tree/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/avl-tree/element.h -------------------------------------------------------------------------------- /banner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/banner/Makefile -------------------------------------------------------------------------------- /banner/banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/banner/banner.c -------------------------------------------------------------------------------- /banner/banner.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xcf8a36c467edc2a0 2 | -------------------------------------------------------------------------------- /banner/banner.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/banner/banner.out -------------------------------------------------------------------------------- /bit-kernels/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bit-kernels/Makefile -------------------------------------------------------------------------------- /bit-kernels/bit-kernels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bit-kernels/bit-kernels.c -------------------------------------------------------------------------------- /bit-kernels/bit-kernels.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x059c59e2cf675bac 2 | -------------------------------------------------------------------------------- /bit-kernels/bit-kernels.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bit-kernels/bit-kernels.out -------------------------------------------------------------------------------- /blake2b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/blake2b/Makefile -------------------------------------------------------------------------------- /blake2b/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/blake2b/blake2b.c -------------------------------------------------------------------------------- /blake2b/blake2b.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x283708e353f5dc80 2 | -------------------------------------------------------------------------------- /blake2b/blake2b.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/blake2b/blake2b.out -------------------------------------------------------------------------------- /bloom-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bloom-filter/Makefile -------------------------------------------------------------------------------- /bloom-filter/bloom-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bloom-filter/bloom-filter.c -------------------------------------------------------------------------------- /bloom-filter/bloom-filter.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x1e1c9dea9dd62f20 2 | -------------------------------------------------------------------------------- /bloom-filter/bloom-filter.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bloom-filter/bloom-filter.out -------------------------------------------------------------------------------- /bloom-filter/tinybloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bloom-filter/tinybloom.c -------------------------------------------------------------------------------- /bloom-filter/tinybloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bloom-filter/tinybloom.h -------------------------------------------------------------------------------- /boyer-moore-search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/boyer-moore-search/Makefile -------------------------------------------------------------------------------- /boyer-moore-search/boyer-moore-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/boyer-moore-search/boyer-moore-search.c -------------------------------------------------------------------------------- /boyer-moore-search/boyer-moore-search.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xbde864d3801a6b8b 2 | -------------------------------------------------------------------------------- /boyer-moore-search/boyer-moore-search.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/boyer-moore-search/boyer-moore-search.out -------------------------------------------------------------------------------- /bubble-sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bubble-sort/Makefile -------------------------------------------------------------------------------- /bubble-sort/bubble-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bubble-sort/bubble-sort.c -------------------------------------------------------------------------------- /bubble-sort/bubble-sort.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x5ea572f4121bd9cc 2 | -------------------------------------------------------------------------------- /bubble-sort/bubble-sort.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/bubble-sort/bubble-sort.out -------------------------------------------------------------------------------- /c-interp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/Makefile -------------------------------------------------------------------------------- /c-interp/c-interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/c-interp.c -------------------------------------------------------------------------------- /c-interp/c-interp.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xb18cc9c476c706db 2 | -------------------------------------------------------------------------------- /c-interp/c-interp.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/c-interp.out -------------------------------------------------------------------------------- /c-interp/hello-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/hello-c.h -------------------------------------------------------------------------------- /c-interp/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/hello.c -------------------------------------------------------------------------------- /c-interp/xc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/c-interp/xc.c -------------------------------------------------------------------------------- /ccmac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ccmac/Makefile -------------------------------------------------------------------------------- /ccmac/ccmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ccmac/ccmac.c -------------------------------------------------------------------------------- /ccmac/ccmac.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x12c207097ca8d4eb 2 | -------------------------------------------------------------------------------- /ccmac/ccmac.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ccmac/ccmac.out -------------------------------------------------------------------------------- /checkers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/Makefile -------------------------------------------------------------------------------- /checkers/checkers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/checkers.c -------------------------------------------------------------------------------- /checkers/checkers.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x0482bb14a2f2ca7c 2 | -------------------------------------------------------------------------------- /checkers/checkers.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/checkers.out -------------------------------------------------------------------------------- /checkers/consttypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/consttypes.c -------------------------------------------------------------------------------- /checkers/consttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/consttypes.h -------------------------------------------------------------------------------- /checkers/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/functions.c -------------------------------------------------------------------------------- /checkers/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/functions.h -------------------------------------------------------------------------------- /checkers/test0-txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/test0-txt.h -------------------------------------------------------------------------------- /checkers/test0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/checkers/test0.txt -------------------------------------------------------------------------------- /cipher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/cipher/Makefile -------------------------------------------------------------------------------- /cipher/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/cipher/cipher.c -------------------------------------------------------------------------------- /cipher/cipher.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xeabaf874fccdb0fd 2 | -------------------------------------------------------------------------------- /cipher/cipher.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/cipher/cipher.out -------------------------------------------------------------------------------- /common/libmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin.h -------------------------------------------------------------------------------- /common/libmin_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_abs.c -------------------------------------------------------------------------------- /common/libmin_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_acos.c -------------------------------------------------------------------------------- /common/libmin_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_asin.c -------------------------------------------------------------------------------- /common/libmin_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_atan.c -------------------------------------------------------------------------------- /common/libmin_atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_atof.c -------------------------------------------------------------------------------- /common/libmin_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_atoi.c -------------------------------------------------------------------------------- /common/libmin_atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_atol.c -------------------------------------------------------------------------------- /common/libmin_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_ctype.c -------------------------------------------------------------------------------- /common/libmin_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_exp.c -------------------------------------------------------------------------------- /common/libmin_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_fabs.c -------------------------------------------------------------------------------- /common/libmin_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_fail.c -------------------------------------------------------------------------------- /common/libmin_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_floor.c -------------------------------------------------------------------------------- /common/libmin_fnv1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_fnv1a.c -------------------------------------------------------------------------------- /common/libmin_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_getopt.c -------------------------------------------------------------------------------- /common/libmin_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_malloc.c -------------------------------------------------------------------------------- /common/libmin_mclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_mclose.c -------------------------------------------------------------------------------- /common/libmin_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_memcmp.c -------------------------------------------------------------------------------- /common/libmin_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_memcpy.c -------------------------------------------------------------------------------- /common/libmin_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_memmove.c -------------------------------------------------------------------------------- /common/libmin_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_memset.c -------------------------------------------------------------------------------- /common/libmin_meof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_meof.c -------------------------------------------------------------------------------- /common/libmin_mgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_mgetc.c -------------------------------------------------------------------------------- /common/libmin_mgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_mgets.c -------------------------------------------------------------------------------- /common/libmin_mopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_mopen.c -------------------------------------------------------------------------------- /common/libmin_mread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_mread.c -------------------------------------------------------------------------------- /common/libmin_msize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_msize.c -------------------------------------------------------------------------------- /common/libmin_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_pow.c -------------------------------------------------------------------------------- /common/libmin_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_printf.c -------------------------------------------------------------------------------- /common/libmin_putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_putc.c -------------------------------------------------------------------------------- /common/libmin_puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_puts.c -------------------------------------------------------------------------------- /common/libmin_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_qsort.c -------------------------------------------------------------------------------- /common/libmin_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_rand.c -------------------------------------------------------------------------------- /common/libmin_rempio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_rempio2.c -------------------------------------------------------------------------------- /common/libmin_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_scalbn.c -------------------------------------------------------------------------------- /common/libmin_scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_scanf.c -------------------------------------------------------------------------------- /common/libmin_sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_sincos.c -------------------------------------------------------------------------------- /common/libmin_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_sqrt.c -------------------------------------------------------------------------------- /common/libmin_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strcasestr.c -------------------------------------------------------------------------------- /common/libmin_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strcat.c -------------------------------------------------------------------------------- /common/libmin_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strchr.c -------------------------------------------------------------------------------- /common/libmin_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strcmp.c -------------------------------------------------------------------------------- /common/libmin_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strcpy.c -------------------------------------------------------------------------------- /common/libmin_strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strcspn.c -------------------------------------------------------------------------------- /common/libmin_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strdup.c -------------------------------------------------------------------------------- /common/libmin_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strlen.c -------------------------------------------------------------------------------- /common/libmin_strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strncasecmp.c -------------------------------------------------------------------------------- /common/libmin_strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strncat.c -------------------------------------------------------------------------------- /common/libmin_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strncmp.c -------------------------------------------------------------------------------- /common/libmin_strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strncpy.c -------------------------------------------------------------------------------- /common/libmin_strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strpbrk.c -------------------------------------------------------------------------------- /common/libmin_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strrchr.c -------------------------------------------------------------------------------- /common/libmin_strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strspn.c -------------------------------------------------------------------------------- /common/libmin_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strstr.c -------------------------------------------------------------------------------- /common/libmin_strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strtok.c -------------------------------------------------------------------------------- /common/libmin_strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_strtol.c -------------------------------------------------------------------------------- /common/libmin_success.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/common/libmin_success.c -------------------------------------------------------------------------------- /congrad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/congrad/Makefile -------------------------------------------------------------------------------- /congrad/congrad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/congrad/congrad.c -------------------------------------------------------------------------------- /congrad/congrad.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3c3742fce938efa5 2 | -------------------------------------------------------------------------------- /congrad/congrad.out: -------------------------------------------------------------------------------- 1 | cg: N=32 iters=25 checksum=0x022c46265ed9a03a 2 | -------------------------------------------------------------------------------- /connect4-minimax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/connect4-minimax/Makefile -------------------------------------------------------------------------------- /connect4-minimax/connect4-minimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/connect4-minimax/connect4-minimax.c -------------------------------------------------------------------------------- /connect4-minimax/connect4-minimax.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3912c1ca20125e20 2 | -------------------------------------------------------------------------------- /connect4-minimax/connect4-minimax.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/connect4-minimax/connect4-minimax.out -------------------------------------------------------------------------------- /convex-hull/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/convex-hull/Makefile -------------------------------------------------------------------------------- /convex-hull/convex-hull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/convex-hull/convex-hull.c -------------------------------------------------------------------------------- /convex-hull/convex-hull.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xfda8041de6a49567 2 | -------------------------------------------------------------------------------- /convex-hull/convex-hull.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/convex-hull/convex-hull.out -------------------------------------------------------------------------------- /dhrystone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/dhrystone/Makefile -------------------------------------------------------------------------------- /dhrystone/dhrystone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/dhrystone/dhrystone.c -------------------------------------------------------------------------------- /dhrystone/dhrystone.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xeffa437915d11d54 2 | -------------------------------------------------------------------------------- /dhrystone/dhrystone.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/dhrystone/dhrystone.out -------------------------------------------------------------------------------- /distinctness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/distinctness/Makefile -------------------------------------------------------------------------------- /distinctness/distinctness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/distinctness/distinctness.c -------------------------------------------------------------------------------- /distinctness/distinctness.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xd7a89f6fb8a81717 2 | -------------------------------------------------------------------------------- /distinctness/distinctness.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/distinctness/distinctness.out -------------------------------------------------------------------------------- /donut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/donut/Makefile -------------------------------------------------------------------------------- /donut/donut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/donut/donut.c -------------------------------------------------------------------------------- /donut/donut.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x746667c66a9c47ce 2 | -------------------------------------------------------------------------------- /donut/donut.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/donut/donut.out -------------------------------------------------------------------------------- /fft-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fft-int/Makefile -------------------------------------------------------------------------------- /fft-int/fft-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fft-int/fft-int.c -------------------------------------------------------------------------------- /fft-int/fft-int.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xbfd072db711ba297 2 | -------------------------------------------------------------------------------- /fft-int/fft-int.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fft-int/fft-int.out -------------------------------------------------------------------------------- /flood-fill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/flood-fill/Makefile -------------------------------------------------------------------------------- /flood-fill/flood-fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/flood-fill/flood-fill.c -------------------------------------------------------------------------------- /flood-fill/flood-fill.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x014d9cfe1200c0cc 2 | -------------------------------------------------------------------------------- /flood-fill/flood-fill.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/flood-fill/flood-fill.out -------------------------------------------------------------------------------- /frac-calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/frac-calc/Makefile -------------------------------------------------------------------------------- /frac-calc/frac-calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/frac-calc/frac-calc.c -------------------------------------------------------------------------------- /frac-calc/frac-calc.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x7f3b55b2536de4f8 2 | -------------------------------------------------------------------------------- /frac-calc/frac-calc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/frac-calc/frac-calc.out -------------------------------------------------------------------------------- /frac-calc/input-txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/frac-calc/input-txt.h -------------------------------------------------------------------------------- /frac-calc/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/frac-calc/input.txt -------------------------------------------------------------------------------- /fuzzy-match/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fuzzy-match/Makefile -------------------------------------------------------------------------------- /fuzzy-match/fuzzy-match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fuzzy-match/fuzzy-match.c -------------------------------------------------------------------------------- /fuzzy-match/fuzzy-match.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x98d4af85e3358eb0 2 | -------------------------------------------------------------------------------- /fuzzy-match/fuzzy-match.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fuzzy-match/fuzzy-match.out -------------------------------------------------------------------------------- /fy-shuffle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fy-shuffle/Makefile -------------------------------------------------------------------------------- /fy-shuffle/fy-shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fy-shuffle/fy-shuffle.c -------------------------------------------------------------------------------- /fy-shuffle/fy-shuffle.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3b573bcda5cfd3d3 2 | -------------------------------------------------------------------------------- /fy-shuffle/fy-shuffle.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/fy-shuffle/fy-shuffle.out -------------------------------------------------------------------------------- /gcd-list/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/gcd-list/Makefile -------------------------------------------------------------------------------- /gcd-list/gcd-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/gcd-list/gcd-list.c -------------------------------------------------------------------------------- /gcd-list/gcd-list.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x6cb86b1964f47797 2 | -------------------------------------------------------------------------------- /gcd-list/gcd-list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/gcd-list/gcd-list.out -------------------------------------------------------------------------------- /grad-descent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/grad-descent/Makefile -------------------------------------------------------------------------------- /grad-descent/grad-descent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/grad-descent/grad-descent.c -------------------------------------------------------------------------------- /grad-descent/grad-descent.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xa59b8ed1af843869 2 | -------------------------------------------------------------------------------- /grad-descent/grad-descent.out: -------------------------------------------------------------------------------- 1 | The function is: 30.8412x + 335.6575 2 | -------------------------------------------------------------------------------- /graph-tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/graph-tests/Makefile -------------------------------------------------------------------------------- /graph-tests/graph-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/graph-tests/graph-tests.c -------------------------------------------------------------------------------- /graph-tests/graph-tests.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xd2a0f1583e71af83 2 | -------------------------------------------------------------------------------- /graph-tests/graph-tests.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/graph-tests/graph-tests.out -------------------------------------------------------------------------------- /hanoi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/hanoi/Makefile -------------------------------------------------------------------------------- /hanoi/hanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/hanoi/hanoi.c -------------------------------------------------------------------------------- /hanoi/hanoi.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xbf29cd4b21c54d70 2 | -------------------------------------------------------------------------------- /hanoi/hanoi.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/hanoi/hanoi.out -------------------------------------------------------------------------------- /heapsort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heapsort/Makefile -------------------------------------------------------------------------------- /heapsort/heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heapsort/heapsort.c -------------------------------------------------------------------------------- /heapsort/heapsort.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xbb6bae2d27943d47 2 | -------------------------------------------------------------------------------- /heapsort/heapsort.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heapsort/heapsort.out -------------------------------------------------------------------------------- /heat-calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heat-calc/Makefile -------------------------------------------------------------------------------- /heat-calc/heat-calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heat-calc/heat-calc.c -------------------------------------------------------------------------------- /heat-calc/heat-calc.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x57987b65f504136f 2 | -------------------------------------------------------------------------------- /heat-calc/heat-calc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/heat-calc/heat-calc.out -------------------------------------------------------------------------------- /huff-encode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/huff-encode/Makefile -------------------------------------------------------------------------------- /huff-encode/huff-encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/huff-encode/huff-encode.c -------------------------------------------------------------------------------- /huff-encode/huff-encode.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xb5cbc9ac7c4ee9fa 2 | -------------------------------------------------------------------------------- /huff-encode/huff-encode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/huff-encode/huff-encode.out -------------------------------------------------------------------------------- /idct-alg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/idct-alg/Makefile -------------------------------------------------------------------------------- /idct-alg/idct-alg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/idct-alg/idct-alg.c -------------------------------------------------------------------------------- /idct-alg/idct-alg.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x01ee14bd86ce43de 2 | -------------------------------------------------------------------------------- /idct-alg/idct-alg.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/idct-alg/idct-alg.out -------------------------------------------------------------------------------- /indirect-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/indirect-test/Makefile -------------------------------------------------------------------------------- /indirect-test/indirect-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/indirect-test/indirect-test.c -------------------------------------------------------------------------------- /indirect-test/indirect-test.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x22549cf707c98176 2 | -------------------------------------------------------------------------------- /indirect-test/indirect-test.out: -------------------------------------------------------------------------------- 1 | aglobal = 2087206913 2 | -------------------------------------------------------------------------------- /k-means/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/k-means/Makefile -------------------------------------------------------------------------------- /k-means/k-means.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/k-means/k-means.c -------------------------------------------------------------------------------- /k-means/k-means.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xf2696644172b05ec 2 | -------------------------------------------------------------------------------- /k-means/k-means.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/k-means/k-means.out -------------------------------------------------------------------------------- /kadane/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kadane/Makefile -------------------------------------------------------------------------------- /kadane/kadane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kadane/kadane.c -------------------------------------------------------------------------------- /kadane/kadane.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x92056d268178933a 2 | -------------------------------------------------------------------------------- /kadane/kadane.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kadane/kadane.out -------------------------------------------------------------------------------- /kepler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kepler/Makefile -------------------------------------------------------------------------------- /kepler/kepler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kepler/kepler.c -------------------------------------------------------------------------------- /kepler/kepler.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xd43333d58ef3120c 2 | -------------------------------------------------------------------------------- /kepler/kepler.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/kepler/kepler.out -------------------------------------------------------------------------------- /knapsack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knapsack/Makefile -------------------------------------------------------------------------------- /knapsack/knapsack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knapsack/knapsack.c -------------------------------------------------------------------------------- /knapsack/knapsack.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x5dd2a0b27b91d7eb 2 | -------------------------------------------------------------------------------- /knapsack/knapsack.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knapsack/knapsack.out -------------------------------------------------------------------------------- /knights-tour/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knights-tour/Makefile -------------------------------------------------------------------------------- /knights-tour/knights-tour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knights-tour/knights-tour.c -------------------------------------------------------------------------------- /knights-tour/knights-tour.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x61e7406a49b913b1 2 | -------------------------------------------------------------------------------- /knights-tour/knights-tour.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/knights-tour/knights-tour.out -------------------------------------------------------------------------------- /life/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/life/Makefile -------------------------------------------------------------------------------- /life/life.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/life/life.c -------------------------------------------------------------------------------- /life/life.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x5a829809f18e6653 2 | -------------------------------------------------------------------------------- /life/life.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/life/life.out -------------------------------------------------------------------------------- /longdiv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/longdiv/Makefile -------------------------------------------------------------------------------- /longdiv/longdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/longdiv/longdiv.c -------------------------------------------------------------------------------- /longdiv/longdiv.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xc9fd8d9e4e9f2572 2 | -------------------------------------------------------------------------------- /longdiv/longdiv.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/longdiv/longdiv.out -------------------------------------------------------------------------------- /lu-decomp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lu-decomp/Makefile -------------------------------------------------------------------------------- /lu-decomp/lu-decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lu-decomp/lu-decomp.c -------------------------------------------------------------------------------- /lu-decomp/lu-decomp.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xebff5ad9719481f5 2 | -------------------------------------------------------------------------------- /lu-decomp/lu-decomp.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lu-decomp/lu-decomp.out -------------------------------------------------------------------------------- /lz-compress/Lamia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lz-compress/Lamia.txt -------------------------------------------------------------------------------- /lz-compress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lz-compress/Makefile -------------------------------------------------------------------------------- /lz-compress/lamia-txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lz-compress/lamia-txt.h -------------------------------------------------------------------------------- /lz-compress/lz-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lz-compress/lz-compress.c -------------------------------------------------------------------------------- /lz-compress/lz-compress.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x636a69022bebcc33 2 | -------------------------------------------------------------------------------- /lz-compress/lz-compress.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/lz-compress/lz-compress.out -------------------------------------------------------------------------------- /mandelbrot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mandelbrot/Makefile -------------------------------------------------------------------------------- /mandelbrot/mandelbrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mandelbrot/mandelbrot.c -------------------------------------------------------------------------------- /mandelbrot/mandelbrot.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3d6852d727345453 2 | -------------------------------------------------------------------------------- /mandelbrot/mandelbrot.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mandelbrot/mandelbrot.out -------------------------------------------------------------------------------- /matmult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/matmult/Makefile -------------------------------------------------------------------------------- /matmult/matmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/matmult/matmult.c -------------------------------------------------------------------------------- /matmult/matmult.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x8c6c1e52f869e612 2 | -------------------------------------------------------------------------------- /matmult/matmult.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/matmult/matmult.out -------------------------------------------------------------------------------- /max-subseq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/max-subseq/Makefile -------------------------------------------------------------------------------- /max-subseq/max-subseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/max-subseq/max-subseq.c -------------------------------------------------------------------------------- /max-subseq/max-subseq.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xe088b1dd54b7bcc0 2 | -------------------------------------------------------------------------------- /max-subseq/max-subseq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/max-subseq/max-subseq.out -------------------------------------------------------------------------------- /mersenne/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mersenne/Makefile -------------------------------------------------------------------------------- /mersenne/mersenne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mersenne/mersenne.c -------------------------------------------------------------------------------- /mersenne/mersenne.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xc738cfd9354fb437 2 | -------------------------------------------------------------------------------- /mersenne/mersenne.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/mersenne/mersenne.out -------------------------------------------------------------------------------- /minspan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/minspan/Makefile -------------------------------------------------------------------------------- /minspan/minspan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/minspan/minspan.c -------------------------------------------------------------------------------- /minspan/minspan.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x773537af4500f004 2 | -------------------------------------------------------------------------------- /minspan/minspan.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/minspan/minspan.out -------------------------------------------------------------------------------- /monte-carlo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/monte-carlo/Makefile -------------------------------------------------------------------------------- /monte-carlo/monte-carlo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/monte-carlo/monte-carlo.c -------------------------------------------------------------------------------- /monte-carlo/monte-carlo.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x9fcea45ecbceac4d 2 | -------------------------------------------------------------------------------- /monte-carlo/monte-carlo.out: -------------------------------------------------------------------------------- 1 | Estimated Pi = 3.13760000 2 | -------------------------------------------------------------------------------- /murmur-hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/murmur-hash/Makefile -------------------------------------------------------------------------------- /murmur-hash/murmur-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/murmur-hash/murmur-hash.c -------------------------------------------------------------------------------- /murmur-hash/murmur-hash.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xc20a3cd730b0cdc5 2 | -------------------------------------------------------------------------------- /murmur-hash/murmur-hash.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/murmur-hash/murmur-hash.out -------------------------------------------------------------------------------- /n-queens/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/n-queens/Makefile -------------------------------------------------------------------------------- /n-queens/n-queens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/n-queens/n-queens.c -------------------------------------------------------------------------------- /n-queens/n-queens.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xfe07792cdc1c14bc 2 | -------------------------------------------------------------------------------- /n-queens/n-queens.out: -------------------------------------------------------------------------------- 1 | Total solutions for 10-Queens: 724 2 | -------------------------------------------------------------------------------- /natlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/natlog/Makefile -------------------------------------------------------------------------------- /natlog/natlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/natlog/natlog.c -------------------------------------------------------------------------------- /natlog/natlog.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x0ff5d340a0feed68 2 | -------------------------------------------------------------------------------- /natlog/natlog.out: -------------------------------------------------------------------------------- 1 | natlog: e=2.718268 2 | -------------------------------------------------------------------------------- /nbody-sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nbody-sim/Makefile -------------------------------------------------------------------------------- /nbody-sim/nbody-sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nbody-sim/nbody-sim.c -------------------------------------------------------------------------------- /nbody-sim/nbody-sim.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xb4571e0a3947ecbc 2 | -------------------------------------------------------------------------------- /nbody-sim/nbody-sim.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nbody-sim/nbody-sim.out -------------------------------------------------------------------------------- /nr-solver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nr-solver/Makefile -------------------------------------------------------------------------------- /nr-solver/nr-solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nr-solver/nr-solver.c -------------------------------------------------------------------------------- /nr-solver/nr-solver.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x659aa8e986ceb960 2 | -------------------------------------------------------------------------------- /nr-solver/nr-solver.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/nr-solver/nr-solver.out -------------------------------------------------------------------------------- /packet-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/packet-filter/Makefile -------------------------------------------------------------------------------- /packet-filter/packet-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/packet-filter/packet-filter.c -------------------------------------------------------------------------------- /packet-filter/packet-filter.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xc53866438d9f8cda 2 | -------------------------------------------------------------------------------- /packet-filter/packet-filter.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/packet-filter/packet-filter.out -------------------------------------------------------------------------------- /parrondo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/parrondo/Makefile -------------------------------------------------------------------------------- /parrondo/parrondo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/parrondo/parrondo.c -------------------------------------------------------------------------------- /parrondo/parrondo.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x00f8e05d235d0f8b 2 | -------------------------------------------------------------------------------- /parrondo/parrondo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/parrondo/parrondo.out -------------------------------------------------------------------------------- /pascal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pascal/Makefile -------------------------------------------------------------------------------- /pascal/pascal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pascal/pascal.c -------------------------------------------------------------------------------- /pascal/pascal.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3a322b80c789fad5 2 | -------------------------------------------------------------------------------- /pascal/pascal.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pascal/pascal.out -------------------------------------------------------------------------------- /pi-calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pi-calc/Makefile -------------------------------------------------------------------------------- /pi-calc/pi-calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pi-calc/pi-calc.c -------------------------------------------------------------------------------- /pi-calc/pi-calc.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x2720b1be5c736604 2 | -------------------------------------------------------------------------------- /pi-calc/pi-calc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/pi-calc/pi-calc.out -------------------------------------------------------------------------------- /primal-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/primal-test/Makefile -------------------------------------------------------------------------------- /primal-test/primal-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/primal-test/primal-test.c -------------------------------------------------------------------------------- /primal-test/primal-test.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xab072f0dec720a08 2 | -------------------------------------------------------------------------------- /primal-test/primal-test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/primal-test/primal-test.out -------------------------------------------------------------------------------- /priority-queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/priority-queue/Makefile -------------------------------------------------------------------------------- /priority-queue/priority-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/priority-queue/priority-queue.c -------------------------------------------------------------------------------- /priority-queue/priority-queue.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x77fc89804205d47c 2 | -------------------------------------------------------------------------------- /priority-queue/priority-queue.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/priority-queue/priority-queue.out -------------------------------------------------------------------------------- /qsort-demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-demo/Makefile -------------------------------------------------------------------------------- /qsort-demo/qsort-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-demo/qsort-demo.c -------------------------------------------------------------------------------- /qsort-demo/qsort-demo.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x45dc4675845fe469 2 | -------------------------------------------------------------------------------- /qsort-demo/qsort-demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-demo/qsort-demo.out -------------------------------------------------------------------------------- /qsort-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-test/Makefile -------------------------------------------------------------------------------- /qsort-test/qsort-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-test/qsort-test.c -------------------------------------------------------------------------------- /qsort-test/qsort-test.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xe537ae17819c5b4d 2 | -------------------------------------------------------------------------------- /qsort-test/qsort-test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/qsort-test/qsort-test.out -------------------------------------------------------------------------------- /quaternions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quaternions/Makefile -------------------------------------------------------------------------------- /quaternions/quaternions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quaternions/quaternions.c -------------------------------------------------------------------------------- /quaternions/quaternions.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xa17c7ff62ac7915b 2 | -------------------------------------------------------------------------------- /quaternions/quaternions.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quaternions/quaternions.out -------------------------------------------------------------------------------- /quine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quine/Makefile -------------------------------------------------------------------------------- /quine/quine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quine/quine.c -------------------------------------------------------------------------------- /quine/quine.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x699a8e1763bc815e 2 | -------------------------------------------------------------------------------- /quine/quine.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/quine/quine.out -------------------------------------------------------------------------------- /rabinkarp-search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rabinkarp-search/Makefile -------------------------------------------------------------------------------- /rabinkarp-search/rabinkarp-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rabinkarp-search/rabinkarp-search.c -------------------------------------------------------------------------------- /rabinkarp-search/rabinkarp-search.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x3cb8fedc1a370f28 2 | -------------------------------------------------------------------------------- /rabinkarp-search/rabinkarp-search.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rabinkarp-search/rabinkarp-search.out -------------------------------------------------------------------------------- /rand-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rand-test/Makefile -------------------------------------------------------------------------------- /rand-test/rand-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rand-test/rand-test.c -------------------------------------------------------------------------------- /rand-test/rand-test.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x45aaf06ff59af686 2 | -------------------------------------------------------------------------------- /rand-test/rand-test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rand-test/rand-test.out -------------------------------------------------------------------------------- /ransac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ransac/Makefile -------------------------------------------------------------------------------- /ransac/ransac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/ransac/ransac.c -------------------------------------------------------------------------------- /ransac/ransac.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xc335eaf4b0424b88 2 | -------------------------------------------------------------------------------- /ransac/ransac.out: -------------------------------------------------------------------------------- 1 | RANSAC estimated line: y = 2.003764 * x + 0.332170 2 | Number of inliers: 53 / 100 3 | -------------------------------------------------------------------------------- /regex-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/regex-parser/Makefile -------------------------------------------------------------------------------- /regex-parser/regex-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/regex-parser/regex-parser.c -------------------------------------------------------------------------------- /regex-parser/regex-parser.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xbbbe233ad81bbfc2 2 | -------------------------------------------------------------------------------- /regex-parser/regex-parser.out: -------------------------------------------------------------------------------- 1 | 68/68 tests succeeded. 2 | -------------------------------------------------------------------------------- /rho-factor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rho-factor/Makefile -------------------------------------------------------------------------------- /rho-factor/rho-factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rho-factor/rho-factor.c -------------------------------------------------------------------------------- /rho-factor/rho-factor.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xb65de933bebcfbdb 2 | -------------------------------------------------------------------------------- /rho-factor/rho-factor.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rho-factor/rho-factor.out -------------------------------------------------------------------------------- /rle-compress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rle-compress/Makefile -------------------------------------------------------------------------------- /rle-compress/rle-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rle-compress/rle-compress.c -------------------------------------------------------------------------------- /rle-compress/rle-compress.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x9e39d8dff9ec41c5 2 | -------------------------------------------------------------------------------- /rle-compress/rle-compress.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rle-compress/rle-compress.out -------------------------------------------------------------------------------- /rsa-cipher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rsa-cipher/Makefile -------------------------------------------------------------------------------- /rsa-cipher/rsa-cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rsa-cipher/rsa-cipher.c -------------------------------------------------------------------------------- /rsa-cipher/rsa-cipher.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xb729df3f5b2e2cb5 2 | -------------------------------------------------------------------------------- /rsa-cipher/rsa-cipher.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/rsa-cipher/rsa-cipher.out -------------------------------------------------------------------------------- /sat-solver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sat-solver/Makefile -------------------------------------------------------------------------------- /sat-solver/sat-solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sat-solver/sat-solver.c -------------------------------------------------------------------------------- /sat-solver/sat-solver.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x9a6e3f925f5b68b1 2 | -------------------------------------------------------------------------------- /sat-solver/sat-solver.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sat-solver/sat-solver.out -------------------------------------------------------------------------------- /scripts/file2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/scripts/file2hex.py -------------------------------------------------------------------------------- /scripts/filter-less.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/scripts/filter-less.sh -------------------------------------------------------------------------------- /scripts/run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/scripts/run-all-tests.sh -------------------------------------------------------------------------------- /shortest-path/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/shortest-path/Makefile -------------------------------------------------------------------------------- /shortest-path/shortest-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/shortest-path/shortest-path.c -------------------------------------------------------------------------------- /shortest-path/shortest-path.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x504e238f7963f425 2 | -------------------------------------------------------------------------------- /shortest-path/shortest-path.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/shortest-path/shortest-path.out -------------------------------------------------------------------------------- /sieve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sieve/Makefile -------------------------------------------------------------------------------- /sieve/sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sieve/sieve.c -------------------------------------------------------------------------------- /sieve/sieve.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xa169d7b71e1ce513 2 | -------------------------------------------------------------------------------- /sieve/sieve.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sieve/sieve.out -------------------------------------------------------------------------------- /simple-grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/simple-grep/Makefile -------------------------------------------------------------------------------- /simple-grep/simple-grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/simple-grep/simple-grep.c -------------------------------------------------------------------------------- /simple-grep/simple-grep.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x99f3ac55f7a79969 2 | -------------------------------------------------------------------------------- /simple-grep/simple-grep.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/simple-grep/simple-grep.out -------------------------------------------------------------------------------- /simple-grep/speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/simple-grep/speech.h -------------------------------------------------------------------------------- /simple-grep/speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/simple-grep/speech.txt -------------------------------------------------------------------------------- /skeleton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/skeleton/Makefile -------------------------------------------------------------------------------- /skeleton/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/skeleton/skeleton.c -------------------------------------------------------------------------------- /skeleton/skeleton.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xe6192e8293a7ae22 2 | -------------------------------------------------------------------------------- /skeleton/skeleton.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/skeleton/skeleton.out -------------------------------------------------------------------------------- /spelt2num/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/spelt2num/Makefile -------------------------------------------------------------------------------- /spelt2num/spelt2num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/spelt2num/spelt2num.c -------------------------------------------------------------------------------- /spelt2num/spelt2num.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x2f0470f67feebe1e 2 | -------------------------------------------------------------------------------- /spelt2num/spelt2num.out: -------------------------------------------------------------------------------- 1 | 52000675061562 2 | -------------------------------------------------------------------------------- /spirograph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/spirograph/Makefile -------------------------------------------------------------------------------- /spirograph/spirograph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/spirograph/spirograph.c -------------------------------------------------------------------------------- /spirograph/spirograph.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x451890c13f91f345 2 | -------------------------------------------------------------------------------- /spirograph/spirograph.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/spirograph/spirograph.out -------------------------------------------------------------------------------- /strange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/strange/Makefile -------------------------------------------------------------------------------- /strange/strange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/strange/strange.c -------------------------------------------------------------------------------- /strange/strange.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x5be3aba211782484 2 | -------------------------------------------------------------------------------- /strange/strange.out: -------------------------------------------------------------------------------- 1 | 9 8 7 6 5 4 3 2 1 0 2 | | 8 | 3 | 0 -------------------------------------------------------------------------------- /sudoku-solver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sudoku-solver/Makefile -------------------------------------------------------------------------------- /sudoku-solver/sudoku-solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sudoku-solver/sudoku-solver.c -------------------------------------------------------------------------------- /sudoku-solver/sudoku-solver.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x1dbf8e9fae1fe632 2 | -------------------------------------------------------------------------------- /sudoku-solver/sudoku-solver.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/sudoku-solver/sudoku-solver.out -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/libtarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/libtarg.c -------------------------------------------------------------------------------- /target/libtarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/libtarg.h -------------------------------------------------------------------------------- /target/simple-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/simple-crt0.S -------------------------------------------------------------------------------- /target/simple-map.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/simple-map.ld -------------------------------------------------------------------------------- /target/simple_sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/simple_sim.sh -------------------------------------------------------------------------------- /target/spike-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/spike-crt0.S -------------------------------------------------------------------------------- /target/spike-map.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/spike-map.ld -------------------------------------------------------------------------------- /target/spike_mmio_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/target/spike_mmio_plugin.cpp -------------------------------------------------------------------------------- /tetris-sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tetris-sim/Makefile -------------------------------------------------------------------------------- /tetris-sim/tetris-sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tetris-sim/tetris-sim.c -------------------------------------------------------------------------------- /tetris-sim/tetris-sim.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x71a2fd62619b60e2 2 | -------------------------------------------------------------------------------- /tetris-sim/tetris-sim.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tetris-sim/tetris-sim.out -------------------------------------------------------------------------------- /tiny-NN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tiny-NN/Makefile -------------------------------------------------------------------------------- /tiny-NN/tiny-NN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tiny-NN/tiny-NN.c -------------------------------------------------------------------------------- /tiny-NN/tiny-NN.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0xedbc477e670b3b05 2 | -------------------------------------------------------------------------------- /tiny-NN/tiny-NN.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/tiny-NN/tiny-NN.out -------------------------------------------------------------------------------- /topo-sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/topo-sort/Makefile -------------------------------------------------------------------------------- /topo-sort/topo-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/topo-sort/topo-sort.c -------------------------------------------------------------------------------- /topo-sort/topo-sort.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x72fc437169b2381f 2 | -------------------------------------------------------------------------------- /topo-sort/topo-sort.out: -------------------------------------------------------------------------------- 1 | Topological Sorting Order: 5 4 2 3 1 0 2 | -------------------------------------------------------------------------------- /totient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/totient/Makefile -------------------------------------------------------------------------------- /totient/totient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/totient/totient.c -------------------------------------------------------------------------------- /totient/totient.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x08cd05806a11d49a 2 | -------------------------------------------------------------------------------- /totient/totient.out: -------------------------------------------------------------------------------- 1 | phi(45457) = 44980 2 | -------------------------------------------------------------------------------- /transcend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/transcend/Makefile -------------------------------------------------------------------------------- /transcend/transcend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/transcend/transcend.c -------------------------------------------------------------------------------- /transcend/transcend.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x560728e8e8237668 2 | -------------------------------------------------------------------------------- /transcend/transcend.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/transcend/transcend.out -------------------------------------------------------------------------------- /uniquify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/uniquify/Makefile -------------------------------------------------------------------------------- /uniquify/uniquify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/uniquify/uniquify.c -------------------------------------------------------------------------------- /uniquify/uniquify.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x1065e07095c63c56 2 | -------------------------------------------------------------------------------- /uniquify/uniquify.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/uniquify/uniquify.out -------------------------------------------------------------------------------- /vectors-3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/vectors-3d/Makefile -------------------------------------------------------------------------------- /vectors-3d/vectors-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/vectors-3d/vectors-3d.c -------------------------------------------------------------------------------- /vectors-3d/vectors-3d.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x62034ff0a1c0d2b8 2 | -------------------------------------------------------------------------------- /vectors-3d/vectors-3d.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/vectors-3d/vectors-3d.out -------------------------------------------------------------------------------- /verlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/verlet/Makefile -------------------------------------------------------------------------------- /verlet/verlet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/verlet/verlet.c -------------------------------------------------------------------------------- /verlet/verlet.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x8812aee8ca32e0da 2 | -------------------------------------------------------------------------------- /verlet/verlet.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/verlet/verlet.out -------------------------------------------------------------------------------- /weekday/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/weekday/Makefile -------------------------------------------------------------------------------- /weekday/weekday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/weekday/weekday.c -------------------------------------------------------------------------------- /weekday/weekday.hash: -------------------------------------------------------------------------------- 1 | ** hashval = 0x6035958a1aa5b883 2 | -------------------------------------------------------------------------------- /weekday/weekday.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddmaustin/bringup-bench/HEAD/weekday/weekday.out --------------------------------------------------------------------------------