[Cython] Fwd: Re: [Speed] New benchmark suite for Python (fwd)

Hi, Probably most of you have seen that already, but maybe some have not? Any interest in getting, e.g. PyPy releases in? -- Sincerely yours, Yury V. Zaytsev -------- Forwarded Message -------- Subject: Re: [Speed] New benchmark suite for Python Date: Wed, 17 Aug 2016 23:47:29 -0500 From: Zachary Ware <zachary.ware+pydev(AT)gmail.com> To: speed(AT)python.org On Wed, Aug 17, 2016 at 7:37 PM, Victor Stinner wrote:
Also, if you're interested in having your interpreter benchmarked on speed.python.org, contact me with clear instructions (preferably in the form of a shell or Python script) on how to build, test, install, and invoke your interpreter from a fresh Ubuntu 16.04 installation. As an example, here's an untested version for CPython 3.x: #!/bin/sh # set up dependencies sudo apt-get build-dep -y python3 sudo apt-get install -y --no-install-recommends mercurial # get the code hg clone https://hg.python.org/cpython cd cpython # build ./configure --prefix=/opt/python/default make -j12 # test make buildbottest TESTOPTS=-j12 # install make install # invoke /opt/python/default/bin/python3 I don't know when I'll have a chance to work on it, but I'd like to get as many projects as possible benchmarked on speed.python.org. Victor: Thanks for getting the new repository set up and for all your work on the new runner! I'm looking forward to trying it out. -- Zach _______________________________________________ Speed mailing list https://mail.python.org/mailman/listinfo/speed
participants (1)
-
Yury V. Zaytsev