Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 349 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 349 Bytes

pycon-2024

Slides: https://slides.com/akhilg/pycon2024-blr

Run add, concat, prime programs by running below make commands respectively

make add
make concat
make prime

Run tokenizer benchmarks across pure python, rust and zig implementations through docker.

docker build -t pycon2024:latest .
docker run --rm pycon2024