├── .gitignore ├── README.md ├── bench.nim ├── binarytrees.c ├── binarytrees.nim ├── binarytrees_2.nim ├── binarytrees_3.nim ├── binarytrees_op.nim ├── compile.sh ├── fannkuch.c ├── fannkuch.nim ├── fannkuch0.nim ├── fannkuch1.nim ├── fannkuch2.nim ├── fannkuch3.nim ├── fannkuch4.nim ├── fannkuch5.nim ├── fannkuchST.nim ├── fastaredux.c ├── fastaredux.nim ├── knucleotide-input0.txt ├── knucleotide.c ├── knucleotide.nim ├── knucleotide2pass.nim ├── knucleotideST.nim ├── mandelbrot.c ├── mandelbrot.nim ├── mandelbrot8.nim ├── nbody.c ├── nbody.nim ├── nbody_2.nim ├── nbody_3.nim ├── perms.nim ├── pidigits.c ├── pidigits_bigints.nim ├── pidigits_gmp.nim ├── regex.c ├── regex.nim ├── regexdna-input0.txt ├── revcomp-input0.txt ├── revcomp.c ├── revcomp.nim ├── run.sh ├── spectralnorm.c └── spectralnorm.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/README.md -------------------------------------------------------------------------------- /bench.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/bench.nim -------------------------------------------------------------------------------- /binarytrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/binarytrees.c -------------------------------------------------------------------------------- /binarytrees.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/binarytrees.nim -------------------------------------------------------------------------------- /binarytrees_2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/binarytrees_2.nim -------------------------------------------------------------------------------- /binarytrees_3.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/binarytrees_3.nim -------------------------------------------------------------------------------- /binarytrees_op.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/binarytrees_op.nim -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/compile.sh -------------------------------------------------------------------------------- /fannkuch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch.c -------------------------------------------------------------------------------- /fannkuch.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch.nim -------------------------------------------------------------------------------- /fannkuch0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch0.nim -------------------------------------------------------------------------------- /fannkuch1.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch1.nim -------------------------------------------------------------------------------- /fannkuch2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch2.nim -------------------------------------------------------------------------------- /fannkuch3.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch3.nim -------------------------------------------------------------------------------- /fannkuch4.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch4.nim -------------------------------------------------------------------------------- /fannkuch5.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuch5.nim -------------------------------------------------------------------------------- /fannkuchST.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fannkuchST.nim -------------------------------------------------------------------------------- /fastaredux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fastaredux.c -------------------------------------------------------------------------------- /fastaredux.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/fastaredux.nim -------------------------------------------------------------------------------- /knucleotide-input0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/knucleotide-input0.txt -------------------------------------------------------------------------------- /knucleotide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/knucleotide.c -------------------------------------------------------------------------------- /knucleotide.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/knucleotide.nim -------------------------------------------------------------------------------- /knucleotide2pass.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/knucleotide2pass.nim -------------------------------------------------------------------------------- /knucleotideST.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/knucleotideST.nim -------------------------------------------------------------------------------- /mandelbrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/mandelbrot.c -------------------------------------------------------------------------------- /mandelbrot.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/mandelbrot.nim -------------------------------------------------------------------------------- /mandelbrot8.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/mandelbrot8.nim -------------------------------------------------------------------------------- /nbody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/nbody.c -------------------------------------------------------------------------------- /nbody.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/nbody.nim -------------------------------------------------------------------------------- /nbody_2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/nbody_2.nim -------------------------------------------------------------------------------- /nbody_3.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/nbody_3.nim -------------------------------------------------------------------------------- /perms.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/perms.nim -------------------------------------------------------------------------------- /pidigits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/pidigits.c -------------------------------------------------------------------------------- /pidigits_bigints.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/pidigits_bigints.nim -------------------------------------------------------------------------------- /pidigits_gmp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/pidigits_gmp.nim -------------------------------------------------------------------------------- /regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/regex.c -------------------------------------------------------------------------------- /regex.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/regex.nim -------------------------------------------------------------------------------- /regexdna-input0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/regexdna-input0.txt -------------------------------------------------------------------------------- /revcomp-input0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/revcomp-input0.txt -------------------------------------------------------------------------------- /revcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/revcomp.c -------------------------------------------------------------------------------- /revcomp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/revcomp.nim -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/run.sh -------------------------------------------------------------------------------- /spectralnorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/spectralnorm.c -------------------------------------------------------------------------------- /spectralnorm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/def-/nim-benchmarksgame/HEAD/spectralnorm.nim --------------------------------------------------------------------------------