Permalink
Browse files

Get rid of the opypy name -- it's confusing.

It's just byterun now.  There will probably be a new name for a VM
with different bytecodes, but that comes later.
  • Loading branch information...
Andy Chu
Andy Chu committed Apr 8, 2018
1 parent b5d0bb3 commit 4c1ac1b5b935e35f56250a9840124377956fe218
Showing with 4 additions and 4 deletions.
  1. 0 bin/{opypy-osh → osh-byterun}
  2. +2 −2 opy/README.md
  3. +2 −2 opy/demo.sh
File renamed without changes.
View
@@ -71,9 +71,9 @@ Another way I test it like this:
(TODO: these should be gold tests)
Demo: speed difference between OSH under CPython and OSH under byterun/OPyPy:
Demo: speed difference between OSH under CPython and OSH under byterun:
./demo.sh opypy-speed
./demo.sh osh-byterun-speed
TODO:
View
@@ -11,12 +11,12 @@ readonly THIS_DIR=$(cd $(dirname $0) && pwd)
# Show the difference between OSH running under CPython and OSH running under
# byterun.
opypy-speed() {
osh-byterun-speed() {
pushd $THIS_DIR/..
local prog='for i in $(seq 10); do echo $i; done'
time bin/osh -c "$prog"
time bin/opypy-osh -c "$prog"
time bin/osh-byterun -c "$prog"
popd
}

0 comments on commit 4c1ac1b

Please sign in to comment.