Performance
Last updated
Was this helpful?
Last updated
Was this helpful?
This document shows some basic things you can do to improve the performance of your circuit.
Here are some quick tips to reduce the execution time of your circuit:
Reduce the amount of in the circuit.
Try different implementation strategies for .
Utilize and if your application doesn't require precise execution.
Use tensors as much as possible in your circuits.
Enable dataflow parallelization, by setting dataflow_parallelize=True
in the .
Tweak p_error
configuration option until you get optimal exactness vs performance tradeoff for your application.
Specify composition when using .
You can refer to our full for detailed examples of how to do each of these, and more!