Giter VIP home page Giter VIP logo

Comments (2)

CalMacCQ avatar CalMacCQ commented on May 28, 2024 2

Hi,

Thank you for your question.

FullPeepholeOptimise applies a combination of passes which are mentioned in the Compilation section of the user manual under "predefined sequences"

You can also define passes of your own using SequencePass.
If you are not concerned about routing then perhaps a good sequence of passes to apply is the following.

seq_pass=SequencePass([FullPeepholeOptimise(), RemoveRedundancies(), my_Rebase])

Here my_Rebase can be a user defined rebase which you can define using RebaseCustom

Depending on the structure of your circuits you may also see improved results by including OptimisePhaseGadgets and PauliSimp at the beginning of your sequence. However these compilation passes are application specific and may not be the way to go if you want to define a generic optimisation pass.

After FullPeepholeOptimise is applied the circuit will be in the {TK1,CX} gate set. Performing a rebase after this optimisation will introduce new gates as the TK1 gates need to be decomposed into {Rz,X,H}.

If your Rebase is the last pass in your sequence it should be applied to the optimised circuit. The RebaseCustom pass itself should automatically apply some light optimisations post conversion to remove some redundant gates.

I hope this helps. If anything I said is unclear then please let me know.

from pytket-docs.

khieta avatar khieta commented on May 28, 2024

Thanks!

from pytket-docs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.