Pycket is a Racket/Scheme implementation that is generated using the RPython framework. Given an interpreter written in RPython (in our case a CEK machine interpreter for Racket), RPython framework produces a fast binary for it. It can also add a tracing JIT.
Pycket has two major modes that are maintained and can be built by the targets: pycket-c, and pycket-c-linlets.
pycket-c is Pycket's original design, a rudimentary interpreter for Racket's #%kernel language that relies on the Racket binary to expand a given program. Naturally, this mode requires a Racket installation on the system.
pycket-c-linklet is the full-scale Racket implementation that uses the bootstrapping linklets to self-host Racket. This mode is more recently developed, and while it doesn't require a Racket binary, it requires Racket /src and /collects directories to load the full language.
See the Makefile targets section about how to build both versions.
- Pycket's benchmarks are available at this repository, along with instructions for running them.
- Running Pycket
- Environment Variables
- Troubleshoot
Building Pycket means translating the interpreter (written in RPython) into a binary. You can use the make targets to translate Pycket. We recommend using the PyPy for translation, since it'll be much faster than CPython. If you don't have a pypy binary in your environment, then make targets will default to CPython.
You can clone and make the pypy with make make-pypy target. It will clone the latest pypy repo in Pycket's directory and will start making it. Note that it will take more than 2 hours to build the pypy. It will result in a binary created at pypy/pypy/goal/pypy, and you need to add it to your environment for Pycket's translation to use it.
Additionally, it helps to have the build dependencies of PyPy installed. On a Debian or Ubuntu system:
$ sudo apt-get build-dep pypy
To produce a Pycket executable, use one of the provided make targets to build the binary you need.
make clone-pypy: clones the latest pypy into Pycket's directorymake make-pypy: builds pypy, assumes that pypy directory exists in Pycket's directory
-
make pycket-c: translatesOLD Pycketwith JIT -
make pycket-c-linklets: translatesNEW Pycketwith JIT -
make pycket-c-nojit: translatesOLD Pycketwithout JIT (which may be a lot faster to translate but runs a lot lot slower) -
make pycket-c-linklets-nojit: translatesNEW Pycketwithout JIT (which may be a lot faster to translate but runs a lot lot slower) -
make setup-old-pycket: installs thepycket-langto Racket and runsupdate-pypy -
make expander: generates the expander linklet (it assumes an unmodified Racket install and PLTHOME environment variable -- see the Environment Variables section below) -
make setup-local-racket: if you don't have a Racket and don't want to deal with Racket related stuff, then run this to get a latest running Racket. Make sure to runexport PLTHOME=`pwd`/after it's done (see environment variables section).
You'll need the bootstrapping linklets to self-host Racket. We ship them in Pycket repo, but just in case if you need to regenerate; assuming the Racket source is in place, just run the following to generate and retrieve them.
make bootstrap-linkletsNote that the io target there will also run make rktio which will pull the C headers and the librktio.a static library, as well as generate the whole rktio layer. If this stage fails, you may use --no-io-linklet flag on Pycket to omit using the io linklet entirely.
You can run with the -h option to see the different command line options for each versions:
$ ./pycket-c -h
$ ./pycket-c-linklets -h
You can run pycket-c like the racket binary:
$ ./pycket-c program.rkt
You can also run pycket under plain python (or pypy if its available), like this:
$ ./pycket-slow.sh program
Running the interpreter on CPython or PyPy (i.e. running the targetpycket.py) requires a PYTHONPATH that includes both RPython (that should be the pypy directory cloned above) and pycket (that should be this directory).
You'll need PLTHOME to point to where Racket directory is, and the PLTCOLLECTS to point to the /collects dir.
Then all environment variables need to point to this directory. For example,
PLTCOLLECTS=/racket/collects
Then NEW Pycket needs to know the locations of various directories. In particular, it needs:
PLTEXECFILEto point to the location of theracketbinaryPLTCOLLECTSto point to thecollectsdirectory for the main collectionsPLTCONFIGDIRto point to Racket'setcdirectory that containsconfig.rktd- (optional)
PLTADDONDIRto point to a directory for user-specific Racket configuration, packages, and extensions. It defaults to.racketin USERHOME. - (optional)
PLTUSERHOMEto point to thehomedirectory of the user. It's optional since Pycket will also look at other environment variables to figure out the home directory (e.g.$HOME).
You can also use the command line options to provide these paths, e.g. -X, -G etc.. Run it with -h to see all the commands and options.
$ ./pycket-c-linklets -h
Also, the Makefile reacts to some variables:
PYPYPATHfor when yourpypycheckout is not in this directory. Defaults topypy.PYTESTfor when you don’t want to usepypy’s version of pytest. Defaults to$(PYPYPATH)/pytest.py.RPYTHONfor when you want to use something other than the defaultrpythonscript, but you probably would not want that. Defaults to$(PYPYPATH)/rpython/bin/rpython --batch.
Now that Pycket has two different modes with options, we run the unit tests on each of those settings using the following targets:
make testto run the unit tests onOLD Pycket.make test-new-with-expanderto run the unit tests onNEW Pycketusing the Racket'sexpanderlinklet.make test-new-no-expanderto run the unit tests onNEW Pycketwithout using theexpander.
For the NEW Pycket, using the expander linklet means that for each test expression string we use the read and eval functions in that linklet to read and evaluate the test. If we're not using the expander, on the other hand, then we manually create a linklet containing the expression and instantiate it directly (mostly with an empty target) to get the result.
The NEW Pycket is able to generate and use its own .zo files. For now both the generation and the use are manual.
To generate a .zo file for a .rkt source file, use make compile-file:
$ make compile-file FILE=$(PLTHOME)/racket/collects/racket/private/qq-and-or.rkt
The parameter that enables Racket expander to use compiled code is use-compiled-file-paths, which defaults to pycket-compiled in Pycket. Whenever a module is required, the expander will use the compiled code if it exists, otherwise it will use the source code of the module (read, expand, etc.).
pycket-repl> (#%require racket/private/qq-and-or)
Note that pycket-compiled is a folder that make compile-file is going to generate by itself.
Currently we have two make targets for working with compiled files:
$ make compile-racket-modules
will create .zo files for the predefined list of Racket modules (see compile-file-pycket.rkt).
$ make clean-compiled-files
will remove all the .zo files under the pycket-compiled directories in Racket libraries.
This is a work in progress. We plan to have a make target that compiles all the Racket modules automatically by following the module dependencies (as opposed to using a predefined list of modules with the respective paths).
One of the beautiful perks of bootstrapping Racket is to be able to run on Pykcet some interesting programs implemented in Racket (as long as we have enough runtime support for it in Pycket -- i.e. having the runtime primitives implemented in RPython).
The NEW Pycket now features an original Racket REPL that's implemented in Racket. Try it out!
$ ./pycket-c-linklets
You can make it more verbose with the --verbose flag if you're curious about what's going on in the background.
$ ./pycket-c-linklets --verbose
Also increase the verbosity level (defaults to 0).
$ ./pycket-c-linklets --verbose 1
There are a couple of things that might produce this.
- It might be the case that your
PLTCOLLECTSenvironment variable is set and pointing to a different place than you think. - If you're using the
NEWPycket (pycket-c-linklets), then it might be the case that you havecompiledzo files in your Racket directory, and they need to be recompiled (youpulleda more recent Racket, maybe?). - The
expander.rktl.linkletmight not be up to date with the latest Racket binary. You can usemake expandertarget to rebuild the expander linklet, or shoot a message on the slack channel to us to update it.
Or even this, when this directory is in your PYTHONPATH:
$ python -mpycket program
You can edit the shell script to make it use pypy, if desired.
You can generate a coverage report with pytest:
$ pypy/pytest.py --cov .
or via
$ make coverage
which also generates an HTML report in pycket/test/coverage_report.
You need these Python packages for that to work:
pytest-cov(provided with thepypycheckout)cov-coreandcoverage