.PHONY: all bench clean
all: bench
bench:
	python3 bench/run_all.py
clean:
	rm -rf bench/__pycache__ __pycache__
