├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── data ├── binary_trees.txt ├── chameneos_redux.txt ├── fannkuch_redux.txt ├── fasta.txt ├── k_nucleotide.txt ├── mandelbrot.txt ├── meteor_contest.txt ├── n_body.txt ├── pidigits.txt ├── regex_redux.txt ├── reverse_complement.txt ├── spectralnorm.txt └── thread_ring.txt ├── ref ├── binary_trees.txt ├── chameneos_redux.txt ├── fannkuch_redux.txt ├── fasta.txt ├── k_nucleotide.txt ├── mandelbrot.txt ├── meteor_contest.txt ├── n_body.txt ├── pidigits.txt ├── regex_redux.txt ├── reverse_complement.txt ├── spectralnorm.txt └── thread_ring.txt └── src ├── binary_trees.rs ├── chameneos_redux.rs ├── fannkuch_redux.rs ├── fasta.rs ├── k_nucleotide.rs ├── mandelbrot.rs ├── meteor_contest.rs ├── n_body.rs ├── pidigits.rs ├── regex_redux.rs ├── reverse_complement.rs ├── spectralnorm.rs └── thread_ring.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/README.md -------------------------------------------------------------------------------- /data/binary_trees.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/chameneos_redux.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/fannkuch_redux.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/fasta.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/k_nucleotide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/data/k_nucleotide.txt -------------------------------------------------------------------------------- /data/mandelbrot.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/meteor_contest.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/n_body.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/pidigits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/regex_redux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/data/regex_redux.txt -------------------------------------------------------------------------------- /data/reverse_complement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/data/reverse_complement.txt -------------------------------------------------------------------------------- /data/spectralnorm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/thread_ring.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ref/binary_trees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/binary_trees.txt -------------------------------------------------------------------------------- /ref/chameneos_redux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/chameneos_redux.txt -------------------------------------------------------------------------------- /ref/fannkuch_redux.txt: -------------------------------------------------------------------------------- 1 | 228 2 | Pfannkuchen(7) = 16 3 | -------------------------------------------------------------------------------- /ref/fasta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/fasta.txt -------------------------------------------------------------------------------- /ref/k_nucleotide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/k_nucleotide.txt -------------------------------------------------------------------------------- /ref/mandelbrot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/mandelbrot.txt -------------------------------------------------------------------------------- /ref/meteor_contest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/meteor_contest.txt -------------------------------------------------------------------------------- /ref/n_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/n_body.txt -------------------------------------------------------------------------------- /ref/pidigits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/pidigits.txt -------------------------------------------------------------------------------- /ref/regex_redux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/regex_redux.txt -------------------------------------------------------------------------------- /ref/reverse_complement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/ref/reverse_complement.txt -------------------------------------------------------------------------------- /ref/spectralnorm.txt: -------------------------------------------------------------------------------- 1 | 1.274219991 2 | -------------------------------------------------------------------------------- /ref/thread_ring.txt: -------------------------------------------------------------------------------- 1 | 498 2 | -------------------------------------------------------------------------------- /src/binary_trees.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/binary_trees.rs -------------------------------------------------------------------------------- /src/chameneos_redux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/chameneos_redux.rs -------------------------------------------------------------------------------- /src/fannkuch_redux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/fannkuch_redux.rs -------------------------------------------------------------------------------- /src/fasta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/fasta.rs -------------------------------------------------------------------------------- /src/k_nucleotide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/k_nucleotide.rs -------------------------------------------------------------------------------- /src/mandelbrot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/mandelbrot.rs -------------------------------------------------------------------------------- /src/meteor_contest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/meteor_contest.rs -------------------------------------------------------------------------------- /src/n_body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/n_body.rs -------------------------------------------------------------------------------- /src/pidigits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/pidigits.rs -------------------------------------------------------------------------------- /src/regex_redux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/regex_redux.rs -------------------------------------------------------------------------------- /src/reverse_complement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/reverse_complement.rs -------------------------------------------------------------------------------- /src/spectralnorm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/spectralnorm.rs -------------------------------------------------------------------------------- /src/thread_ring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXitoi/benchmarksgame-rs/HEAD/src/thread_ring.rs --------------------------------------------------------------------------------