├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bencher ├── .gitignore ├── LICENSE ├── README ├── bin │ ├── LICENSE │ ├── bencher.py │ ├── domain.py │ ├── license.txt │ ├── planA.py │ └── uselinux.py ├── data │ ├── knucleotide-input10000.txt │ ├── regexdna-input10000.txt │ └── revcomp-input1000.txt ├── highlight │ ├── LICENSE │ ├── filetypes.conf │ ├── langDefs │ │ ├── erl.lang │ │ ├── go.lang │ │ ├── haskell.lang │ │ ├── lisp.lang │ │ └── oz.lang │ └── license.txt ├── license.txt ├── makefiles │ ├── LICENSE │ ├── license.txt │ ├── my.linux.Makefile │ └── my.linux.ini ├── programs │ ├── binarytrees │ │ ├── binarytrees.cython │ │ ├── binarytrees.numba │ │ ├── binarytrees.python │ │ ├── binarytrees.python3 │ │ ├── binarytrees.python3-6.python3 │ │ └── binarytrees.python3-7.python3 │ ├── chameneosredux │ │ ├── chameneosredux.cython │ │ ├── chameneosredux.python │ │ ├── chameneosredux.python3 │ │ └── chameneosredux.python3-2.python3 │ ├── fannkuchredux │ │ ├── fannkuchredux.cython │ │ ├── fannkuchredux.python │ │ ├── fannkuchredux.python3 │ │ ├── fannkuchredux.python3-2.python3 │ │ ├── fannkuchredux.python3-3.python3 │ │ ├── fannkuchredux.python3-4.python3 │ │ └── fannkuchredux.python3-6.python3 │ ├── fasta │ │ ├── fasta.cython │ │ ├── fasta.python │ │ ├── fasta.python3 │ │ ├── fasta.python3-2.python3 │ │ ├── fasta.python3-3.python3 │ │ ├── fasta.python3-4.python3 │ │ └── fasta.python3-5.python3 │ ├── fastaredux │ │ ├── fastaredux.cython │ │ ├── fastaredux.python │ │ ├── fastaredux.python3 │ │ ├── fastaredux.python3-6.python3 │ │ └── fastaredux.python3-7.python3 │ ├── fib50 │ │ ├── fib50.cython │ │ ├── fib50.grumpy │ │ ├── fib50.numba │ │ ├── fib50.python │ │ └── fib50.python3 │ ├── fibonacci │ │ ├── fibonacci.cython │ │ ├── fibonacci.cython-2.cython │ │ ├── fibonacci.cython-3.cython │ │ ├── fibonacci.numba │ │ ├── fibonacci.numba-3.numba │ │ ├── fibonacci.python │ │ ├── fibonacci.python-2.python │ │ ├── fibonacci.python-3.python │ │ ├── fibonacci.python3 │ │ ├── fibonacci.python3-2.python3 │ │ └── fibonacci.python3-3.python3 │ ├── iobench │ │ ├── iobench.cython │ │ ├── iobench.numba │ │ ├── iobench.python │ │ └── iobench.python3 │ ├── jsonbench │ │ ├── jsonbench.cython │ │ ├── jsonbench.python │ │ └── jsonbench.python3 │ ├── knucleotide │ │ ├── LICENSE │ │ ├── knucleotide.cython │ │ ├── knucleotide.cython-2.cython │ │ ├── knucleotide.cython-8.cython │ │ ├── knucleotide.python │ │ ├── knucleotide.python-2.python │ │ ├── knucleotide.python-8.python │ │ ├── knucleotide.python3 │ │ ├── knucleotide.python3-2.python3 │ │ ├── knucleotide.python3-3.python3 │ │ └── knucleotide.python3-8.python3 │ ├── mandelbrot │ │ ├── LICENSE │ │ ├── mandelbrot.cython-6.cython │ │ ├── mandelbrot.numba-6.numba │ │ ├── mandelbrot.python-6.python │ │ └── mandelbrot.python3-6.python3 │ ├── meteor │ │ ├── LICENSE │ │ ├── meteor.cython │ │ ├── meteor.cython-2.cython │ │ ├── meteor.cython-3.cython │ │ ├── meteor.python │ │ ├── meteor.python-2.python │ │ ├── meteor.python-3.python │ │ ├── meteor.python3 │ │ ├── meteor.python3-2.python3 │ │ └── meteor.python3-3.python3 │ ├── nbody │ │ ├── LICENSE │ │ ├── nbody.cython │ │ ├── nbody.numba │ │ ├── nbody.python │ │ └── nbody.python3 │ ├── pidigits │ │ ├── LICENSE │ │ ├── pidigits.cython │ │ ├── pidigits.cython-2.cython │ │ ├── pidigits.cython-3.cython │ │ ├── pidigits.cython-4.cython │ │ ├── pidigits.python │ │ ├── pidigits.python-2.python │ │ ├── pidigits.python-3.python │ │ ├── pidigits.python-4.python │ │ ├── pidigits.python3 │ │ ├── pidigits.python3-2.python3 │ │ ├── pidigits.python3-3.python3 │ │ ├── pidigits.python3-4.python3 │ │ └── pidigits.python3-5.python3 │ ├── pystone │ │ ├── pystone.cython │ │ ├── pystone.python │ │ └── pystone.python3 │ ├── regexdna │ │ ├── LICENSE │ │ ├── regexdna.cython │ │ ├── regexdna.cython-5.cython │ │ ├── regexdna.python │ │ ├── regexdna.python-5.python │ │ ├── regexdna.python3 │ │ └── regexdna.python3-5.python3 │ ├── revcomp │ │ ├── LICENSE │ │ ├── revcomp.cython-3.cython │ │ ├── revcomp.cython-4.cython │ │ ├── revcomp.cython-5.cython │ │ ├── revcomp.python-3.python │ │ ├── revcomp.python-4.python │ │ ├── revcomp.python-5.python │ │ ├── revcomp.python3-3.python3 │ │ ├── revcomp.python3-4.python3 │ │ ├── revcomp.python3-5.python3 │ │ └── revcomp.python3-6.python3 │ ├── richards │ │ ├── richards.cython │ │ ├── richards.py │ │ ├── richards.python │ │ └── richards.python3 │ ├── spectralnorm │ │ ├── LICENSE │ │ ├── spectralnorm.cython-2.cython │ │ ├── spectralnorm.cython-5.cython │ │ ├── spectralnorm.cython-6.cython │ │ ├── spectralnorm.cython-8.cython │ │ ├── spectralnorm.numba │ │ ├── spectralnorm.numba-2.numba │ │ ├── spectralnorm.python-2.python │ │ ├── spectralnorm.python-5.python │ │ ├── spectralnorm.python-6.python │ │ ├── spectralnorm.python-8.python │ │ ├── spectralnorm.python3-2.python3 │ │ ├── spectralnorm.python3-3.python3 │ │ ├── spectralnorm.python3-5.python3 │ │ ├── spectralnorm.python3-6.python3 │ │ └── spectralnorm.python3-8.python3 │ ├── templates │ │ ├── templates.cython │ │ ├── templates.numba │ │ ├── templates.python │ │ └── templates.python3 │ └── threadring │ │ ├── threadring.cython │ │ ├── threadring.python │ │ ├── threadring.python3 │ │ └── threadring.python3-2.python3 ├── readme.txt ├── run_markup │ ├── .1.pystone.code │ ├── .1.regexdna.code │ ├── LICENSE │ ├── binarytrees.1.cython.code │ ├── binarytrees.1.graal.code │ ├── binarytrees.1.grumpy.code │ ├── binarytrees.1.ipy.code │ ├── binarytrees.1.jython.code │ ├── binarytrees.1.micropython.code │ ├── binarytrees.1.nuitka.code │ ├── binarytrees.1.numba.code │ ├── binarytrees.1.pypy.code │ ├── binarytrees.1.pypy3.code │ ├── binarytrees.1.pyston.code │ ├── binarytrees.1.python-dev.code │ ├── binarytrees.1.python.code │ ├── binarytrees.1.python3.5.code │ ├── binarytrees.1.python3.6.code │ ├── binarytrees.1.python3.code │ ├── binarytrees.1.python35.code │ ├── binarytrees.1.rustpython.code │ ├── binarytrees.1.shedskin.code │ ├── binarytrees.6.graal.code │ ├── binarytrees.6.micropython.code │ ├── binarytrees.6.nuitka.code │ ├── binarytrees.6.pypy3.code │ ├── binarytrees.6.pyston.code │ ├── binarytrees.6.python-dev.code │ ├── binarytrees.6.python3.5.code │ ├── binarytrees.6.python3.6.code │ ├── binarytrees.6.python3.code │ ├── binarytrees.6.python35.code │ ├── binarytrees.6.rustpython.code │ ├── binarytrees.7.graal.code │ ├── binarytrees.7.micropython.code │ ├── binarytrees.7.nuitka.code │ ├── binarytrees.7.pypy3.code │ ├── binarytrees.7.pyston.code │ ├── binarytrees.7.python-dev.code │ ├── binarytrees.7.python3.5.code │ ├── binarytrees.7.python3.6.code │ ├── binarytrees.7.python3.code │ ├── binarytrees.7.python35.code │ ├── binarytrees.7.rustpython.code │ ├── chameneosredux.1.cython.code │ ├── chameneosredux.1.graal.code │ ├── chameneosredux.1.grumpy.code │ ├── chameneosredux.1.ipy.code │ ├── chameneosredux.1.jython.code │ ├── chameneosredux.1.micropython.code │ ├── chameneosredux.1.nuitka.code │ ├── chameneosredux.1.numba.code │ ├── chameneosredux.1.pypy.code │ ├── chameneosredux.1.pypy3.code │ ├── chameneosredux.1.pyston.code │ ├── chameneosredux.1.python-dev.code │ ├── chameneosredux.1.python.code │ ├── chameneosredux.1.python3.5.code │ ├── chameneosredux.1.python3.6.code │ ├── chameneosredux.1.python3.code │ ├── chameneosredux.1.python35.code │ ├── chameneosredux.1.rustpython.code │ ├── chameneosredux.1.shedskin.code │ ├── chameneosredux.2.graal.code │ ├── chameneosredux.2.micropython.code │ ├── chameneosredux.2.nuitka.code │ ├── chameneosredux.2.pypy3.code │ ├── chameneosredux.2.pyston.code │ ├── chameneosredux.2.python-dev.code │ ├── chameneosredux.2.python3.5.code │ ├── chameneosredux.2.python3.6.code │ ├── chameneosredux.2.python3.code │ ├── chameneosredux.2.python35.code │ ├── chameneosredux.2.rustpython.code │ ├── fannkuchredux.1.c.code │ ├── fannkuchredux.1.cython.code │ ├── fannkuchredux.1.graal.code │ ├── fannkuchredux.1.grumpy.code │ ├── fannkuchredux.1.html.code │ ├── fannkuchredux.1.ipy.code │ ├── fannkuchredux.1.jython.code │ ├── fannkuchredux.1.micropython.code │ ├── fannkuchredux.1.nuitka.code │ ├── fannkuchredux.1.numba.code │ ├── fannkuchredux.1.pypy.code │ ├── fannkuchredux.1.pypy3.code │ ├── fannkuchredux.1.pyston.code │ ├── fannkuchredux.1.python-dev.code │ ├── fannkuchredux.1.python.code │ ├── fannkuchredux.1.python3.5.code │ ├── fannkuchredux.1.python3.6.code │ ├── fannkuchredux.1.python3.code │ ├── fannkuchredux.1.python35.code │ ├── fannkuchredux.1.pyx.code │ ├── fannkuchredux.1.rustpython.code │ ├── fannkuchredux.1.shedskin.code │ ├── fannkuchredux.2.graal.code │ ├── fannkuchredux.2.micropython.code │ ├── fannkuchredux.2.nuitka.code │ ├── fannkuchredux.2.pypy3.code │ ├── fannkuchredux.2.pyston.code │ ├── fannkuchredux.2.python-dev.code │ ├── fannkuchredux.2.python3.5.code │ ├── fannkuchredux.2.python3.6.code │ ├── fannkuchredux.2.python3.code │ ├── fannkuchredux.2.python35.code │ ├── fannkuchredux.2.rustpython.code │ ├── fannkuchredux.3.graal.code │ ├── fannkuchredux.3.micropython.code │ ├── fannkuchredux.3.nuitka.code │ ├── fannkuchredux.3.pypy3.code │ ├── fannkuchredux.3.pyston.code │ ├── fannkuchredux.3.python-dev.code │ ├── fannkuchredux.3.python3.5.code │ ├── fannkuchredux.3.python3.6.code │ ├── fannkuchredux.3.python3.code │ ├── fannkuchredux.3.python35.code │ ├── fannkuchredux.3.rustpython.code │ ├── fannkuchredux.34m.so.code │ ├── fannkuchredux.4.graal.code │ ├── fannkuchredux.4.micropython.code │ ├── fannkuchredux.4.nuitka.code │ ├── fannkuchredux.4.pypy3.code │ ├── fannkuchredux.4.pyston.code │ ├── fannkuchredux.4.python-dev.code │ ├── fannkuchredux.4.python3.5.code │ ├── fannkuchredux.4.python3.6.code │ ├── fannkuchredux.4.python3.code │ ├── fannkuchredux.4.python35.code │ ├── fannkuchredux.4.rustpython.code │ ├── fannkuchredux.6.graal.code │ ├── fannkuchredux.6.micropython.code │ ├── fannkuchredux.6.nuitka.code │ ├── fannkuchredux.6.pypy3.code │ ├── fannkuchredux.6.pyston.code │ ├── fannkuchredux.6.python-dev.code │ ├── fannkuchredux.6.python3.5.code │ ├── fannkuchredux.6.python3.6.code │ ├── fannkuchredux.6.python3.code │ ├── fannkuchredux.6.python35.code │ ├── fannkuchredux.6.rustpython.code │ ├── fast.5.numba.code │ ├── fasta.1.c.code │ ├── fasta.1.cython.code │ ├── fasta.1.graal.code │ ├── fasta.1.grumpy.code │ ├── fasta.1.html.code │ ├── fasta.1.ipy.code │ ├── fasta.1.jython.code │ ├── fasta.1.micropython.code │ ├── fasta.1.nuitka.code │ ├── fasta.1.numba.code │ ├── fasta.1.pypy.code │ ├── fasta.1.pypy3.code │ ├── fasta.1.pyston.code │ ├── fasta.1.python-dev.code │ ├── fasta.1.python.code │ ├── fasta.1.python3.5.code │ ├── fasta.1.python3.6.code │ ├── fasta.1.python3.code │ ├── fasta.1.python35.code │ ├── fasta.1.pyx.code │ ├── fasta.1.rustpython.code │ ├── fasta.1.shedskin.code │ ├── fasta.2.graal.code │ ├── fasta.2.micropython.code │ ├── fasta.2.nuitka.code │ ├── fasta.2.pypy3.code │ ├── fasta.2.pyston.code │ ├── fasta.2.python-dev.code │ ├── fasta.2.python3.5.code │ ├── fasta.2.python3.6.code │ ├── fasta.2.python3.code │ ├── fasta.2.python35.code │ ├── fasta.2.rustpython.code │ ├── fasta.3.graal.code │ ├── fasta.3.micropython.code │ ├── fasta.3.nuitka.code │ ├── fasta.3.pypy3.code │ ├── fasta.3.pyston.code │ ├── fasta.3.python-dev.code │ ├── fasta.3.python3.5.code │ ├── fasta.3.python3.6.code │ ├── fasta.3.python3.code │ ├── fasta.3.python35.code │ ├── fasta.3.rustpython.code │ ├── fasta.34m.so.code │ ├── fasta.4.graal.code │ ├── fasta.4.micropython.code │ ├── fasta.4.nuitka.code │ ├── fasta.4.numba.code │ ├── fasta.4.pypy3.code │ ├── fasta.4.pyston.code │ ├── fasta.4.python-dev.code │ ├── fasta.4.python3.5.code │ ├── fasta.4.python3.6.code │ ├── fasta.4.python3.code │ ├── fasta.4.python35.code │ ├── fasta.4.rustpython.code │ ├── fasta.5.graal.code │ ├── fasta.5.micropython.code │ ├── fasta.5.nuitka.code │ ├── fasta.5.numba.code │ ├── fasta.5.pypy3.code │ ├── fasta.5.pyston.code │ ├── fasta.5.python-dev.code │ ├── fasta.5.python3.5.code │ ├── fasta.5.python3.6.code │ ├── fasta.5.python3.code │ ├── fasta.5.python35.code │ ├── fasta.5.rustpython.code │ ├── fastaredux.1.cython.code │ ├── fastaredux.1.graal.code │ ├── fastaredux.1.grumpy.code │ ├── fastaredux.1.ipy.code │ ├── fastaredux.1.jython.code │ ├── fastaredux.1.micropython.code │ ├── fastaredux.1.nuitka.code │ ├── fastaredux.1.numba.code │ ├── fastaredux.1.pypy.code │ ├── fastaredux.1.pypy3.code │ ├── fastaredux.1.pyston.code │ ├── fastaredux.1.python-dev.code │ ├── fastaredux.1.python.code │ ├── fastaredux.1.python3.5.code │ ├── fastaredux.1.python3.6.code │ ├── fastaredux.1.python3.code │ ├── fastaredux.1.python35.code │ ├── fastaredux.1.rustpython.code │ ├── fastaredux.1.shedskin.code │ ├── fastaredux.6.graal.code │ ├── fastaredux.6.micropython.code │ ├── fastaredux.6.nuitka.code │ ├── fastaredux.6.pypy3.code │ ├── fastaredux.6.pyston.code │ ├── fastaredux.6.python-dev.code │ ├── fastaredux.6.python3.5.code │ ├── fastaredux.6.python3.6.code │ ├── fastaredux.6.python3.code │ ├── fastaredux.6.python35.code │ ├── fastaredux.6.rustpython.code │ ├── fastaredux.7.graal.code │ ├── fastaredux.7.micropython.code │ ├── fastaredux.7.nuitka.code │ ├── fastaredux.7.pypy3.code │ ├── fastaredux.7.pyston.code │ ├── fastaredux.7.python-dev.code │ ├── fastaredux.7.python3.5.code │ ├── fastaredux.7.python3.6.code │ ├── fastaredux.7.python3.code │ ├── fastaredux.7.python35.code │ ├── fastaredux.7.rustpython.code │ ├── fib50.1.cython.code │ ├── fib50.1.graal.code │ ├── fib50.1.grumpy.code │ ├── fib50.1.ipy.code │ ├── fib50.1.jython.code │ ├── fib50.1.micropython.code │ ├── fib50.1.nuitka.code │ ├── fib50.1.numba.code │ ├── fib50.1.pypy.code │ ├── fib50.1.pypy3.code │ ├── fib50.1.pyston.code │ ├── fib50.1.python-dev.code │ ├── fib50.1.python.code │ ├── fib50.1.python3.code │ ├── fib50.1.rustpython.code │ ├── fib50.1.shedskin.code │ ├── fibonacci.1.cython.code │ ├── fibonacci.1.graal.code │ ├── fibonacci.1.grumpy.code │ ├── fibonacci.1.ipy.code │ ├── fibonacci.1.jython.code │ ├── fibonacci.1.micropython.code │ ├── fibonacci.1.nuitka.code │ ├── fibonacci.1.numba.code │ ├── fibonacci.1.pypy.code │ ├── fibonacci.1.pypy3.code │ ├── fibonacci.1.pyston.code │ ├── fibonacci.1.python-dev.code │ ├── fibonacci.1.python.code │ ├── fibonacci.1.python3.5.code │ ├── fibonacci.1.python3.6.code │ ├── fibonacci.1.python3.code │ ├── fibonacci.1.python35.code │ ├── fibonacci.1.rustpython.code │ ├── fibonacci.1.shedskin.code │ ├── fibonacci.2.cython.code │ ├── fibonacci.2.graal.code │ ├── fibonacci.2.grumpy.code │ ├── fibonacci.2.ipy.code │ ├── fibonacci.2.jython.code │ ├── fibonacci.2.micropython.code │ ├── fibonacci.2.nuitka.code │ ├── fibonacci.2.numba.code │ ├── fibonacci.2.pypy.code │ ├── fibonacci.2.pypy3.code │ ├── fibonacci.2.pyston.code │ ├── fibonacci.2.python-dev.code │ ├── fibonacci.2.python.code │ ├── fibonacci.2.python3.5.code │ ├── fibonacci.2.python3.6.code │ ├── fibonacci.2.python3.code │ ├── fibonacci.2.python35.code │ ├── fibonacci.2.rustpython.code │ ├── fibonacci.2.shedskin.code │ ├── fibonacci.3.cython.code │ ├── fibonacci.3.graal.code │ ├── fibonacci.3.grumpy.code │ ├── fibonacci.3.ipy.code │ ├── fibonacci.3.jython.code │ ├── fibonacci.3.micropython.code │ ├── fibonacci.3.nuitka.code │ ├── fibonacci.3.numba.code │ ├── fibonacci.3.pypy.code │ ├── fibonacci.3.pypy3.code │ ├── fibonacci.3.pyston.code │ ├── fibonacci.3.python-dev.code │ ├── fibonacci.3.python.code │ ├── fibonacci.3.python3.5.code │ ├── fibonacci.3.python3.6.code │ ├── fibonacci.3.python3.code │ ├── fibonacci.3.python35.code │ ├── fibonacci.3.rustpython.code │ ├── fibonacci.3.shedskin.code │ ├── iobench.1.cython.code │ ├── iobench.1.graal.code │ ├── iobench.1.grumpy.code │ ├── iobench.1.ipy.code │ ├── iobench.1.jython.code │ ├── iobench.1.micropython.code │ ├── iobench.1.nuitka.code │ ├── iobench.1.numba.code │ ├── iobench.1.pypy.code │ ├── iobench.1.pypy3.code │ ├── iobench.1.pyston.code │ ├── iobench.1.python-dev.code │ ├── iobench.1.python.code │ ├── iobench.1.python3.code │ ├── iobench.1.rustpython.code │ ├── iobench.1.shedskin.code │ ├── jsonbench.1.cython.code │ ├── jsonbench.1.graal.code │ ├── jsonbench.1.grumpy.code │ ├── jsonbench.1.ipy.code │ ├── jsonbench.1.jython.code │ ├── jsonbench.1.micropython.code │ ├── jsonbench.1.nuitka.code │ ├── jsonbench.1.pypy.code │ ├── jsonbench.1.pypy3.code │ ├── jsonbench.1.pyston.code │ ├── jsonbench.1.python-dev.code │ ├── jsonbench.1.python.code │ ├── jsonbench.1.python3.code │ ├── jsonbench.1.rustpython.code │ ├── jsonbench.1.shedskin.code │ ├── knucleotide.1.cython.code │ ├── knucleotide.1.graal.code │ ├── knucleotide.1.grumpy.code │ ├── knucleotide.1.ipy.code │ ├── knucleotide.1.jython.code │ ├── knucleotide.1.micropython.code │ ├── knucleotide.1.nuitka.code │ ├── knucleotide.1.numba.code │ ├── knucleotide.1.pypy.code │ ├── knucleotide.1.pypy3.code │ ├── knucleotide.1.pyston.code │ ├── knucleotide.1.python-dev.code │ ├── knucleotide.1.python.code │ ├── knucleotide.1.python3.5.code │ ├── knucleotide.1.python3.6.code │ ├── knucleotide.1.python3.code │ ├── knucleotide.1.python35.code │ ├── knucleotide.1.rustpython.code │ ├── knucleotide.1.shedskin.code │ ├── knucleotide.2.cython.code │ ├── knucleotide.2.graal.code │ ├── knucleotide.2.grumpy.code │ ├── knucleotide.2.ipy.code │ ├── knucleotide.2.jython.code │ ├── knucleotide.2.micropython.code │ ├── knucleotide.2.nuitka.code │ ├── knucleotide.2.numba.code │ ├── knucleotide.2.pypy.code │ ├── knucleotide.2.pypy3.code │ ├── knucleotide.2.pyston.code │ ├── knucleotide.2.python-dev.code │ ├── knucleotide.2.python.code │ ├── knucleotide.2.python3.5.code │ ├── knucleotide.2.python3.6.code │ ├── knucleotide.2.python3.code │ ├── knucleotide.2.python35.code │ ├── knucleotide.2.rustpython.code │ ├── knucleotide.2.shedskin.code │ ├── knucleotide.3.graal.code │ ├── knucleotide.3.micropython.code │ ├── knucleotide.3.nuitka.code │ ├── knucleotide.3.pypy3.code │ ├── knucleotide.3.pyston.code │ ├── knucleotide.3.python-dev.code │ ├── knucleotide.3.python3.5.code │ ├── knucleotide.3.python3.6.code │ ├── knucleotide.3.python3.code │ ├── knucleotide.3.python35.code │ ├── knucleotide.3.rustpython.code │ ├── knucleotide.8.cython.code │ ├── knucleotide.8.graal.code │ ├── knucleotide.8.grumpy.code │ ├── knucleotide.8.ipy.code │ ├── knucleotide.8.jython.code │ ├── knucleotide.8.micropython.code │ ├── knucleotide.8.nuitka.code │ ├── knucleotide.8.numba.code │ ├── knucleotide.8.pypy.code │ ├── knucleotide.8.pypy3.code │ ├── knucleotide.8.pyston.code │ ├── knucleotide.8.python-dev.code │ ├── knucleotide.8.python.code │ ├── knucleotide.8.python3.5.code │ ├── knucleotide.8.python3.6.code │ ├── knucleotide.8.python3.code │ ├── knucleotide.8.python35.code │ ├── knucleotide.8.rustpython.code │ ├── knucleotide.8.shedskin.code │ ├── mandelbrot.2.cython.code │ ├── mandelbrot.2.micropython.code │ ├── mandelbrot.2.nuitka.code │ ├── mandelbrot.2.numba.code │ ├── mandelbrot.2.pypy3.code │ ├── mandelbrot.2.python-dev.code │ ├── mandelbrot.2.python.code │ ├── mandelbrot.2.python3.5.code │ ├── mandelbrot.2.python3.6.code │ ├── mandelbrot.2.python3.code │ ├── mandelbrot.2.python35.code │ ├── mandelbrot.3.nuitka.code │ ├── mandelbrot.3.pypy3.code │ ├── mandelbrot.3.python3.code │ ├── mandelbrot.5.nuitka.code │ ├── mandelbrot.5.pypy3.code │ ├── mandelbrot.5.python3.code │ ├── mandelbrot.6.cython.code │ ├── mandelbrot.6.graal.code │ ├── mandelbrot.6.grumpy.code │ ├── mandelbrot.6.ipy.code │ ├── mandelbrot.6.jython.code │ ├── mandelbrot.6.micropython.code │ ├── mandelbrot.6.nuitka.code │ ├── mandelbrot.6.numba.code │ ├── mandelbrot.6.pypy.code │ ├── mandelbrot.6.pypy3.code │ ├── mandelbrot.6.pyston.code │ ├── mandelbrot.6.python-dev.code │ ├── mandelbrot.6.python.code │ ├── mandelbrot.6.python3.5.code │ ├── mandelbrot.6.python3.6.code │ ├── mandelbrot.6.python3.code │ ├── mandelbrot.6.python35.code │ ├── mandelbrot.6.rustpython.code │ ├── mandelbrot.6.shedskin.code │ ├── mandelbrot.7.cython.code │ ├── mandelbrot.7.nuitka.code │ ├── mandelbrot.7.pypy3.code │ ├── mandelbrot.7.python3.code │ ├── meteor.1.cython.code │ ├── meteor.1.graal.code │ ├── meteor.1.grumpy.code │ ├── meteor.1.ipy.code │ ├── meteor.1.jython.code │ ├── meteor.1.micropython.code │ ├── meteor.1.nuitka.code │ ├── meteor.1.numba.code │ ├── meteor.1.pypy.code │ ├── meteor.1.pypy3.code │ ├── meteor.1.pyston.code │ ├── meteor.1.python-dev.code │ ├── meteor.1.python.code │ ├── meteor.1.python3.5.code │ ├── meteor.1.python3.6.code │ ├── meteor.1.python3.code │ ├── meteor.1.python35.code │ ├── meteor.1.rustpython.code │ ├── meteor.1.shedskin.code │ ├── meteor.2.cython.code │ ├── meteor.2.graal.code │ ├── meteor.2.grumpy.code │ ├── meteor.2.ipy.code │ ├── meteor.2.jython.code │ ├── meteor.2.micropython.code │ ├── meteor.2.nuitka.code │ ├── meteor.2.numba.code │ ├── meteor.2.pypy.code │ ├── meteor.2.pypy3.code │ ├── meteor.2.pyston.code │ ├── meteor.2.python-dev.code │ ├── meteor.2.python.code │ ├── meteor.2.python3.5.code │ ├── meteor.2.python3.6.code │ ├── meteor.2.python3.code │ ├── meteor.2.python35.code │ ├── meteor.2.rustpython.code │ ├── meteor.2.shedskin.code │ ├── meteor.3.cython.code │ ├── meteor.3.graal.code │ ├── meteor.3.grumpy.code │ ├── meteor.3.ipy.code │ ├── meteor.3.jython.code │ ├── meteor.3.micropython.code │ ├── meteor.3.nuitka.code │ ├── meteor.3.numba.code │ ├── meteor.3.pypy.code │ ├── meteor.3.pypy3.code │ ├── meteor.3.pyston.code │ ├── meteor.3.python-dev.code │ ├── meteor.3.python.code │ ├── meteor.3.python3.5.code │ ├── meteor.3.python3.6.code │ ├── meteor.3.python3.code │ ├── meteor.3.python35.code │ ├── meteor.3.rustpython.code │ ├── meteor.3.shedskin.code │ ├── nbody.1.cython.code │ ├── nbody.1.graal.code │ ├── nbody.1.grumpy.code │ ├── nbody.1.ipy.code │ ├── nbody.1.jython.code │ ├── nbody.1.micropython.code │ ├── nbody.1.nuitka.code │ ├── nbody.1.numba.code │ ├── nbody.1.pypy.code │ ├── nbody.1.pypy3.code │ ├── nbody.1.pyston.code │ ├── nbody.1.python-dev.code │ ├── nbody.1.python.code │ ├── nbody.1.python3.5.code │ ├── nbody.1.python3.6.code │ ├── nbody.1.python3.code │ ├── nbody.1.python35.code │ ├── nbody.1.rustpython.code │ ├── nbody.1.shedskin.code │ ├── pidigits.1.cython.code │ ├── pidigits.1.graal.code │ ├── pidigits.1.grumpy.code │ ├── pidigits.1.ipy.code │ ├── pidigits.1.jython.code │ ├── pidigits.1.micropython.code │ ├── pidigits.1.nuitka.code │ ├── pidigits.1.numba.code │ ├── pidigits.1.pypy.code │ ├── pidigits.1.pypy3.code │ ├── pidigits.1.pyston.code │ ├── pidigits.1.python-dev.code │ ├── pidigits.1.python.code │ ├── pidigits.1.python3.5.code │ ├── pidigits.1.python3.6.code │ ├── pidigits.1.python3.code │ ├── pidigits.1.python35.code │ ├── pidigits.1.rustpython.code │ ├── pidigits.1.shedskin.code │ ├── pidigits.2.cython.code │ ├── pidigits.2.graal.code │ ├── pidigits.2.grumpy.code │ ├── pidigits.2.ipy.code │ ├── pidigits.2.jython.code │ ├── pidigits.2.micropython.code │ ├── pidigits.2.nuitka.code │ ├── pidigits.2.numba.code │ ├── pidigits.2.pypy.code │ ├── pidigits.2.pypy3.code │ ├── pidigits.2.pyston.code │ ├── pidigits.2.python-dev.code │ ├── pidigits.2.python.code │ ├── pidigits.2.python3.5.code │ ├── pidigits.2.python3.6.code │ ├── pidigits.2.python3.code │ ├── pidigits.2.python35.code │ ├── pidigits.2.rustpython.code │ ├── pidigits.2.shedskin.code │ ├── pidigits.3.cython.code │ ├── pidigits.3.graal.code │ ├── pidigits.3.grumpy.code │ ├── pidigits.3.ipy.code │ ├── pidigits.3.jython.code │ ├── pidigits.3.micropython.code │ ├── pidigits.3.nuitka.code │ ├── pidigits.3.numba.code │ ├── pidigits.3.pypy.code │ ├── pidigits.3.pypy3.code │ ├── pidigits.3.pyston.code │ ├── pidigits.3.python-dev.code │ ├── pidigits.3.python.code │ ├── pidigits.3.python3.5.code │ ├── pidigits.3.python3.6.code │ ├── pidigits.3.python3.code │ ├── pidigits.3.python35.code │ ├── pidigits.3.rustpython.code │ ├── pidigits.3.shedskin.code │ ├── pidigits.4.cython.code │ ├── pidigits.4.graal.code │ ├── pidigits.4.grumpy.code │ ├── pidigits.4.ipy.code │ ├── pidigits.4.jython.code │ ├── pidigits.4.micropython.code │ ├── pidigits.4.nuitka.code │ ├── pidigits.4.numba.code │ ├── pidigits.4.pypy.code │ ├── pidigits.4.pypy3.code │ ├── pidigits.4.pyston.code │ ├── pidigits.4.python-dev.code │ ├── pidigits.4.python.code │ ├── pidigits.4.python3.5.code │ ├── pidigits.4.python3.6.code │ ├── pidigits.4.python3.code │ ├── pidigits.4.python35.code │ ├── pidigits.4.rustpython.code │ ├── pidigits.4.shedskin.code │ ├── pidigits.5.graal.code │ ├── pidigits.5.micropython.code │ ├── pidigits.5.nuitka.code │ ├── pidigits.5.pypy3.code │ ├── pidigits.5.pyston.code │ ├── pidigits.5.python-dev.code │ ├── pidigits.5.python3.5.code │ ├── pidigits.5.python3.6.code │ ├── pidigits.5.python3.code │ ├── pidigits.5.python35.code │ ├── pidigits.5.rustpython.code │ ├── pystone.1.cython.code │ ├── pystone.1.graal.code │ ├── pystone.1.grumpy.code │ ├── pystone.1.ipy.code │ ├── pystone.1.jython.code │ ├── pystone.1.micropython.code │ ├── pystone.1.nuitka.code │ ├── pystone.1.numba.code │ ├── pystone.1.pypy.code │ ├── pystone.1.pypy3.code │ ├── pystone.1.pyston.code │ ├── pystone.1.python-dev.code │ ├── pystone.1.python.code │ ├── pystone.1.python3.5.code │ ├── pystone.1.python3.6.code │ ├── pystone.1.python3.code │ ├── pystone.1.python35.code │ ├── pystone.1.rustpython.code │ ├── pystone.1.shedskin.code │ ├── regexdna.1.cython.code │ ├── regexdna.1.graal.code │ ├── regexdna.1.grumpy.code │ ├── regexdna.1.ipy.code │ ├── regexdna.1.jython.code │ ├── regexdna.1.micropython.code │ ├── regexdna.1.nuitka.code │ ├── regexdna.1.numba.code │ ├── regexdna.1.pypy.code │ ├── regexdna.1.pypy3.code │ ├── regexdna.1.pyston.code │ ├── regexdna.1.python-dev.code │ ├── regexdna.1.python.code │ ├── regexdna.1.python3.5.code │ ├── regexdna.1.python3.6.code │ ├── regexdna.1.python3.code │ ├── regexdna.1.python35.code │ ├── regexdna.1.rustpython.code │ ├── regexdna.1.shedskin.code │ ├── regexdna.5.cython.code │ ├── regexdna.5.graal.code │ ├── regexdna.5.grumpy.code │ ├── regexdna.5.ipy.code │ ├── regexdna.5.jython.code │ ├── regexdna.5.micropython.code │ ├── regexdna.5.nuitka.code │ ├── regexdna.5.numba.code │ ├── regexdna.5.pypy.code │ ├── regexdna.5.pypy3.code │ ├── regexdna.5.pyston.code │ ├── regexdna.5.python-dev.code │ ├── regexdna.5.python.code │ ├── regexdna.5.python3.5.code │ ├── regexdna.5.python3.6.code │ ├── regexdna.5.python3.code │ ├── regexdna.5.python35.code │ ├── regexdna.5.rustpython.code │ ├── regexdna.5.shedskin.code │ ├── revcomp.3.cython.code │ ├── revcomp.3.graal.code │ ├── revcomp.3.grumpy.code │ ├── revcomp.3.ipy.code │ ├── revcomp.3.jython.code │ ├── revcomp.3.micropython.code │ ├── revcomp.3.nuitka.code │ ├── revcomp.3.numba.code │ ├── revcomp.3.pypy.code │ ├── revcomp.3.pypy3.code │ ├── revcomp.3.pyston.code │ ├── revcomp.3.python-dev.code │ ├── revcomp.3.python.code │ ├── revcomp.3.python3.5.code │ ├── revcomp.3.python3.6.code │ ├── revcomp.3.python3.code │ ├── revcomp.3.python35.code │ ├── revcomp.3.rustpython.code │ ├── revcomp.3.shedskin.code │ ├── revcomp.4.cython.code │ ├── revcomp.4.graal.code │ ├── revcomp.4.grumpy.code │ ├── revcomp.4.ipy.code │ ├── revcomp.4.jython.code │ ├── revcomp.4.micropython.code │ ├── revcomp.4.nuitka.code │ ├── revcomp.4.numba.code │ ├── revcomp.4.pypy.code │ ├── revcomp.4.pypy3.code │ ├── revcomp.4.pyston.code │ ├── revcomp.4.python-dev.code │ ├── revcomp.4.python.code │ ├── revcomp.4.python3.5.code │ ├── revcomp.4.python3.6.code │ ├── revcomp.4.python3.code │ ├── revcomp.4.python35.code │ ├── revcomp.4.rustpython.code │ ├── revcomp.4.shedskin.code │ ├── revcomp.5.cython.code │ ├── revcomp.5.graal.code │ ├── revcomp.5.grumpy.code │ ├── revcomp.5.ipy.code │ ├── revcomp.5.jython.code │ ├── revcomp.5.micropython.code │ ├── revcomp.5.nuitka.code │ ├── revcomp.5.numba.code │ ├── revcomp.5.pypy.code │ ├── revcomp.5.pypy3.code │ ├── revcomp.5.pyston.code │ ├── revcomp.5.python-dev.code │ ├── revcomp.5.python.code │ ├── revcomp.5.python3.5.code │ ├── revcomp.5.python3.6.code │ ├── revcomp.5.python3.code │ ├── revcomp.5.python35.code │ ├── revcomp.5.rustpython.code │ ├── revcomp.5.shedskin.code │ ├── revcomp.6.graal.code │ ├── revcomp.6.micropython.code │ ├── revcomp.6.nuitka.code │ ├── revcomp.6.pypy3.code │ ├── revcomp.6.pyston.code │ ├── revcomp.6.python-dev.code │ ├── revcomp.6.python3.5.code │ ├── revcomp.6.python3.6.code │ ├── revcomp.6.python3.code │ ├── revcomp.6.python35.code │ ├── revcomp.6.rustpython.code │ ├── richards.1.cython.code │ ├── richards.1.graal.code │ ├── richards.1.grumpy.code │ ├── richards.1.ipy.code │ ├── richards.1.jython.code │ ├── richards.1.micropython.code │ ├── richards.1.nuitka.code │ ├── richards.1.numba.code │ ├── richards.1.py.code │ ├── richards.1.pypy.code │ ├── richards.1.pypy3.code │ ├── richards.1.pyston.code │ ├── richards.1.python-dev.code │ ├── richards.1.python.code │ ├── richards.1.python3.5.code │ ├── richards.1.python3.6.code │ ├── richards.1.python3.code │ ├── richards.1.python35.code │ ├── richards.1.rustpython.code │ ├── richards.1.shedskin.code │ ├── spectralnorm.1.numba.code │ ├── spectralnorm.2.cython.code │ ├── spectralnorm.2.graal.code │ ├── spectralnorm.2.grumpy.code │ ├── spectralnorm.2.ipy.code │ ├── spectralnorm.2.jython.code │ ├── spectralnorm.2.micropython.code │ ├── spectralnorm.2.nuitka.code │ ├── spectralnorm.2.numba.code │ ├── spectralnorm.2.pypy.code │ ├── spectralnorm.2.pypy3.code │ ├── spectralnorm.2.pyston.code │ ├── spectralnorm.2.python-dev.code │ ├── spectralnorm.2.python.code │ ├── spectralnorm.2.python3.5.code │ ├── spectralnorm.2.python3.6.code │ ├── spectralnorm.2.python3.code │ ├── spectralnorm.2.python35.code │ ├── spectralnorm.2.rustpython.code │ ├── spectralnorm.2.shedskin.code │ ├── spectralnorm.3.graal.code │ ├── spectralnorm.3.micropython.code │ ├── spectralnorm.3.nuitka.code │ ├── spectralnorm.3.pypy3.code │ ├── spectralnorm.3.pyston.code │ ├── spectralnorm.3.python-dev.code │ ├── spectralnorm.3.python3.5.code │ ├── spectralnorm.3.python3.6.code │ ├── spectralnorm.3.python3.code │ ├── spectralnorm.3.python35.code │ ├── spectralnorm.3.rustpython.code │ ├── spectralnorm.5.cython.code │ ├── spectralnorm.5.graal.code │ ├── spectralnorm.5.grumpy.code │ ├── spectralnorm.5.ipy.code │ ├── spectralnorm.5.jython.code │ ├── spectralnorm.5.micropython.code │ ├── spectralnorm.5.nuitka.code │ ├── spectralnorm.5.numba.code │ ├── spectralnorm.5.pypy.code │ ├── spectralnorm.5.pypy3.code │ ├── spectralnorm.5.pyston.code │ ├── spectralnorm.5.python-dev.code │ ├── spectralnorm.5.python.code │ ├── spectralnorm.5.python3.5.code │ ├── spectralnorm.5.python3.6.code │ ├── spectralnorm.5.python3.code │ ├── spectralnorm.5.python35.code │ ├── spectralnorm.5.rustpython.code │ ├── spectralnorm.5.shedskin.code │ ├── spectralnorm.6.cython.code │ ├── spectralnorm.6.graal.code │ ├── spectralnorm.6.grumpy.code │ ├── spectralnorm.6.ipy.code │ ├── spectralnorm.6.jython.code │ ├── spectralnorm.6.micropython.code │ ├── spectralnorm.6.nuitka.code │ ├── spectralnorm.6.numba.code │ ├── spectralnorm.6.pypy.code │ ├── spectralnorm.6.pypy3.code │ ├── spectralnorm.6.pyston.code │ ├── spectralnorm.6.python-dev.code │ ├── spectralnorm.6.python.code │ ├── spectralnorm.6.python3.5.code │ ├── spectralnorm.6.python3.6.code │ ├── spectralnorm.6.python3.code │ ├── spectralnorm.6.python35.code │ ├── spectralnorm.6.rustpython.code │ ├── spectralnorm.6.shedskin.code │ ├── spectralnorm.8.cython.code │ ├── spectralnorm.8.graal.code │ ├── spectralnorm.8.grumpy.code │ ├── spectralnorm.8.ipy.code │ ├── spectralnorm.8.jython.code │ ├── spectralnorm.8.micropython.code │ ├── spectralnorm.8.nuitka.code │ ├── spectralnorm.8.numba.code │ ├── spectralnorm.8.pypy.code │ ├── spectralnorm.8.pypy3.code │ ├── spectralnorm.8.pyston.code │ ├── spectralnorm.8.python-dev.code │ ├── spectralnorm.8.python.code │ ├── spectralnorm.8.python3.5.code │ ├── spectralnorm.8.python3.6.code │ ├── spectralnorm.8.python3.code │ ├── spectralnorm.8.python35.code │ ├── spectralnorm.8.rustpython.code │ ├── spectralnorm.8.shedskin.code │ ├── templates.1.cython.code │ ├── templates.1.graal.code │ ├── templates.1.grumpy.code │ ├── templates.1.ipy.code │ ├── templates.1.jython.code │ ├── templates.1.micropython.code │ ├── templates.1.nuitka.code │ ├── templates.1.numba.code │ ├── templates.1.pypy.code │ ├── templates.1.pypy3.code │ ├── templates.1.pyston.code │ ├── templates.1.python-dev.code │ ├── templates.1.python.code │ ├── templates.1.python3.5.code │ ├── templates.1.python3.6.code │ ├── templates.1.python3.code │ ├── templates.1.python35.code │ ├── templates.1.rustpython.code │ ├── templates.1.shedskin.code │ ├── threadring.1.c.code │ ├── threadring.1.cython.code │ ├── threadring.1.graal.code │ ├── threadring.1.grumpy.code │ ├── threadring.1.html.code │ ├── threadring.1.ipy.code │ ├── threadring.1.jython.code │ ├── threadring.1.micropython.code │ ├── threadring.1.nuitka.code │ ├── threadring.1.numba.code │ ├── threadring.1.pypy.code │ ├── threadring.1.pypy3.code │ ├── threadring.1.pyston.code │ ├── threadring.1.python-dev.code │ ├── threadring.1.python.code │ ├── threadring.1.python3.5.code │ ├── threadring.1.python3.6.code │ ├── threadring.1.python3.code │ ├── threadring.1.python35.code │ ├── threadring.1.pyx.code │ ├── threadring.1.rustpython.code │ ├── threadring.1.shedskin.code │ ├── threadring.2.graal.code │ ├── threadring.2.micropython.code │ ├── threadring.2.nuitka.code │ ├── threadring.2.pypy3.code │ ├── threadring.2.pyston.code │ ├── threadring.2.python-dev.code │ ├── threadring.2.python3.5.code │ ├── threadring.2.python3.6.code │ ├── threadring.2.python3.code │ ├── threadring.2.python35.code │ ├── threadring.2.rustpython.code │ ├── threadring.3.graal.code │ ├── threadring.3.micropython.code │ ├── threadring.3.nuitka.code │ ├── threadring.3.pypy3.code │ ├── threadring.3.pyston.code │ ├── threadring.3.python-dev.code │ ├── threadring.3.python3.5.code │ ├── threadring.3.python3.6.code │ ├── threadring.3.python3.code │ ├── threadring.3.python35.code │ ├── threadring.3.rustpython.code │ └── threadring.gnu.so.code ├── summary │ ├── LICENSE │ ├── all_measurements.csv │ ├── fastest_measurements.csv │ └── filtered_measurements.csv └── tmp │ ├── knucleotide │ └── knucleotide-input10000.txt │ ├── regexdna │ └── regexdna-input10000.txt │ └── revcomp │ └── revcomp-input1000.txt ├── clear_lang.sh ├── license.txt ├── new_lang.sh ├── pyproject.toml ├── readme.txt ├── setup.cfg └── website ├── README ├── about ├── binarytrees-about.tpl.php ├── binarytreesredux-about.tpl.php ├── chameneosredux-about.tpl.php ├── fannkuch-about.tpl.php ├── fannkuchredux-about.tpl.php ├── fasta-about.tpl.php ├── fastaredux-about.tpl.php ├── fulldata-about.tpl.php ├── knucleotide-about.tpl.php ├── mandelbrot-about.tpl.php ├── meteor-about.tpl.php ├── nbody-about.tpl.php ├── pidigits-about.tpl.php ├── programs │ ├── binarytrees-ats-2-about.tpl.php │ ├── binarytrees-cint-about.tpl.php │ ├── binarytrees-clean-about.tpl.php │ ├── binarytrees-dart-about.tpl.php │ ├── binarytrees-gcc-8-about.tpl.php │ ├── binarytrees-gcc-9-about.tpl.php │ ├── binarytrees-ghc-3-about.tpl.php │ ├── binarytrees-go-2-about.tpl.php │ ├── binarytrees-go-3-about.tpl.php │ ├── binarytrees-go-6-about.tpl.php │ ├── binarytrees-gpp-about.tpl.php │ ├── binarytrees-java-about.tpl.php │ ├── binarytrees-lua-3-about.tpl.php │ ├── binarytrees-ocaml-4-about.tpl.php │ ├── binarytrees-ocaml-about.tpl.php │ ├── binarytrees-sbcl-3-about.tpl.php │ ├── binarytrees-scala-about.tpl.php │ ├── binarytrees-vw-2-about.tpl.php │ ├── blank-about.tpl.php │ ├── chameneos-dlang-about.tpl.php │ ├── chameneos-erlang-about.tpl.php │ ├── chameneos-fpascal-2-about.tpl.php │ ├── chameneos-fpascal-about.tpl.php │ ├── chameneos-ghc-3-about.tpl.php │ ├── chameneos-hipe-about.tpl.php │ ├── fannkuchredux-cint-about.tpl.php │ ├── fannkuchredux-dart-2-about.tpl.php │ ├── fannkuchredux-dart-about.tpl.php │ ├── fannkuchredux-java-about.tpl.php │ ├── fasta-ghc-3-about.tpl.php │ ├── fasta-ocaml-5-about.tpl.php │ ├── fasta-perl-5-about.tpl.php │ ├── fasta-python3-6-about.tpl.php │ ├── fastaredux-fpascal-about.tpl.php │ ├── fastaredux-gpp-5-about.tpl.php │ ├── fastaredux-python3-6-about.tpl.php │ ├── fastaredux-python3-7-about.tpl.php │ ├── fastaredux-racket-2-about.tpl.php │ ├── fastaredux-sbcl-5-about.tpl.php │ ├── knucleotide-gcc-5-about.tpl.php │ ├── knucleotide-python3-2-about.tpl.php │ ├── mandelbrot-cint-2-about.tpl.php │ ├── mandelbrot-fpascal-3-about.tpl.php │ ├── mandelbrot-gcc-5-about.tpl.php │ ├── mandelbrot-gcc-8-about.tpl.php │ ├── mandelbrot-java-6-about.tpl.php │ ├── meteor-java-2-about.tpl.php │ ├── nbody-cint-about.tpl.php │ ├── nbody-dart-2-about.tpl.php │ ├── nbody-fpascal-2-about.tpl.php │ ├── nbody-fpascal-3-about.tpl.php │ ├── nbody-fpascal-about.tpl.php │ ├── nbody-java-2-about.tpl.php │ ├── nbody-vw-about.tpl.php │ ├── nsieve-scala-4-about.tpl.php │ ├── partialsums-gcc-about.tpl.php │ ├── pidigits-java-2-about.tpl.php │ ├── pidigits-scala-2-about.tpl.php │ ├── pidigits-vw-2-about.tpl.php │ ├── regexdna-fpascal-about.tpl.php │ ├── regexdna-gcc-about.tpl.php │ ├── regexdna-go-about.tpl.php │ ├── regexdna-hipe-7-about.tpl.php │ ├── regexdna-lua-3-about.tpl.php │ ├── regexdna-perl-5-about.tpl.php │ ├── regexdna-perl-6-about.tpl.php │ ├── regexdna-perl-7-about.tpl.php │ ├── regexdna-perl-about.tpl.php │ ├── regexdna-v8-2-about.tpl.php │ ├── revcomp-cint-2-about.tpl.php │ ├── revcomp-clojure-3-about.tpl.php │ ├── revcomp-java-2-about.tpl.php │ ├── revcomp-java-about.tpl.php │ ├── revcomp-perl-2-about.tpl.php │ ├── spectralnorm-cint-about.tpl.php │ ├── spectralnorm-fpascal-about.tpl.php │ ├── spectralnorm-java-2-about.tpl.php │ ├── spectralnorm-vw-2-about.tpl.php │ ├── sumcol-erlang-2-about.tpl.php │ ├── sumcol-gcc-2-about.tpl.php │ ├── sumcol-ghc-5-about.tpl.php │ ├── sumcol-ghc-about.tpl.php │ ├── sumcol-hipe-2-about.tpl.php │ ├── sumcol-sbcl-2-about.tpl.php │ ├── sumcol-sbcl-about.tpl.php │ ├── threadring-csharp-about.tpl.php │ ├── threadring-ghc-2-about.tpl.php │ ├── threadring-ghc-3-about.tpl.php │ ├── threadring-ghc-about.tpl.php │ ├── threadring-gnat-5-about.tpl.php │ ├── threadring-ocaml-2-about.tpl.php │ ├── threadring-ocaml-3-about.tpl.php │ ├── threadring-ocaml-about.tpl.php │ └── threadring-perl-about.tpl.php ├── python3-about.tpl.php ├── regexdna-about.tpl.php ├── revcomp-about.tpl.php ├── spectralnorm-about.tpl.php └── threadring-about.tpl.php ├── desc ├── exclude.csv ├── lang.csv └── test.csv ├── lib ├── boxplot.php ├── boxplot.tpl.php ├── chart.php ├── chartbox-simple.php ├── chartbox.php ├── chartfreq.php ├── chartscore.php ├── chartshape.php ├── chartvs.php ├── compare.php ├── compare.tpl.php ├── comparetimes.php ├── comparetimes.tpl.php ├── freq.php ├── iofile.php ├── iofile.tpl.php ├── language.tpl.php ├── lib.php ├── lib_chart.php ├── lib_common.php ├── lib_data.php ├── lib_scorecard.php ├── lib_whitelist.php ├── measurements.php ├── measurements.tpl.php ├── median.php ├── median.tpl.php ├── misc.tpl.php ├── miscfile.php ├── page.tpl.php ├── performance.php ├── performance.tpl.php ├── play.php ├── play.tpl.php ├── pre.tpl.php ├── program.php ├── program.tpl.php ├── scorecard.php ├── scorecard.tpl.php ├── shapes.php ├── shapes.tpl.php ├── simplepage.tpl.php ├── summarydata.php ├── summarydata.tpl.php └── switch.php ├── misc ├── benchmarking.php ├── license.php └── soon-you-wont-find-the-benchmarks-game-with-google.php └── websites ├── analyticstracking.php ├── benchmark.css ├── chartbox.php ├── config.php ├── dont-jump-to-conclusions.php ├── download ├── bencher.zip ├── binarytrees-output.txt ├── chameneosredux-output.txt ├── fannkuchredux-extra.txt ├── fannkuchredux-output.txt ├── fasta-output.txt ├── fastaredux-output.txt ├── knucleotide-input.txt ├── knucleotide-output.txt ├── mandelbrot-output.pbm ├── mandelbrot-output.txt ├── meteor-output.txt ├── meteor-puzzleboard.txt ├── nbody-output.txt ├── pidigits-output.txt ├── regexdna-input.txt ├── regexdna-output.txt ├── revcomp-input.txt ├── revcomp-output.txt ├── spectralnorm-output.txt └── threadring-output.txt ├── favicon.ico ├── favicon_16x16.png ├── fresh.png ├── fresh_png_29may2012.php ├── hint.css ├── hint_css_26jan2011.php ├── index.php ├── license.php ├── mandelbrot200.png ├── mandelbrot200_png_11dec2009.php ├── more.php ├── nohint.css ├── nohint_css_26jan2011.php ├── open_source_button.png ├── open_source_button_png_11dec2009.php ├── play.php ├── robots.txt ├── sitemap.xml ├── soon-you-wont-find-the-benchmarks-game-with-google.php └── u64q ├── benchmark.php ├── chart.php ├── chartbox-simple.php ├── chartbox.php ├── chartscore.php ├── chartshape.php ├── chartvs.php ├── clean.php ├── code-used-time-used-shapes.php ├── code ├── binarytrees.1.cython.code ├── binarytrees.1.cython.log ├── binarytrees.1.graal.code ├── binarytrees.1.graal.log ├── binarytrees.1.grumpy.code ├── binarytrees.1.grumpy.log ├── binarytrees.1.ipy.code ├── binarytrees.1.ipy.log ├── binarytrees.1.jython.code ├── binarytrees.1.jython.log ├── binarytrees.1.micropython.code ├── binarytrees.1.micropython.log ├── binarytrees.1.nuitka.code ├── binarytrees.1.nuitka.log ├── binarytrees.1.numba.code ├── binarytrees.1.numba.log ├── binarytrees.1.pypy.code ├── binarytrees.1.pypy.log ├── binarytrees.1.pypy3.code ├── binarytrees.1.pypy3.log ├── binarytrees.1.pyston.code ├── binarytrees.1.pyston.log ├── binarytrees.1.python-dev.code ├── binarytrees.1.python-dev.log ├── binarytrees.1.python.code ├── binarytrees.1.python.log ├── binarytrees.1.python3.code ├── binarytrees.1.python3.log ├── binarytrees.1.rustpython.code ├── binarytrees.1.rustpython.log ├── binarytrees.1.shedskin.code ├── binarytrees.1.shedskin.log ├── binarytrees.6.graal.code ├── binarytrees.6.graal.log ├── binarytrees.6.micropython.code ├── binarytrees.6.micropython.log ├── binarytrees.6.nuitka.code ├── binarytrees.6.nuitka.log ├── binarytrees.6.pypy3.code ├── binarytrees.6.pypy3.log ├── binarytrees.6.pyston.code ├── binarytrees.6.pyston.log ├── binarytrees.6.python-dev.code ├── binarytrees.6.python-dev.log ├── binarytrees.6.python3.code ├── binarytrees.6.python3.log ├── binarytrees.6.rustpython.code ├── binarytrees.6.rustpython.log ├── binarytrees.7.graal.code ├── binarytrees.7.graal.log ├── binarytrees.7.micropython.code ├── binarytrees.7.micropython.log ├── binarytrees.7.nuitka.code ├── binarytrees.7.nuitka.log ├── binarytrees.7.pypy3.code ├── binarytrees.7.pypy3.log ├── binarytrees.7.pyston.code ├── binarytrees.7.pyston.log ├── binarytrees.7.python-dev.code ├── binarytrees.7.python-dev.log ├── binarytrees.7.python3.code ├── binarytrees.7.python3.log ├── binarytrees.7.rustpython.code ├── binarytrees.7.rustpython.log ├── chameneosredux.1.cython.code ├── chameneosredux.1.cython.log ├── chameneosredux.1.graal.code ├── chameneosredux.1.graal.log ├── chameneosredux.1.grumpy.code ├── chameneosredux.1.grumpy.log ├── chameneosredux.1.ipy.code ├── chameneosredux.1.ipy.log ├── chameneosredux.1.jython.code ├── chameneosredux.1.jython.log ├── chameneosredux.1.micropython.code ├── chameneosredux.1.micropython.log ├── chameneosredux.1.nuitka.code ├── chameneosredux.1.nuitka.log ├── chameneosredux.1.pypy.code ├── chameneosredux.1.pypy.log ├── chameneosredux.1.pypy3.code ├── chameneosredux.1.pypy3.log ├── chameneosredux.1.pyston.code ├── chameneosredux.1.pyston.log ├── chameneosredux.1.python-dev.code ├── chameneosredux.1.python-dev.log ├── chameneosredux.1.python.code ├── chameneosredux.1.python.log ├── chameneosredux.1.python3.code ├── chameneosredux.1.python3.log ├── chameneosredux.1.rustpython.code ├── chameneosredux.1.rustpython.log ├── chameneosredux.1.shedskin.code ├── chameneosredux.1.shedskin.log ├── chameneosredux.2.graal.code ├── chameneosredux.2.graal.log ├── chameneosredux.2.micropython.code ├── chameneosredux.2.micropython.log ├── chameneosredux.2.nuitka.code ├── chameneosredux.2.nuitka.log ├── chameneosredux.2.pypy3.code ├── chameneosredux.2.pypy3.log ├── chameneosredux.2.pyston.code ├── chameneosredux.2.pyston.log ├── chameneosredux.2.python-dev.code ├── chameneosredux.2.python-dev.log ├── chameneosredux.2.python3.code ├── chameneosredux.2.python3.log ├── chameneosredux.2.rustpython.code ├── chameneosredux.2.rustpython.log ├── fannkuchredux.1.cython.code ├── fannkuchredux.1.cython.log ├── fannkuchredux.1.graal.code ├── fannkuchredux.1.graal.log ├── fannkuchredux.1.grumpy.code ├── fannkuchredux.1.grumpy.log ├── fannkuchredux.1.ipy.code ├── fannkuchredux.1.ipy.log ├── fannkuchredux.1.jython.code ├── fannkuchredux.1.jython.log ├── fannkuchredux.1.micropython.code ├── fannkuchredux.1.micropython.log ├── fannkuchredux.1.nuitka.code ├── fannkuchredux.1.nuitka.log ├── fannkuchredux.1.pypy.code ├── fannkuchredux.1.pypy.log ├── fannkuchredux.1.pypy3.code ├── fannkuchredux.1.pypy3.log ├── fannkuchredux.1.pyston.code ├── fannkuchredux.1.pyston.log ├── fannkuchredux.1.python-dev.code ├── fannkuchredux.1.python-dev.log ├── fannkuchredux.1.python.code ├── fannkuchredux.1.python.log ├── fannkuchredux.1.python3.code ├── fannkuchredux.1.python3.log ├── fannkuchredux.1.rustpython.code ├── fannkuchredux.1.rustpython.log ├── fannkuchredux.1.shedskin.code ├── fannkuchredux.1.shedskin.log ├── fannkuchredux.2.graal.code ├── fannkuchredux.2.graal.log ├── fannkuchredux.2.micropython.code ├── fannkuchredux.2.micropython.log ├── fannkuchredux.2.nuitka.code ├── fannkuchredux.2.nuitka.log ├── fannkuchredux.2.pypy3.code ├── fannkuchredux.2.pypy3.log ├── fannkuchredux.2.pyston.code ├── fannkuchredux.2.pyston.log ├── fannkuchredux.2.python-dev.code ├── fannkuchredux.2.python-dev.log ├── fannkuchredux.2.python3.code ├── fannkuchredux.2.python3.log ├── fannkuchredux.2.rustpython.code ├── fannkuchredux.2.rustpython.log ├── fannkuchredux.3.graal.code ├── fannkuchredux.3.graal.log ├── fannkuchredux.3.micropython.code ├── fannkuchredux.3.micropython.log ├── fannkuchredux.3.nuitka.code ├── fannkuchredux.3.nuitka.log ├── fannkuchredux.3.pypy3.code ├── fannkuchredux.3.pypy3.log ├── fannkuchredux.3.pyston.code ├── fannkuchredux.3.pyston.log ├── fannkuchredux.3.python-dev.code ├── fannkuchredux.3.python-dev.log ├── fannkuchredux.3.python3.code ├── fannkuchredux.3.python3.log ├── fannkuchredux.3.rustpython.code ├── fannkuchredux.3.rustpython.log ├── fannkuchredux.4.graal.code ├── fannkuchredux.4.graal.log ├── fannkuchredux.4.micropython.code ├── fannkuchredux.4.micropython.log ├── fannkuchredux.4.nuitka.code ├── fannkuchredux.4.nuitka.log ├── fannkuchredux.4.pypy3.code ├── fannkuchredux.4.pypy3.log ├── fannkuchredux.4.pyston.code ├── fannkuchredux.4.pyston.log ├── fannkuchredux.4.python-dev.code ├── fannkuchredux.4.python-dev.log ├── fannkuchredux.4.python3.code ├── fannkuchredux.4.python3.log ├── fannkuchredux.4.rustpython.code ├── fannkuchredux.4.rustpython.log ├── fannkuchredux.6.graal.code ├── fannkuchredux.6.graal.log ├── fannkuchredux.6.micropython.code ├── fannkuchredux.6.micropython.log ├── fannkuchredux.6.nuitka.code ├── fannkuchredux.6.nuitka.log ├── fannkuchredux.6.pypy3.code ├── fannkuchredux.6.pypy3.log ├── fannkuchredux.6.pyston.code ├── fannkuchredux.6.pyston.log ├── fannkuchredux.6.python-dev.code ├── fannkuchredux.6.python-dev.log ├── fannkuchredux.6.python3.code ├── fannkuchredux.6.python3.log ├── fannkuchredux.6.rustpython.code ├── fannkuchredux.6.rustpython.log ├── fasta.1.cython.code ├── fasta.1.cython.log ├── fasta.1.graal.code ├── fasta.1.graal.log ├── fasta.1.grumpy.code ├── fasta.1.grumpy.log ├── fasta.1.ipy.code ├── fasta.1.ipy.log ├── fasta.1.jython.code ├── fasta.1.jython.log ├── fasta.1.micropython.code ├── fasta.1.micropython.log ├── fasta.1.nuitka.code ├── fasta.1.nuitka.log ├── fasta.1.pypy.code ├── fasta.1.pypy.log ├── fasta.1.pypy3.code ├── fasta.1.pypy3.log ├── fasta.1.pyston.code ├── fasta.1.pyston.log ├── fasta.1.python-dev.code ├── fasta.1.python-dev.log ├── fasta.1.python.code ├── fasta.1.python.log ├── fasta.1.python3.code ├── fasta.1.python3.log ├── fasta.1.rustpython.code ├── fasta.1.rustpython.log ├── fasta.1.shedskin.code ├── fasta.1.shedskin.log ├── fasta.2.graal.code ├── fasta.2.graal.log ├── fasta.2.micropython.code ├── fasta.2.micropython.log ├── fasta.2.nuitka.code ├── fasta.2.nuitka.log ├── fasta.2.pypy3.code ├── fasta.2.pypy3.log ├── fasta.2.pyston.code ├── fasta.2.pyston.log ├── fasta.2.python-dev.code ├── fasta.2.python-dev.log ├── fasta.2.python3.code ├── fasta.2.python3.log ├── fasta.2.rustpython.code ├── fasta.2.rustpython.log ├── fasta.3.graal.code ├── fasta.3.graal.log ├── fasta.3.micropython.code ├── fasta.3.micropython.log ├── fasta.3.nuitka.code ├── fasta.3.nuitka.log ├── fasta.3.pypy3.code ├── fasta.3.pypy3.log ├── fasta.3.pyston.code ├── fasta.3.pyston.log ├── fasta.3.python-dev.code ├── fasta.3.python-dev.log ├── fasta.3.python3.code ├── fasta.3.python3.log ├── fasta.3.rustpython.code ├── fasta.3.rustpython.log ├── fasta.4.graal.code ├── fasta.4.graal.log ├── fasta.4.micropython.code ├── fasta.4.micropython.log ├── fasta.4.nuitka.code ├── fasta.4.nuitka.log ├── fasta.4.pypy3.code ├── fasta.4.pypy3.log ├── fasta.4.pyston.code ├── fasta.4.pyston.log ├── fasta.4.python-dev.code ├── fasta.4.python-dev.log ├── fasta.4.python3.code ├── fasta.4.python3.log ├── fasta.4.rustpython.code ├── fasta.4.rustpython.log ├── fasta.5.graal.code ├── fasta.5.graal.log ├── fasta.5.micropython.code ├── fasta.5.micropython.log ├── fasta.5.nuitka.code ├── fasta.5.nuitka.log ├── fasta.5.pypy3.code ├── fasta.5.pypy3.log ├── fasta.5.pyston.code ├── fasta.5.pyston.log ├── fasta.5.python-dev.code ├── fasta.5.python-dev.log ├── fasta.5.python3.code ├── fasta.5.python3.log ├── fasta.5.rustpython.code ├── fasta.5.rustpython.log ├── fastaredux.1.cython.code ├── fastaredux.1.cython.log ├── fastaredux.1.graal.code ├── fastaredux.1.graal.log ├── fastaredux.1.grumpy.code ├── fastaredux.1.grumpy.log ├── fastaredux.1.ipy.code ├── fastaredux.1.ipy.log ├── fastaredux.1.jython.code ├── fastaredux.1.jython.log ├── fastaredux.1.micropython.code ├── fastaredux.1.micropython.log ├── fastaredux.1.nuitka.code ├── fastaredux.1.nuitka.log ├── fastaredux.1.pypy.code ├── fastaredux.1.pypy.log ├── fastaredux.1.pypy3.code ├── fastaredux.1.pypy3.log ├── fastaredux.1.pyston.code ├── fastaredux.1.pyston.log ├── fastaredux.1.python-dev.code ├── fastaredux.1.python-dev.log ├── fastaredux.1.python.code ├── fastaredux.1.python.log ├── fastaredux.1.python3.code ├── fastaredux.1.python3.log ├── fastaredux.1.rustpython.code ├── fastaredux.1.rustpython.log ├── fastaredux.1.shedskin.code ├── fastaredux.1.shedskin.log ├── fastaredux.6.graal.code ├── fastaredux.6.graal.log ├── fastaredux.6.micropython.code ├── fastaredux.6.micropython.log ├── fastaredux.6.nuitka.code ├── fastaredux.6.nuitka.log ├── fastaredux.6.pypy3.code ├── fastaredux.6.pypy3.log ├── fastaredux.6.pyston.code ├── fastaredux.6.pyston.log ├── fastaredux.6.python-dev.code ├── fastaredux.6.python-dev.log ├── fastaredux.6.python3.code ├── fastaredux.6.python3.log ├── fastaredux.6.rustpython.code ├── fastaredux.6.rustpython.log ├── fastaredux.7.graal.code ├── fastaredux.7.graal.log ├── fastaredux.7.micropython.code ├── fastaredux.7.micropython.log ├── fastaredux.7.nuitka.code ├── fastaredux.7.nuitka.log ├── fastaredux.7.pypy3.code ├── fastaredux.7.pypy3.log ├── fastaredux.7.pyston.code ├── fastaredux.7.pyston.log ├── fastaredux.7.python-dev.code ├── fastaredux.7.python-dev.log ├── fastaredux.7.python3.code ├── fastaredux.7.python3.log ├── fastaredux.7.rustpython.code ├── fastaredux.7.rustpython.log ├── fib50.1.cython.code ├── fib50.1.cython.log ├── fib50.1.graal.code ├── fib50.1.graal.log ├── fib50.1.grumpy.code ├── fib50.1.grumpy.log ├── fib50.1.ipy.code ├── fib50.1.ipy.log ├── fib50.1.jython.code ├── fib50.1.jython.log ├── fib50.1.micropython.code ├── fib50.1.micropython.log ├── fib50.1.nuitka.code ├── fib50.1.nuitka.log ├── fib50.1.numba.code ├── fib50.1.numba.log ├── fib50.1.pypy.code ├── fib50.1.pypy.log ├── fib50.1.pypy3.code ├── fib50.1.pypy3.log ├── fib50.1.pyston.code ├── fib50.1.pyston.log ├── fib50.1.python-dev.code ├── fib50.1.python-dev.log ├── fib50.1.python.code ├── fib50.1.python.log ├── fib50.1.python3.code ├── fib50.1.python3.log ├── fib50.1.rustpython.code ├── fib50.1.rustpython.log ├── fib50.1.shedskin.code ├── fib50.1.shedskin.log ├── fibonacci.1.cython.code ├── fibonacci.1.cython.log ├── fibonacci.1.graal.code ├── fibonacci.1.graal.log ├── fibonacci.1.grumpy.code ├── fibonacci.1.grumpy.log ├── fibonacci.1.ipy.code ├── fibonacci.1.ipy.log ├── fibonacci.1.jython.code ├── fibonacci.1.jython.log ├── fibonacci.1.micropython.code ├── fibonacci.1.micropython.log ├── fibonacci.1.nuitka.code ├── fibonacci.1.nuitka.log ├── fibonacci.1.numba.code ├── fibonacci.1.numba.log ├── fibonacci.1.pypy.code ├── fibonacci.1.pypy.log ├── fibonacci.1.pypy3.code ├── fibonacci.1.pypy3.log ├── fibonacci.1.pyston.code ├── fibonacci.1.pyston.log ├── fibonacci.1.python-dev.code ├── fibonacci.1.python-dev.log ├── fibonacci.1.python.code ├── fibonacci.1.python.log ├── fibonacci.1.python3.code ├── fibonacci.1.python3.log ├── fibonacci.1.rustpython.code ├── fibonacci.1.rustpython.log ├── fibonacci.1.shedskin.code ├── fibonacci.1.shedskin.log ├── fibonacci.2.cython.code ├── fibonacci.2.cython.log ├── fibonacci.2.graal.code ├── fibonacci.2.graal.log ├── fibonacci.2.grumpy.code ├── fibonacci.2.grumpy.log ├── fibonacci.2.ipy.code ├── fibonacci.2.ipy.log ├── fibonacci.2.jython.code ├── fibonacci.2.jython.log ├── fibonacci.2.micropython.code ├── fibonacci.2.micropython.log ├── fibonacci.2.nuitka.code ├── fibonacci.2.nuitka.log ├── fibonacci.2.pypy.code ├── fibonacci.2.pypy.log ├── fibonacci.2.pypy3.code ├── fibonacci.2.pypy3.log ├── fibonacci.2.pyston.code ├── fibonacci.2.pyston.log ├── fibonacci.2.python-dev.code ├── fibonacci.2.python-dev.log ├── fibonacci.2.python.code ├── fibonacci.2.python.log ├── fibonacci.2.python3.code ├── fibonacci.2.python3.log ├── fibonacci.2.rustpython.code ├── fibonacci.2.rustpython.log ├── fibonacci.2.shedskin.code ├── fibonacci.2.shedskin.log ├── fibonacci.3.cython.code ├── fibonacci.3.cython.log ├── fibonacci.3.graal.code ├── fibonacci.3.graal.log ├── fibonacci.3.grumpy.code ├── fibonacci.3.grumpy.log ├── fibonacci.3.ipy.code ├── fibonacci.3.ipy.log ├── fibonacci.3.jython.code ├── fibonacci.3.jython.log ├── fibonacci.3.micropython.code ├── fibonacci.3.micropython.log ├── fibonacci.3.nuitka.code ├── fibonacci.3.nuitka.log ├── fibonacci.3.numba.code ├── fibonacci.3.numba.log ├── fibonacci.3.pypy.code ├── fibonacci.3.pypy.log ├── fibonacci.3.pypy3.code ├── fibonacci.3.pypy3.log ├── fibonacci.3.pyston.code ├── fibonacci.3.pyston.log ├── fibonacci.3.python-dev.code ├── fibonacci.3.python-dev.log ├── fibonacci.3.python.code ├── fibonacci.3.python.log ├── fibonacci.3.python3.code ├── fibonacci.3.python3.log ├── fibonacci.3.rustpython.code ├── fibonacci.3.rustpython.log ├── fibonacci.3.shedskin.code ├── fibonacci.3.shedskin.log ├── iobench.1.cython.code ├── iobench.1.cython.log ├── iobench.1.graal.code ├── iobench.1.graal.log ├── iobench.1.grumpy.code ├── iobench.1.grumpy.log ├── iobench.1.ipy.code ├── iobench.1.ipy.log ├── iobench.1.jython.code ├── iobench.1.jython.log ├── iobench.1.micropython.code ├── iobench.1.micropython.log ├── iobench.1.nuitka.code ├── iobench.1.nuitka.log ├── iobench.1.numba.code ├── iobench.1.numba.log ├── iobench.1.pypy.code ├── iobench.1.pypy.log ├── iobench.1.pypy3.code ├── iobench.1.pypy3.log ├── iobench.1.pyston.code ├── iobench.1.pyston.log ├── iobench.1.python-dev.code ├── iobench.1.python-dev.log ├── iobench.1.python.code ├── iobench.1.python.log ├── iobench.1.python3.code ├── iobench.1.python3.log ├── iobench.1.rustpython.code ├── iobench.1.rustpython.log ├── iobench.1.shedskin.code ├── iobench.1.shedskin.log ├── jsonbench.1.cython.code ├── jsonbench.1.cython.log ├── jsonbench.1.graal.code ├── jsonbench.1.graal.log ├── jsonbench.1.grumpy.code ├── jsonbench.1.grumpy.log ├── jsonbench.1.ipy.code ├── jsonbench.1.ipy.log ├── jsonbench.1.jython.code ├── jsonbench.1.jython.log ├── jsonbench.1.micropython.code ├── jsonbench.1.micropython.log ├── jsonbench.1.nuitka.code ├── jsonbench.1.nuitka.log ├── jsonbench.1.pypy.code ├── jsonbench.1.pypy.log ├── jsonbench.1.pypy3.code ├── jsonbench.1.pypy3.log ├── jsonbench.1.pyston.code ├── jsonbench.1.pyston.log ├── jsonbench.1.python-dev.code ├── jsonbench.1.python-dev.log ├── jsonbench.1.python.code ├── jsonbench.1.python.log ├── jsonbench.1.python3.code ├── jsonbench.1.python3.log ├── jsonbench.1.rustpython.code ├── jsonbench.1.rustpython.log ├── jsonbench.1.shedskin.code ├── jsonbench.1.shedskin.log ├── knucleotide.1.cython.code ├── knucleotide.1.cython.log ├── knucleotide.1.graal.code ├── knucleotide.1.graal.log ├── knucleotide.1.grumpy.code ├── knucleotide.1.grumpy.log ├── knucleotide.1.ipy.code ├── knucleotide.1.ipy.log ├── knucleotide.1.jython.code ├── knucleotide.1.jython.log ├── knucleotide.1.micropython.code ├── knucleotide.1.micropython.log ├── knucleotide.1.nuitka.code ├── knucleotide.1.nuitka.log ├── knucleotide.1.pypy.code ├── knucleotide.1.pypy.log ├── knucleotide.1.pypy3.code ├── knucleotide.1.pypy3.log ├── knucleotide.1.pyston.code ├── knucleotide.1.pyston.log ├── knucleotide.1.python-dev.code ├── knucleotide.1.python-dev.log ├── knucleotide.1.python.code ├── knucleotide.1.python.log ├── knucleotide.1.python3.code ├── knucleotide.1.python3.log ├── knucleotide.1.rustpython.code ├── knucleotide.1.rustpython.log ├── knucleotide.1.shedskin.code ├── knucleotide.1.shedskin.log ├── knucleotide.2.cython.code ├── knucleotide.2.cython.log ├── knucleotide.2.graal.code ├── knucleotide.2.graal.log ├── knucleotide.2.grumpy.code ├── knucleotide.2.grumpy.log ├── knucleotide.2.ipy.code ├── knucleotide.2.ipy.log ├── knucleotide.2.jython.code ├── knucleotide.2.jython.log ├── knucleotide.2.micropython.code ├── knucleotide.2.micropython.log ├── knucleotide.2.nuitka.code ├── knucleotide.2.nuitka.log ├── knucleotide.2.pypy.code ├── knucleotide.2.pypy.log ├── knucleotide.2.pypy3.code ├── knucleotide.2.pypy3.log ├── knucleotide.2.pyston.code ├── knucleotide.2.pyston.log ├── knucleotide.2.python-dev.code ├── knucleotide.2.python-dev.log ├── knucleotide.2.python.code ├── knucleotide.2.python.log ├── knucleotide.2.python3.code ├── knucleotide.2.python3.log ├── knucleotide.2.rustpython.code ├── knucleotide.2.rustpython.log ├── knucleotide.2.shedskin.code ├── knucleotide.2.shedskin.log ├── knucleotide.3.graal.code ├── knucleotide.3.graal.log ├── knucleotide.3.micropython.code ├── knucleotide.3.micropython.log ├── knucleotide.3.nuitka.code ├── knucleotide.3.nuitka.log ├── knucleotide.3.pypy3.code ├── knucleotide.3.pypy3.log ├── knucleotide.3.pyston.code ├── knucleotide.3.pyston.log ├── knucleotide.3.python-dev.code ├── knucleotide.3.python-dev.log ├── knucleotide.3.python3.code ├── knucleotide.3.python3.log ├── knucleotide.3.rustpython.code ├── knucleotide.3.rustpython.log ├── knucleotide.8.cython.code ├── knucleotide.8.cython.log ├── knucleotide.8.graal.code ├── knucleotide.8.graal.log ├── knucleotide.8.grumpy.code ├── knucleotide.8.grumpy.log ├── knucleotide.8.ipy.code ├── knucleotide.8.ipy.log ├── knucleotide.8.jython.code ├── knucleotide.8.jython.log ├── knucleotide.8.micropython.code ├── knucleotide.8.micropython.log ├── knucleotide.8.nuitka.code ├── knucleotide.8.nuitka.log ├── knucleotide.8.pypy.code ├── knucleotide.8.pypy.log ├── knucleotide.8.pypy3.code ├── knucleotide.8.pypy3.log ├── knucleotide.8.pyston.code ├── knucleotide.8.pyston.log ├── knucleotide.8.python-dev.code ├── knucleotide.8.python-dev.log ├── knucleotide.8.python.code ├── knucleotide.8.python.log ├── knucleotide.8.python3.code ├── knucleotide.8.python3.log ├── knucleotide.8.rustpython.code ├── knucleotide.8.rustpython.log ├── knucleotide.8.shedskin.code ├── knucleotide.8.shedskin.log ├── mandelbrot.6.cython.code ├── mandelbrot.6.cython.log ├── mandelbrot.6.graal.code ├── mandelbrot.6.graal.log ├── mandelbrot.6.grumpy.code ├── mandelbrot.6.grumpy.log ├── mandelbrot.6.ipy.code ├── mandelbrot.6.ipy.log ├── mandelbrot.6.jython.code ├── mandelbrot.6.jython.log ├── mandelbrot.6.micropython.code ├── mandelbrot.6.micropython.log ├── mandelbrot.6.nuitka.code ├── mandelbrot.6.nuitka.log ├── mandelbrot.6.numba.code ├── mandelbrot.6.numba.log ├── mandelbrot.6.pypy.code ├── mandelbrot.6.pypy.log ├── mandelbrot.6.pypy3.code ├── mandelbrot.6.pypy3.log ├── mandelbrot.6.pyston.code ├── mandelbrot.6.pyston.log ├── mandelbrot.6.python-dev.code ├── mandelbrot.6.python-dev.log ├── mandelbrot.6.python.code ├── mandelbrot.6.python.log ├── mandelbrot.6.python3.code ├── mandelbrot.6.python3.log ├── mandelbrot.6.rustpython.code ├── mandelbrot.6.rustpython.log ├── mandelbrot.6.shedskin.code ├── mandelbrot.6.shedskin.log ├── meteor.1.cython.code ├── meteor.1.cython.log ├── meteor.1.graal.code ├── meteor.1.graal.log ├── meteor.1.grumpy.code ├── meteor.1.grumpy.log ├── meteor.1.ipy.code ├── meteor.1.ipy.log ├── meteor.1.jython.code ├── meteor.1.jython.log ├── meteor.1.micropython.code ├── meteor.1.micropython.log ├── meteor.1.nuitka.code ├── meteor.1.nuitka.log ├── meteor.1.pypy.code ├── meteor.1.pypy.log ├── meteor.1.pypy3.code ├── meteor.1.pypy3.log ├── meteor.1.pyston.code ├── meteor.1.pyston.log ├── meteor.1.python-dev.code ├── meteor.1.python-dev.log ├── meteor.1.python.code ├── meteor.1.python.log ├── meteor.1.python3.code ├── meteor.1.python3.log ├── meteor.1.rustpython.code ├── meteor.1.rustpython.log ├── meteor.1.shedskin.code ├── meteor.1.shedskin.log ├── meteor.2.cython.code ├── meteor.2.cython.log ├── meteor.2.graal.code ├── meteor.2.graal.log ├── meteor.2.grumpy.code ├── meteor.2.grumpy.log ├── meteor.2.ipy.code ├── meteor.2.ipy.log ├── meteor.2.jython.code ├── meteor.2.jython.log ├── meteor.2.micropython.code ├── meteor.2.micropython.log ├── meteor.2.nuitka.code ├── meteor.2.nuitka.log ├── meteor.2.pypy.code ├── meteor.2.pypy.log ├── meteor.2.pypy3.code ├── meteor.2.pypy3.log ├── meteor.2.pyston.code ├── meteor.2.pyston.log ├── meteor.2.python-dev.code ├── meteor.2.python-dev.log ├── meteor.2.python.code ├── meteor.2.python.log ├── meteor.2.python3.code ├── meteor.2.python3.log ├── meteor.2.rustpython.code ├── meteor.2.rustpython.log ├── meteor.2.shedskin.code ├── meteor.2.shedskin.log ├── meteor.3.cython.code ├── meteor.3.cython.log ├── meteor.3.graal.code ├── meteor.3.graal.log ├── meteor.3.grumpy.code ├── meteor.3.grumpy.log ├── meteor.3.ipy.code ├── meteor.3.ipy.log ├── meteor.3.jython.code ├── meteor.3.jython.log ├── meteor.3.micropython.code ├── meteor.3.micropython.log ├── meteor.3.nuitka.code ├── meteor.3.nuitka.log ├── meteor.3.pypy.code ├── meteor.3.pypy.log ├── meteor.3.pypy3.code ├── meteor.3.pypy3.log ├── meteor.3.pyston.code ├── meteor.3.pyston.log ├── meteor.3.python-dev.code ├── meteor.3.python-dev.log ├── meteor.3.python.code ├── meteor.3.python.log ├── meteor.3.python3.code ├── meteor.3.python3.log ├── meteor.3.rustpython.code ├── meteor.3.rustpython.log ├── meteor.3.shedskin.code ├── meteor.3.shedskin.log ├── nbody.1.cython.code ├── nbody.1.cython.log ├── nbody.1.graal.code ├── nbody.1.graal.log ├── nbody.1.grumpy.code ├── nbody.1.grumpy.log ├── nbody.1.ipy.code ├── nbody.1.ipy.log ├── nbody.1.jython.code ├── nbody.1.jython.log ├── nbody.1.micropython.code ├── nbody.1.micropython.log ├── nbody.1.nuitka.code ├── nbody.1.nuitka.log ├── nbody.1.numba.code ├── nbody.1.numba.log ├── nbody.1.pypy.code ├── nbody.1.pypy.log ├── nbody.1.pypy3.code ├── nbody.1.pypy3.log ├── nbody.1.pyston.code ├── nbody.1.pyston.log ├── nbody.1.python-dev.code ├── nbody.1.python-dev.log ├── nbody.1.python.code ├── nbody.1.python.log ├── nbody.1.python3.code ├── nbody.1.python3.log ├── nbody.1.rustpython.code ├── nbody.1.rustpython.log ├── nbody.1.shedskin.code ├── nbody.1.shedskin.log ├── pidigits.1.cython.code ├── pidigits.1.cython.log ├── pidigits.1.graal.code ├── pidigits.1.graal.log ├── pidigits.1.grumpy.code ├── pidigits.1.grumpy.log ├── pidigits.1.ipy.code ├── pidigits.1.ipy.log ├── pidigits.1.jython.code ├── pidigits.1.jython.log ├── pidigits.1.micropython.code ├── pidigits.1.micropython.log ├── pidigits.1.nuitka.code ├── pidigits.1.nuitka.log ├── pidigits.1.pypy.code ├── pidigits.1.pypy.log ├── pidigits.1.pypy3.code ├── pidigits.1.pypy3.log ├── pidigits.1.pyston.code ├── pidigits.1.pyston.log ├── pidigits.1.python-dev.code ├── pidigits.1.python-dev.log ├── pidigits.1.python.code ├── pidigits.1.python.log ├── pidigits.1.python3.code ├── pidigits.1.python3.log ├── pidigits.1.rustpython.code ├── pidigits.1.rustpython.log ├── pidigits.1.shedskin.code ├── pidigits.1.shedskin.log ├── pidigits.2.cython.code ├── pidigits.2.cython.log ├── pidigits.2.graal.code ├── pidigits.2.graal.log ├── pidigits.2.grumpy.code ├── pidigits.2.grumpy.log ├── pidigits.2.ipy.code ├── pidigits.2.ipy.log ├── pidigits.2.jython.code ├── pidigits.2.jython.log ├── pidigits.2.micropython.code ├── pidigits.2.micropython.log ├── pidigits.2.nuitka.code ├── pidigits.2.nuitka.log ├── pidigits.2.pypy.code ├── pidigits.2.pypy.log ├── pidigits.2.pypy3.code ├── pidigits.2.pypy3.log ├── pidigits.2.pyston.code ├── pidigits.2.pyston.log ├── pidigits.2.python-dev.code ├── pidigits.2.python-dev.log ├── pidigits.2.python.code ├── pidigits.2.python.log ├── pidigits.2.python3.code ├── pidigits.2.python3.log ├── pidigits.2.rustpython.code ├── pidigits.2.rustpython.log ├── pidigits.2.shedskin.code ├── pidigits.2.shedskin.log ├── pidigits.3.cython.code ├── pidigits.3.cython.log ├── pidigits.3.graal.code ├── pidigits.3.graal.log ├── pidigits.3.grumpy.code ├── pidigits.3.grumpy.log ├── pidigits.3.ipy.code ├── pidigits.3.ipy.log ├── pidigits.3.jython.code ├── pidigits.3.jython.log ├── pidigits.3.micropython.code ├── pidigits.3.micropython.log ├── pidigits.3.nuitka.code ├── pidigits.3.nuitka.log ├── pidigits.3.pypy.code ├── pidigits.3.pypy.log ├── pidigits.3.pypy3.code ├── pidigits.3.pypy3.log ├── pidigits.3.pyston.code ├── pidigits.3.pyston.log ├── pidigits.3.python-dev.code ├── pidigits.3.python-dev.log ├── pidigits.3.python.code ├── pidigits.3.python.log ├── pidigits.3.python3.code ├── pidigits.3.python3.log ├── pidigits.3.rustpython.code ├── pidigits.3.rustpython.log ├── pidigits.3.shedskin.code ├── pidigits.3.shedskin.log ├── pidigits.4.cython.code ├── pidigits.4.cython.log ├── pidigits.4.graal.code ├── pidigits.4.graal.log ├── pidigits.4.grumpy.code ├── pidigits.4.grumpy.log ├── pidigits.4.ipy.code ├── pidigits.4.ipy.log ├── pidigits.4.jython.code ├── pidigits.4.jython.log ├── pidigits.4.micropython.code ├── pidigits.4.micropython.log ├── pidigits.4.nuitka.code ├── pidigits.4.nuitka.log ├── pidigits.4.pypy.code ├── pidigits.4.pypy.log ├── pidigits.4.pypy3.code ├── pidigits.4.pypy3.log ├── pidigits.4.pyston.code ├── pidigits.4.pyston.log ├── pidigits.4.python-dev.code ├── pidigits.4.python-dev.log ├── pidigits.4.python.code ├── pidigits.4.python.log ├── pidigits.4.python3.code ├── pidigits.4.python3.log ├── pidigits.4.rustpython.code ├── pidigits.4.rustpython.log ├── pidigits.4.shedskin.code ├── pidigits.4.shedskin.log ├── pidigits.5.graal.code ├── pidigits.5.graal.log ├── pidigits.5.micropython.code ├── pidigits.5.micropython.log ├── pidigits.5.nuitka.code ├── pidigits.5.nuitka.log ├── pidigits.5.pypy3.code ├── pidigits.5.pypy3.log ├── pidigits.5.pyston.code ├── pidigits.5.pyston.log ├── pidigits.5.python-dev.code ├── pidigits.5.python-dev.log ├── pidigits.5.python3.code ├── pidigits.5.python3.log ├── pidigits.5.rustpython.code ├── pidigits.5.rustpython.log ├── pystone.1.cython.code ├── pystone.1.cython.log ├── pystone.1.graal.code ├── pystone.1.graal.log ├── pystone.1.grumpy.code ├── pystone.1.grumpy.log ├── pystone.1.ipy.code ├── pystone.1.ipy.log ├── pystone.1.jython.code ├── pystone.1.jython.log ├── pystone.1.micropython.code ├── pystone.1.micropython.log ├── pystone.1.nuitka.code ├── pystone.1.nuitka.log ├── pystone.1.pypy.code ├── pystone.1.pypy.log ├── pystone.1.pypy3.code ├── pystone.1.pypy3.log ├── pystone.1.pyston.code ├── pystone.1.pyston.log ├── pystone.1.python-dev.code ├── pystone.1.python-dev.log ├── pystone.1.python.code ├── pystone.1.python.log ├── pystone.1.python3.code ├── pystone.1.python3.log ├── pystone.1.rustpython.code ├── pystone.1.rustpython.log ├── pystone.1.shedskin.code ├── pystone.1.shedskin.log ├── regexdna.1.cython.code ├── regexdna.1.cython.log ├── regexdna.1.graal.code ├── regexdna.1.graal.log ├── regexdna.1.grumpy.code ├── regexdna.1.grumpy.log ├── regexdna.1.ipy.code ├── regexdna.1.ipy.log ├── regexdna.1.jython.code ├── regexdna.1.jython.log ├── regexdna.1.micropython.code ├── regexdna.1.micropython.log ├── regexdna.1.nuitka.code ├── regexdna.1.nuitka.log ├── regexdna.1.pypy.code ├── regexdna.1.pypy.log ├── regexdna.1.pypy3.code ├── regexdna.1.pypy3.log ├── regexdna.1.pyston.code ├── regexdna.1.pyston.log ├── regexdna.1.python-dev.code ├── regexdna.1.python-dev.log ├── regexdna.1.python.code ├── regexdna.1.python.log ├── regexdna.1.python3.code ├── regexdna.1.python3.log ├── regexdna.1.rustpython.code ├── regexdna.1.rustpython.log ├── regexdna.1.shedskin.code ├── regexdna.1.shedskin.log ├── regexdna.5.cython.code ├── regexdna.5.cython.log ├── regexdna.5.graal.code ├── regexdna.5.graal.log ├── regexdna.5.grumpy.code ├── regexdna.5.grumpy.log ├── regexdna.5.ipy.code ├── regexdna.5.ipy.log ├── regexdna.5.jython.code ├── regexdna.5.jython.log ├── regexdna.5.micropython.code ├── regexdna.5.micropython.log ├── regexdna.5.nuitka.code ├── regexdna.5.nuitka.log ├── regexdna.5.pypy.code ├── regexdna.5.pypy.log ├── regexdna.5.pypy3.code ├── regexdna.5.pypy3.log ├── regexdna.5.pyston.code ├── regexdna.5.pyston.log ├── regexdna.5.python-dev.code ├── regexdna.5.python-dev.log ├── regexdna.5.python.code ├── regexdna.5.python.log ├── regexdna.5.python3.code ├── regexdna.5.python3.log ├── regexdna.5.rustpython.code ├── regexdna.5.rustpython.log ├── regexdna.5.shedskin.code ├── regexdna.5.shedskin.log ├── revcomp.3.cython.code ├── revcomp.3.cython.log ├── revcomp.3.graal.code ├── revcomp.3.graal.log ├── revcomp.3.grumpy.code ├── revcomp.3.grumpy.log ├── revcomp.3.ipy.code ├── revcomp.3.ipy.log ├── revcomp.3.jython.code ├── revcomp.3.jython.log ├── revcomp.3.micropython.code ├── revcomp.3.micropython.log ├── revcomp.3.nuitka.code ├── revcomp.3.nuitka.log ├── revcomp.3.pypy.code ├── revcomp.3.pypy.log ├── revcomp.3.pypy3.code ├── revcomp.3.pypy3.log ├── revcomp.3.pyston.code ├── revcomp.3.pyston.log ├── revcomp.3.python-dev.code ├── revcomp.3.python-dev.log ├── revcomp.3.python.code ├── revcomp.3.python.log ├── revcomp.3.python3.code ├── revcomp.3.python3.log ├── revcomp.3.rustpython.code ├── revcomp.3.rustpython.log ├── revcomp.3.shedskin.code ├── revcomp.3.shedskin.log ├── revcomp.4.cython.code ├── revcomp.4.cython.log ├── revcomp.4.graal.code ├── revcomp.4.graal.log ├── revcomp.4.grumpy.code ├── revcomp.4.grumpy.log ├── revcomp.4.ipy.code ├── revcomp.4.ipy.log ├── revcomp.4.jython.code ├── revcomp.4.jython.log ├── revcomp.4.micropython.code ├── revcomp.4.micropython.log ├── revcomp.4.nuitka.code ├── revcomp.4.nuitka.log ├── revcomp.4.pypy.code ├── revcomp.4.pypy.log ├── revcomp.4.pypy3.code ├── revcomp.4.pypy3.log ├── revcomp.4.pyston.code ├── revcomp.4.pyston.log ├── revcomp.4.python-dev.code ├── revcomp.4.python-dev.log ├── revcomp.4.python.code ├── revcomp.4.python.log ├── revcomp.4.python3.code ├── revcomp.4.python3.log ├── revcomp.4.rustpython.code ├── revcomp.4.rustpython.log ├── revcomp.4.shedskin.code ├── revcomp.4.shedskin.log ├── revcomp.5.cython.code ├── revcomp.5.cython.log ├── revcomp.5.graal.code ├── revcomp.5.graal.log ├── revcomp.5.grumpy.code ├── revcomp.5.grumpy.log ├── revcomp.5.ipy.code ├── revcomp.5.ipy.log ├── revcomp.5.jython.code ├── revcomp.5.jython.log ├── revcomp.5.micropython.code ├── revcomp.5.micropython.log ├── revcomp.5.nuitka.code ├── revcomp.5.nuitka.log ├── revcomp.5.pypy.code ├── revcomp.5.pypy.log ├── revcomp.5.pypy3.code ├── revcomp.5.pypy3.log ├── revcomp.5.pyston.code ├── revcomp.5.pyston.log ├── revcomp.5.python-dev.code ├── revcomp.5.python-dev.log ├── revcomp.5.python.code ├── revcomp.5.python.log ├── revcomp.5.python3.code ├── revcomp.5.python3.log ├── revcomp.5.rustpython.code ├── revcomp.5.rustpython.log ├── revcomp.5.shedskin.code ├── revcomp.5.shedskin.log ├── revcomp.6.graal.code ├── revcomp.6.graal.log ├── revcomp.6.micropython.code ├── revcomp.6.micropython.log ├── revcomp.6.nuitka.code ├── revcomp.6.nuitka.log ├── revcomp.6.pypy3.code ├── revcomp.6.pypy3.log ├── revcomp.6.pyston.code ├── revcomp.6.pyston.log ├── revcomp.6.python-dev.code ├── revcomp.6.python-dev.log ├── revcomp.6.python3.code ├── revcomp.6.python3.log ├── revcomp.6.rustpython.code ├── revcomp.6.rustpython.log ├── richards.1.cython.code ├── richards.1.cython.log ├── richards.1.graal.code ├── richards.1.graal.log ├── richards.1.grumpy.code ├── richards.1.grumpy.log ├── richards.1.ipy.code ├── richards.1.ipy.log ├── richards.1.jython.code ├── richards.1.jython.log ├── richards.1.micropython.code ├── richards.1.micropython.log ├── richards.1.nuitka.code ├── richards.1.nuitka.log ├── richards.1.py.code ├── richards.1.py.log ├── richards.1.pypy.code ├── richards.1.pypy.log ├── richards.1.pypy3.code ├── richards.1.pypy3.log ├── richards.1.pyston.code ├── richards.1.pyston.log ├── richards.1.python-dev.code ├── richards.1.python-dev.log ├── richards.1.python.code ├── richards.1.python.log ├── richards.1.python3.code ├── richards.1.python3.log ├── richards.1.rustpython.code ├── richards.1.rustpython.log ├── richards.1.shedskin.code ├── richards.1.shedskin.log ├── spectralnorm.1.numba.code ├── spectralnorm.1.numba.log ├── spectralnorm.2.cython.code ├── spectralnorm.2.cython.log ├── spectralnorm.2.graal.code ├── spectralnorm.2.graal.log ├── spectralnorm.2.grumpy.code ├── spectralnorm.2.grumpy.log ├── spectralnorm.2.ipy.code ├── spectralnorm.2.ipy.log ├── spectralnorm.2.jython.code ├── spectralnorm.2.jython.log ├── spectralnorm.2.micropython.code ├── spectralnorm.2.micropython.log ├── spectralnorm.2.nuitka.code ├── spectralnorm.2.nuitka.log ├── spectralnorm.2.numba.code ├── spectralnorm.2.numba.log ├── spectralnorm.2.pypy.code ├── spectralnorm.2.pypy.log ├── spectralnorm.2.pypy3.code ├── spectralnorm.2.pypy3.log ├── spectralnorm.2.pyston.code ├── spectralnorm.2.pyston.log ├── spectralnorm.2.python-dev.code ├── spectralnorm.2.python-dev.log ├── spectralnorm.2.python.code ├── spectralnorm.2.python.log ├── spectralnorm.2.python3.code ├── spectralnorm.2.python3.log ├── spectralnorm.2.rustpython.code ├── spectralnorm.2.rustpython.log ├── spectralnorm.2.shedskin.code ├── spectralnorm.2.shedskin.log ├── spectralnorm.3.graal.code ├── spectralnorm.3.graal.log ├── spectralnorm.3.micropython.code ├── spectralnorm.3.micropython.log ├── spectralnorm.3.nuitka.code ├── spectralnorm.3.nuitka.log ├── spectralnorm.3.pypy3.code ├── spectralnorm.3.pypy3.log ├── spectralnorm.3.pyston.code ├── spectralnorm.3.pyston.log ├── spectralnorm.3.python-dev.code ├── spectralnorm.3.python-dev.log ├── spectralnorm.3.python3.code ├── spectralnorm.3.python3.log ├── spectralnorm.3.rustpython.code ├── spectralnorm.3.rustpython.log ├── spectralnorm.5.cython.code ├── spectralnorm.5.cython.log ├── spectralnorm.5.graal.code ├── spectralnorm.5.graal.log ├── spectralnorm.5.grumpy.code ├── spectralnorm.5.grumpy.log ├── spectralnorm.5.ipy.code ├── spectralnorm.5.ipy.log ├── spectralnorm.5.jython.code ├── spectralnorm.5.jython.log ├── spectralnorm.5.micropython.code ├── spectralnorm.5.micropython.log ├── spectralnorm.5.nuitka.code ├── spectralnorm.5.nuitka.log ├── spectralnorm.5.pypy.code ├── spectralnorm.5.pypy.log ├── spectralnorm.5.pypy3.code ├── spectralnorm.5.pypy3.log ├── spectralnorm.5.pyston.code ├── spectralnorm.5.pyston.log ├── spectralnorm.5.python-dev.code ├── spectralnorm.5.python-dev.log ├── spectralnorm.5.python.code ├── spectralnorm.5.python.log ├── spectralnorm.5.python3.code ├── spectralnorm.5.python3.log ├── spectralnorm.5.rustpython.code ├── spectralnorm.5.rustpython.log ├── spectralnorm.5.shedskin.code ├── spectralnorm.5.shedskin.log ├── spectralnorm.6.cython.code ├── spectralnorm.6.cython.log ├── spectralnorm.6.graal.code ├── spectralnorm.6.graal.log ├── spectralnorm.6.grumpy.code ├── spectralnorm.6.grumpy.log ├── spectralnorm.6.ipy.code ├── spectralnorm.6.ipy.log ├── spectralnorm.6.jython.code ├── spectralnorm.6.jython.log ├── spectralnorm.6.micropython.code ├── spectralnorm.6.micropython.log ├── spectralnorm.6.nuitka.code ├── spectralnorm.6.nuitka.log ├── spectralnorm.6.pypy.code ├── spectralnorm.6.pypy.log ├── spectralnorm.6.pypy3.code ├── spectralnorm.6.pypy3.log ├── spectralnorm.6.pyston.code ├── spectralnorm.6.pyston.log ├── spectralnorm.6.python-dev.code ├── spectralnorm.6.python-dev.log ├── spectralnorm.6.python.code ├── spectralnorm.6.python.log ├── spectralnorm.6.python3.code ├── spectralnorm.6.python3.log ├── spectralnorm.6.rustpython.code ├── spectralnorm.6.rustpython.log ├── spectralnorm.6.shedskin.code ├── spectralnorm.6.shedskin.log ├── spectralnorm.8.cython.code ├── spectralnorm.8.cython.log ├── spectralnorm.8.graal.code ├── spectralnorm.8.graal.log ├── spectralnorm.8.grumpy.code ├── spectralnorm.8.grumpy.log ├── spectralnorm.8.ipy.code ├── spectralnorm.8.ipy.log ├── spectralnorm.8.jython.code ├── spectralnorm.8.jython.log ├── spectralnorm.8.micropython.code ├── spectralnorm.8.micropython.log ├── spectralnorm.8.nuitka.code ├── spectralnorm.8.nuitka.log ├── spectralnorm.8.pypy.code ├── spectralnorm.8.pypy.log ├── spectralnorm.8.pypy3.code ├── spectralnorm.8.pypy3.log ├── spectralnorm.8.pyston.code ├── spectralnorm.8.pyston.log ├── spectralnorm.8.python-dev.code ├── spectralnorm.8.python-dev.log ├── spectralnorm.8.python.code ├── spectralnorm.8.python.log ├── spectralnorm.8.python3.code ├── spectralnorm.8.python3.log ├── spectralnorm.8.rustpython.code ├── spectralnorm.8.rustpython.log ├── spectralnorm.8.shedskin.code ├── spectralnorm.8.shedskin.log ├── templates.1.cython.code ├── templates.1.cython.log ├── templates.1.graal.code ├── templates.1.graal.log ├── templates.1.grumpy.code ├── templates.1.grumpy.log ├── templates.1.ipy.code ├── templates.1.ipy.log ├── templates.1.jython.code ├── templates.1.jython.log ├── templates.1.micropython.code ├── templates.1.micropython.log ├── templates.1.nuitka.code ├── templates.1.nuitka.log ├── templates.1.numba.code ├── templates.1.numba.log ├── templates.1.pypy.code ├── templates.1.pypy.log ├── templates.1.pypy3.code ├── templates.1.pypy3.log ├── templates.1.pyston.code ├── templates.1.pyston.log ├── templates.1.python-dev.code ├── templates.1.python-dev.log ├── templates.1.python.code ├── templates.1.python.log ├── templates.1.python3.code ├── templates.1.python3.log ├── templates.1.rustpython.code ├── templates.1.rustpython.log ├── templates.1.shedskin.code ├── templates.1.shedskin.log ├── threadring.1.cython.code ├── threadring.1.cython.log ├── threadring.1.graal.code ├── threadring.1.graal.log ├── threadring.1.grumpy.code ├── threadring.1.grumpy.log ├── threadring.1.ipy.code ├── threadring.1.ipy.log ├── threadring.1.jython.code ├── threadring.1.jython.log ├── threadring.1.micropython.code ├── threadring.1.micropython.log ├── threadring.1.nuitka.code ├── threadring.1.nuitka.log ├── threadring.1.pypy.code ├── threadring.1.pypy.log ├── threadring.1.pypy3.code ├── threadring.1.pypy3.log ├── threadring.1.pyston.code ├── threadring.1.pyston.log ├── threadring.1.python-dev.code ├── threadring.1.python-dev.log ├── threadring.1.python.code ├── threadring.1.python.log ├── threadring.1.python3.code ├── threadring.1.python3.log ├── threadring.1.rustpython.code ├── threadring.1.rustpython.log ├── threadring.1.shedskin.code ├── threadring.1.shedskin.log ├── threadring.2.graal.code ├── threadring.2.graal.log ├── threadring.2.micropython.code ├── threadring.2.micropython.log ├── threadring.2.nuitka.code ├── threadring.2.nuitka.log ├── threadring.2.pypy3.code ├── threadring.2.pypy3.log ├── threadring.2.pyston.code ├── threadring.2.pyston.log ├── threadring.2.python-dev.code ├── threadring.2.python-dev.log ├── threadring.2.python3.code ├── threadring.2.python3.log ├── threadring.2.rustpython.code ├── threadring.2.rustpython.log ├── threadring.3.graal.code ├── threadring.3.graal.log ├── threadring.3.micropython.code ├── threadring.3.micropython.log ├── threadring.3.nuitka.code ├── threadring.3.nuitka.log ├── threadring.3.pypy3.code ├── threadring.3.pypy3.log ├── threadring.3.pyston.code ├── threadring.3.pyston.log ├── threadring.3.python-dev.code ├── threadring.3.python-dev.log ├── threadring.3.python3.code ├── threadring.3.python3.log ├── threadring.3.rustpython.code └── threadring.3.rustpython.log ├── compare.php ├── config.php ├── cython.php ├── data ├── data.csv ├── ndata.csv └── u64q_bulkdata.csv.bz2 ├── favicon.ico ├── favicon_16x16.png ├── favicon_ico_11dec2009.php ├── graal.php ├── grumpy.php ├── include.csv ├── index.php ├── iofile.php ├── ipy.php ├── jython.php ├── measurements.php ├── micropython.php ├── miscfile.php ├── nuitka.php ├── numba.php ├── performance.php ├── program.php ├── pypy.php ├── pypy3.php ├── pyston.php ├── python-dev.php ├── python.php ├── python3.php ├── rustpython.php ├── shedskin.php ├── summarydata.php ├── version ├── ats-version.php ├── clean-version.php ├── clojure-version.php ├── csharp-version.php ├── dart-version.php ├── erlang-version.php ├── fpascal-version.php ├── fsharp-version.php ├── gcc-version.php ├── ghc-version.php ├── gnat-version.php ├── go-version.php ├── gpp-version.php ├── hipe-version.php ├── ifc-version.php ├── java-version.php ├── jruby-version.php ├── lua-version.php ├── ocaml-version.php ├── oz-version.php ├── perl-version.php ├── php-version.php ├── python3-version.php ├── racket-version.php ├── ruby-version.php ├── rust-version.php ├── sbcl-version.php ├── scala-version.php ├── v8-version.php ├── vw-version.php └── yarv-version.php ├── which-programs-are-best.php └── which-programs-are-fastest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/README.md -------------------------------------------------------------------------------- /bencher/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | *.pyc 3 | -------------------------------------------------------------------------------- /bencher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/LICENSE -------------------------------------------------------------------------------- /bencher/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/README -------------------------------------------------------------------------------- /bencher/bin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/LICENSE -------------------------------------------------------------------------------- /bencher/bin/bencher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/bencher.py -------------------------------------------------------------------------------- /bencher/bin/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/domain.py -------------------------------------------------------------------------------- /bencher/bin/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/license.txt -------------------------------------------------------------------------------- /bencher/bin/planA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/planA.py -------------------------------------------------------------------------------- /bencher/bin/uselinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/bin/uselinux.py -------------------------------------------------------------------------------- /bencher/data/knucleotide-input10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/data/knucleotide-input10000.txt -------------------------------------------------------------------------------- /bencher/data/regexdna-input10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/data/regexdna-input10000.txt -------------------------------------------------------------------------------- /bencher/data/revcomp-input1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/data/revcomp-input1000.txt -------------------------------------------------------------------------------- /bencher/highlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/LICENSE -------------------------------------------------------------------------------- /bencher/highlight/filetypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/filetypes.conf -------------------------------------------------------------------------------- /bencher/highlight/langDefs/erl.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/langDefs/erl.lang -------------------------------------------------------------------------------- /bencher/highlight/langDefs/go.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/langDefs/go.lang -------------------------------------------------------------------------------- /bencher/highlight/langDefs/haskell.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/langDefs/haskell.lang -------------------------------------------------------------------------------- /bencher/highlight/langDefs/lisp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/langDefs/lisp.lang -------------------------------------------------------------------------------- /bencher/highlight/langDefs/oz.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/langDefs/oz.lang -------------------------------------------------------------------------------- /bencher/highlight/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/highlight/license.txt -------------------------------------------------------------------------------- /bencher/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/license.txt -------------------------------------------------------------------------------- /bencher/makefiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/makefiles/LICENSE -------------------------------------------------------------------------------- /bencher/makefiles/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/makefiles/license.txt -------------------------------------------------------------------------------- /bencher/makefiles/my.linux.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/makefiles/my.linux.Makefile -------------------------------------------------------------------------------- /bencher/makefiles/my.linux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/makefiles/my.linux.ini -------------------------------------------------------------------------------- /bencher/programs/fasta/fasta.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fasta/fasta.cython -------------------------------------------------------------------------------- /bencher/programs/fasta/fasta.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fasta/fasta.python -------------------------------------------------------------------------------- /bencher/programs/fasta/fasta.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fasta/fasta.python3 -------------------------------------------------------------------------------- /bencher/programs/fib50/fib50.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fib50/fib50.cython -------------------------------------------------------------------------------- /bencher/programs/fib50/fib50.grumpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fib50/fib50.grumpy -------------------------------------------------------------------------------- /bencher/programs/fib50/fib50.numba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fib50/fib50.numba -------------------------------------------------------------------------------- /bencher/programs/fib50/fib50.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fib50/fib50.python -------------------------------------------------------------------------------- /bencher/programs/fib50/fib50.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fib50/fib50.python3 -------------------------------------------------------------------------------- /bencher/programs/fibonacci/fibonacci.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fibonacci/fibonacci.cython -------------------------------------------------------------------------------- /bencher/programs/fibonacci/fibonacci.numba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fibonacci/fibonacci.numba -------------------------------------------------------------------------------- /bencher/programs/fibonacci/fibonacci.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fibonacci/fibonacci.python -------------------------------------------------------------------------------- /bencher/programs/fibonacci/fibonacci.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/fibonacci/fibonacci.python3 -------------------------------------------------------------------------------- /bencher/programs/iobench/iobench.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/iobench/iobench.cython -------------------------------------------------------------------------------- /bencher/programs/iobench/iobench.numba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/iobench/iobench.numba -------------------------------------------------------------------------------- /bencher/programs/iobench/iobench.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/iobench/iobench.python -------------------------------------------------------------------------------- /bencher/programs/iobench/iobench.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/iobench/iobench.python3 -------------------------------------------------------------------------------- /bencher/programs/jsonbench/jsonbench.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/jsonbench/jsonbench.cython -------------------------------------------------------------------------------- /bencher/programs/jsonbench/jsonbench.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/jsonbench/jsonbench.python -------------------------------------------------------------------------------- /bencher/programs/jsonbench/jsonbench.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/jsonbench/jsonbench.python3 -------------------------------------------------------------------------------- /bencher/programs/knucleotide/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/knucleotide/LICENSE -------------------------------------------------------------------------------- /bencher/programs/mandelbrot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/mandelbrot/LICENSE -------------------------------------------------------------------------------- /bencher/programs/meteor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/meteor/LICENSE -------------------------------------------------------------------------------- /bencher/programs/meteor/meteor.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/meteor/meteor.cython -------------------------------------------------------------------------------- /bencher/programs/meteor/meteor.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/meteor/meteor.python -------------------------------------------------------------------------------- /bencher/programs/meteor/meteor.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/meteor/meteor.python3 -------------------------------------------------------------------------------- /bencher/programs/nbody/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/nbody/LICENSE -------------------------------------------------------------------------------- /bencher/programs/nbody/nbody.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/nbody/nbody.cython -------------------------------------------------------------------------------- /bencher/programs/nbody/nbody.numba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/nbody/nbody.numba -------------------------------------------------------------------------------- /bencher/programs/nbody/nbody.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/nbody/nbody.python -------------------------------------------------------------------------------- /bencher/programs/nbody/nbody.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/nbody/nbody.python3 -------------------------------------------------------------------------------- /bencher/programs/pidigits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pidigits/LICENSE -------------------------------------------------------------------------------- /bencher/programs/pidigits/pidigits.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pidigits/pidigits.cython -------------------------------------------------------------------------------- /bencher/programs/pidigits/pidigits.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pidigits/pidigits.python -------------------------------------------------------------------------------- /bencher/programs/pidigits/pidigits.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pidigits/pidigits.python3 -------------------------------------------------------------------------------- /bencher/programs/pystone/pystone.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pystone/pystone.cython -------------------------------------------------------------------------------- /bencher/programs/pystone/pystone.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pystone/pystone.python -------------------------------------------------------------------------------- /bencher/programs/pystone/pystone.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/pystone/pystone.python3 -------------------------------------------------------------------------------- /bencher/programs/regexdna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/regexdna/LICENSE -------------------------------------------------------------------------------- /bencher/programs/regexdna/regexdna.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/regexdna/regexdna.cython -------------------------------------------------------------------------------- /bencher/programs/regexdna/regexdna.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/regexdna/regexdna.python -------------------------------------------------------------------------------- /bencher/programs/regexdna/regexdna.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/regexdna/regexdna.python3 -------------------------------------------------------------------------------- /bencher/programs/revcomp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/revcomp/LICENSE -------------------------------------------------------------------------------- /bencher/programs/richards/richards.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/richards/richards.cython -------------------------------------------------------------------------------- /bencher/programs/richards/richards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/richards/richards.py -------------------------------------------------------------------------------- /bencher/programs/richards/richards.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/richards/richards.python -------------------------------------------------------------------------------- /bencher/programs/richards/richards.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/richards/richards.python3 -------------------------------------------------------------------------------- /bencher/programs/spectralnorm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/spectralnorm/LICENSE -------------------------------------------------------------------------------- /bencher/programs/templates/templates.cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/templates/templates.cython -------------------------------------------------------------------------------- /bencher/programs/templates/templates.numba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/templates/templates.numba -------------------------------------------------------------------------------- /bencher/programs/templates/templates.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/templates/templates.python -------------------------------------------------------------------------------- /bencher/programs/templates/templates.python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/programs/templates/templates.python3 -------------------------------------------------------------------------------- /bencher/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/readme.txt -------------------------------------------------------------------------------- /bencher/run_markup/.1.pystone.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/.1.pystone.code -------------------------------------------------------------------------------- /bencher/run_markup/.1.regexdna.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/.1.regexdna.code -------------------------------------------------------------------------------- /bencher/run_markup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/LICENSE -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.6.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.6.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.6.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.6.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.6.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.6.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.6.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.6.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.7.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.7.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.7.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.7.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.7.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.7.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/binarytrees.7.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/binarytrees.7.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/chameneosredux.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/chameneosredux.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.1.c.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.1.c.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.1.html.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.1.html.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.1.pyx.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.1.pyx.code -------------------------------------------------------------------------------- /bencher/run_markup/fannkuchredux.34m.so.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fannkuchredux.34m.so.code -------------------------------------------------------------------------------- /bencher/run_markup/fast.5.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fast.5.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.c.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.c.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.html.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.html.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.pyx.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.pyx.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.2.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.2.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.3.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.3.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.34m.so.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.34m.so.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.4.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.4.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fasta.5.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fasta.5.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.6.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.6.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.6.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.6.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.6.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.6.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.6.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.6.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.6.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.6.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.7.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.7.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.7.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.7.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.7.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.7.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.7.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.7.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fastaredux.7.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fastaredux.7.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/fib50.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fib50.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.2.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.2.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.python.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/fibonacci.3.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/fibonacci.3.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/iobench.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/iobench.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/jsonbench.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/jsonbench.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.2.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.2.python.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/knucleotide.8.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/knucleotide.8.python.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.python.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.2.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.2.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.5.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.5.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.5.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.5.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.python.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.6.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.6.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.7.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.7.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.7.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.7.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.7.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.7.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/mandelbrot.7.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/mandelbrot.7.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.2.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.2.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/meteor.3.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/meteor.3.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.micropython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.micropython.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/nbody.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/nbody.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.python.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.2.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.2.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.python.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.3.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.3.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.python.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.4.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.4.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pidigits.5.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pidigits.5.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/pystone.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/pystone.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.python.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/regexdna.5.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/regexdna.5.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.3.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.3.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.4.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.4.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.5.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.5.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.python-dev.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.python-dev.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/revcomp.6.rustpython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/revcomp.6.rustpython.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.cython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.cython.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.grumpy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.grumpy.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.jython.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.jython.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.nuitka.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.nuitka.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.py.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.py.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.pyston.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.pyston.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.python.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.python.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.python3.5.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.python3.5.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.python3.6.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.python3.6.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.python3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.python3.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.python35.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.python35.code -------------------------------------------------------------------------------- /bencher/run_markup/richards.1.shedskin.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/richards.1.shedskin.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.2.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.2.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.2.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.2.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.2.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.2.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.2.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.2.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.2.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.2.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.3.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.3.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.3.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.3.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.5.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.5.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.5.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.5.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.5.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.5.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.5.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.5.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.5.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.5.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.6.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.6.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.6.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.6.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.6.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.6.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.6.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.6.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.6.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.6.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.8.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.8.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.8.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.8.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.8.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.8.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/spectralnorm.8.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/spectralnorm.8.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/templates.1.graal.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/templates.1.graal.code -------------------------------------------------------------------------------- /bencher/run_markup/templates.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/templates.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/templates.1.numba.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/templates.1.numba.code -------------------------------------------------------------------------------- /bencher/run_markup/templates.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/templates.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/templates.1.pypy3.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/templates.1.pypy3.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.1.c.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.1.c.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.1.html.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.1.html.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.1.ipy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.1.ipy.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.1.pypy.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.1.pypy.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.1.pyx.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.1.pyx.code -------------------------------------------------------------------------------- /bencher/run_markup/threadring.gnu.so.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/run_markup/threadring.gnu.so.code -------------------------------------------------------------------------------- /bencher/summary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/summary/LICENSE -------------------------------------------------------------------------------- /bencher/summary/all_measurements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/summary/all_measurements.csv -------------------------------------------------------------------------------- /bencher/summary/fastest_measurements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/summary/fastest_measurements.csv -------------------------------------------------------------------------------- /bencher/summary/filtered_measurements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/summary/filtered_measurements.csv -------------------------------------------------------------------------------- /bencher/tmp/revcomp/revcomp-input1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/bencher/tmp/revcomp/revcomp-input1000.txt -------------------------------------------------------------------------------- /clear_lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/clear_lang.sh -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/license.txt -------------------------------------------------------------------------------- /new_lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/new_lang.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/readme.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/setup.cfg -------------------------------------------------------------------------------- /website/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/README -------------------------------------------------------------------------------- /website/about/binarytrees-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/binarytrees-about.tpl.php -------------------------------------------------------------------------------- /website/about/fannkuch-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/fannkuch-about.tpl.php -------------------------------------------------------------------------------- /website/about/fannkuchredux-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/fannkuchredux-about.tpl.php -------------------------------------------------------------------------------- /website/about/fasta-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/fasta-about.tpl.php -------------------------------------------------------------------------------- /website/about/fastaredux-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/fastaredux-about.tpl.php -------------------------------------------------------------------------------- /website/about/fulldata-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/fulldata-about.tpl.php -------------------------------------------------------------------------------- /website/about/knucleotide-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/knucleotide-about.tpl.php -------------------------------------------------------------------------------- /website/about/mandelbrot-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/mandelbrot-about.tpl.php -------------------------------------------------------------------------------- /website/about/meteor-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/meteor-about.tpl.php -------------------------------------------------------------------------------- /website/about/nbody-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/nbody-about.tpl.php -------------------------------------------------------------------------------- /website/about/pidigits-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/pidigits-about.tpl.php -------------------------------------------------------------------------------- /website/about/programs/binarytrees-go-2-about.tpl.php: -------------------------------------------------------------------------------- 1 |

Free list.

2 | 3 | -------------------------------------------------------------------------------- /website/about/programs/binarytrees-go-3-about.tpl.php: -------------------------------------------------------------------------------- 1 |

Custom pool implementation.

2 | 3 | -------------------------------------------------------------------------------- /website/about/programs/binarytrees-go-6-about.tpl.php: -------------------------------------------------------------------------------- 1 |

Custom pool implementation.

2 | -------------------------------------------------------------------------------- /website/about/programs/blank-about.tpl.php: -------------------------------------------------------------------------------- 1 |

 

2 | -------------------------------------------------------------------------------- /website/about/python3-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/python3-about.tpl.php -------------------------------------------------------------------------------- /website/about/regexdna-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/regexdna-about.tpl.php -------------------------------------------------------------------------------- /website/about/revcomp-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/revcomp-about.tpl.php -------------------------------------------------------------------------------- /website/about/spectralnorm-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/spectralnorm-about.tpl.php -------------------------------------------------------------------------------- /website/about/threadring-about.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/about/threadring-about.tpl.php -------------------------------------------------------------------------------- /website/desc/exclude.csv: -------------------------------------------------------------------------------- 1 | binarytrees\php\4 2 | -------------------------------------------------------------------------------- /website/desc/lang.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/desc/lang.csv -------------------------------------------------------------------------------- /website/desc/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/desc/test.csv -------------------------------------------------------------------------------- /website/lib/boxplot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/boxplot.php -------------------------------------------------------------------------------- /website/lib/boxplot.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/boxplot.tpl.php -------------------------------------------------------------------------------- /website/lib/chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chart.php -------------------------------------------------------------------------------- /website/lib/chartbox-simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartbox-simple.php -------------------------------------------------------------------------------- /website/lib/chartbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartbox.php -------------------------------------------------------------------------------- /website/lib/chartfreq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartfreq.php -------------------------------------------------------------------------------- /website/lib/chartscore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartscore.php -------------------------------------------------------------------------------- /website/lib/chartshape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartshape.php -------------------------------------------------------------------------------- /website/lib/chartvs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/chartvs.php -------------------------------------------------------------------------------- /website/lib/compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/compare.php -------------------------------------------------------------------------------- /website/lib/compare.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/compare.tpl.php -------------------------------------------------------------------------------- /website/lib/comparetimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/comparetimes.php -------------------------------------------------------------------------------- /website/lib/comparetimes.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/comparetimes.tpl.php -------------------------------------------------------------------------------- /website/lib/freq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/freq.php -------------------------------------------------------------------------------- /website/lib/iofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/iofile.php -------------------------------------------------------------------------------- /website/lib/iofile.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/iofile.tpl.php -------------------------------------------------------------------------------- /website/lib/language.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/language.tpl.php -------------------------------------------------------------------------------- /website/lib/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib.php -------------------------------------------------------------------------------- /website/lib/lib_chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib_chart.php -------------------------------------------------------------------------------- /website/lib/lib_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib_common.php -------------------------------------------------------------------------------- /website/lib/lib_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib_data.php -------------------------------------------------------------------------------- /website/lib/lib_scorecard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib_scorecard.php -------------------------------------------------------------------------------- /website/lib/lib_whitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/lib_whitelist.php -------------------------------------------------------------------------------- /website/lib/measurements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/measurements.php -------------------------------------------------------------------------------- /website/lib/measurements.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/measurements.tpl.php -------------------------------------------------------------------------------- /website/lib/median.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/median.php -------------------------------------------------------------------------------- /website/lib/median.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/median.tpl.php -------------------------------------------------------------------------------- /website/lib/misc.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/misc.tpl.php -------------------------------------------------------------------------------- /website/lib/miscfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/miscfile.php -------------------------------------------------------------------------------- /website/lib/page.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/page.tpl.php -------------------------------------------------------------------------------- /website/lib/performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/performance.php -------------------------------------------------------------------------------- /website/lib/performance.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/performance.tpl.php -------------------------------------------------------------------------------- /website/lib/play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/play.php -------------------------------------------------------------------------------- /website/lib/play.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/play.tpl.php -------------------------------------------------------------------------------- /website/lib/pre.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/pre.tpl.php -------------------------------------------------------------------------------- /website/lib/program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/program.php -------------------------------------------------------------------------------- /website/lib/program.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/program.tpl.php -------------------------------------------------------------------------------- /website/lib/scorecard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/scorecard.php -------------------------------------------------------------------------------- /website/lib/scorecard.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/scorecard.tpl.php -------------------------------------------------------------------------------- /website/lib/shapes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/shapes.php -------------------------------------------------------------------------------- /website/lib/shapes.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/shapes.tpl.php -------------------------------------------------------------------------------- /website/lib/simplepage.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/simplepage.tpl.php -------------------------------------------------------------------------------- /website/lib/summarydata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/summarydata.php -------------------------------------------------------------------------------- /website/lib/summarydata.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/summarydata.tpl.php -------------------------------------------------------------------------------- /website/lib/switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/lib/switch.php -------------------------------------------------------------------------------- /website/misc/benchmarking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/misc/benchmarking.php -------------------------------------------------------------------------------- /website/misc/license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/misc/license.php -------------------------------------------------------------------------------- /website/websites/analyticstracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/analyticstracking.php -------------------------------------------------------------------------------- /website/websites/benchmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/benchmark.css -------------------------------------------------------------------------------- /website/websites/chartbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/chartbox.php -------------------------------------------------------------------------------- /website/websites/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/config.php -------------------------------------------------------------------------------- /website/websites/download/bencher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/download/bencher.zip -------------------------------------------------------------------------------- /website/websites/download/fannkuchredux-output.txt: -------------------------------------------------------------------------------- 1 | 228 2 | Pfannkuchen(7) = 16 3 | -------------------------------------------------------------------------------- /website/websites/download/spectralnorm-output.txt: -------------------------------------------------------------------------------- 1 | 1.274219991 2 | -------------------------------------------------------------------------------- /website/websites/download/threadring-output.txt: -------------------------------------------------------------------------------- 1 | 498 2 | -------------------------------------------------------------------------------- /website/websites/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/favicon.ico -------------------------------------------------------------------------------- /website/websites/favicon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/favicon_16x16.png -------------------------------------------------------------------------------- /website/websites/fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/fresh.png -------------------------------------------------------------------------------- /website/websites/fresh_png_29may2012.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/fresh_png_29may2012.php -------------------------------------------------------------------------------- /website/websites/hint.css: -------------------------------------------------------------------------------- 1 | #hint { display: block; } 2 | -------------------------------------------------------------------------------- /website/websites/hint_css_26jan2011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/hint_css_26jan2011.php -------------------------------------------------------------------------------- /website/websites/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/index.php -------------------------------------------------------------------------------- /website/websites/license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/license.php -------------------------------------------------------------------------------- /website/websites/mandelbrot200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/mandelbrot200.png -------------------------------------------------------------------------------- /website/websites/more.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/more.php -------------------------------------------------------------------------------- /website/websites/nohint.css: -------------------------------------------------------------------------------- 1 | #hint { display: none; } 2 | -------------------------------------------------------------------------------- /website/websites/nohint_css_26jan2011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/nohint_css_26jan2011.php -------------------------------------------------------------------------------- /website/websites/open_source_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/open_source_button.png -------------------------------------------------------------------------------- /website/websites/play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/play.php -------------------------------------------------------------------------------- /website/websites/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/robots.txt -------------------------------------------------------------------------------- /website/websites/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/sitemap.xml -------------------------------------------------------------------------------- /website/websites/u64q/benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/benchmark.php -------------------------------------------------------------------------------- /website/websites/u64q/chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chart.php -------------------------------------------------------------------------------- /website/websites/u64q/chartbox-simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chartbox-simple.php -------------------------------------------------------------------------------- /website/websites/u64q/chartbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chartbox.php -------------------------------------------------------------------------------- /website/websites/u64q/chartscore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chartscore.php -------------------------------------------------------------------------------- /website/websites/u64q/chartshape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chartshape.php -------------------------------------------------------------------------------- /website/websites/u64q/chartvs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/chartvs.php -------------------------------------------------------------------------------- /website/websites/u64q/clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/clean.php -------------------------------------------------------------------------------- /website/websites/u64q/compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/compare.php -------------------------------------------------------------------------------- /website/websites/u64q/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/config.php -------------------------------------------------------------------------------- /website/websites/u64q/cython.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/cython.php -------------------------------------------------------------------------------- /website/websites/u64q/data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/data/data.csv -------------------------------------------------------------------------------- /website/websites/u64q/data/ndata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/data/ndata.csv -------------------------------------------------------------------------------- /website/websites/u64q/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/favicon.ico -------------------------------------------------------------------------------- /website/websites/u64q/favicon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/favicon_16x16.png -------------------------------------------------------------------------------- /website/websites/u64q/graal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/graal.php -------------------------------------------------------------------------------- /website/websites/u64q/grumpy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/grumpy.php -------------------------------------------------------------------------------- /website/websites/u64q/include.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/include.csv -------------------------------------------------------------------------------- /website/websites/u64q/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/index.php -------------------------------------------------------------------------------- /website/websites/u64q/iofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/iofile.php -------------------------------------------------------------------------------- /website/websites/u64q/ipy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/ipy.php -------------------------------------------------------------------------------- /website/websites/u64q/jython.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/jython.php -------------------------------------------------------------------------------- /website/websites/u64q/measurements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/measurements.php -------------------------------------------------------------------------------- /website/websites/u64q/micropython.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/micropython.php -------------------------------------------------------------------------------- /website/websites/u64q/miscfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/miscfile.php -------------------------------------------------------------------------------- /website/websites/u64q/nuitka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/nuitka.php -------------------------------------------------------------------------------- /website/websites/u64q/numba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/numba.php -------------------------------------------------------------------------------- /website/websites/u64q/performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/performance.php -------------------------------------------------------------------------------- /website/websites/u64q/program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/program.php -------------------------------------------------------------------------------- /website/websites/u64q/pypy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/pypy.php -------------------------------------------------------------------------------- /website/websites/u64q/pypy3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/pypy3.php -------------------------------------------------------------------------------- /website/websites/u64q/pyston.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/pyston.php -------------------------------------------------------------------------------- /website/websites/u64q/python-dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/python-dev.php -------------------------------------------------------------------------------- /website/websites/u64q/python.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/python.php -------------------------------------------------------------------------------- /website/websites/u64q/python3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/python3.php -------------------------------------------------------------------------------- /website/websites/u64q/rustpython.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/rustpython.php -------------------------------------------------------------------------------- /website/websites/u64q/shedskin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/shedskin.php -------------------------------------------------------------------------------- /website/websites/u64q/summarydata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dundee/pybenchmarks/HEAD/website/websites/u64q/summarydata.php -------------------------------------------------------------------------------- /website/websites/u64q/version/ats-version.php: -------------------------------------------------------------------------------- 1 |

ATS/Anairiats version 0.2.9

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/clean-version.php: -------------------------------------------------------------------------------- 1 |

Clean 2.2

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/dart-version.php: -------------------------------------------------------------------------------- 1 |

Dart VM version: 1.1.1 (Wed Jan 15 04:11:49 2014) on "linux_x64"

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/fpascal-version.php: -------------------------------------------------------------------------------- 1 |

Free Pascal Compiler version 2.6.0 [2011/12/23] for x86_64

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/go-version.php: -------------------------------------------------------------------------------- 1 |

go version go1.2 linux/amd64

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/lua-version.php: -------------------------------------------------------------------------------- 1 |

Lua 5.1.2 Copyright (C) 1994-2007 Lua.org, PUC-Rio

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/ocaml-version.php: -------------------------------------------------------------------------------- 1 |

The OCaml native-code compiler, version 4.01.0

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/oz-version.php: -------------------------------------------------------------------------------- 1 |

Mozart Compiler 1.4.0 (20080704) playing Oz 3

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/php-version.php: -------------------------------------------------------------------------------- 1 |

PHP 5.5.0 (cli) (built: Jun 25 2013 23:17:03)

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/racket-version.php: -------------------------------------------------------------------------------- 1 |

Welcome to Racket v6.0.

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/ruby-version.php: -------------------------------------------------------------------------------- 1 |

ruby 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux]

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/rust-version.php: -------------------------------------------------------------------------------- 1 |

Rust 0.9

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/v8-version.php: -------------------------------------------------------------------------------- 1 |

V8 version 1.3.10 [console: dumb]

2 | -------------------------------------------------------------------------------- /website/websites/u64q/version/yarv-version.php: -------------------------------------------------------------------------------- 1 |

ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-linux]

2 | --------------------------------------------------------------------------------