1
$\begingroup$

I have already made a small Q# program and ran it using Python on VSCode, my question ishow can I run it on Azure Quantum to make it run faster?

  • Q# program :

    namespace QubitTest {open Microsoft.Quantum.Convert;open Microsoft.Quantum.Math;open Microsoft.Quantum.Measurement;open Microsoft.Quantum.Canon;open Microsoft.Quantum.Intrinsic;operation QChange() : Int {// on retourne un qubit    using ( q = Qubit()) { for (i in 1..500000){     H(q);     Message($" Qubit {i} : {q}"); } return 0; }}}
  • Python Simulation :

     import qsharp from QubitTest import QChange  QChange.simulate()
Martin Vesely's user avatar
Martin Vesely
15.6k4 gold badges34 silver badges76 bronze badges
askedMay 24, 2020 at 16:29
Karam Mohamed's user avatar
$\endgroup$

1 Answer1

1
$\begingroup$

Azure Quantum is in private preview right now. You can sign up to request early accesshere.

answeredMay 25, 2020 at 8:38
El capi's user avatar
$\endgroup$

Your Answer

Sign up orlog in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

By clicking “Post Your Answer”, you agree to ourterms of service and acknowledge you have read ourprivacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.