Skip to content

Latest commit

 

History

History

benchmark

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

check_shapes benchmarking.

The benchmarks are based on running the examples in benchmark/examples, then editing the script to remove all shape checking, and running it again.

Most recent results are shown in our documentation.

To run a benchmark use:

python -m benchmark.run_benchmark \
    <path to example script> \
    [--modifiers=<other modification to the script>] \
    <output_directory>

Then plot the results with:

python -m benchmark.plot_benchmarks <output_directory>

The plotter will plot all results found in the output directory, so your can run run_benchmark.py multiple times. An example of benchmarking all the examples might be:

# Make sure everything is installed:
poetry install
./poetryenv -r poetryenvs install

# Run all benchmarks:
./poetryenv poetryenvs/np_max run python -m benchmark.run_benchmark benchmark/examples/np_example.py benchmark_results
./poetryenv poetryenvs/tf_max run python -m benchmark.run_benchmark benchmark/examples/tf_example.py benchmark_results
./poetryenv poetryenvs/tf_max run python -m benchmark.run_benchmark benchmark/examples/tf_example.py --modifiers=no_compile benchmark_results
./poetryenv poetryenvs/jax_max run python -m benchmark.run_benchmark benchmark/examples/jax_example.py benchmark_results
./poetryenv poetryenvs/jax_max run python -m benchmark.run_benchmark benchmark/examples/jax_example.py --modifiers=no_jit benchmark_results
./poetryenv poetryenvs/torch_max run python -m benchmark.run_benchmark benchmark/examples/torch_example.py benchmark_results

# Plot results:
poetry run python -m benchmark.plot_benchmarks benchmark_results