Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Update QIR submitter factory to support IonQ (#1104)
Browse files Browse the repository at this point in the history
Update QIR submitter factory to support IonQ.
  • Loading branch information
cesarzc authored Nov 29, 2022
1 parent fdf8390 commit c46da38
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Azure/Azure.Quantum.Client/SubmitterFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ public static class SubmitterFactory
"Microsoft.Quantum.Providers.Targets.MicrosoftEstimatorSubmitter, Microsoft.Quantum.Providers.Core",
"QirSubmitter",
ImmutableArray.Create("FullComputation")),
new SubmitterInfo(
new Regex(@"\Aionq\.([\w-_]+\.)*[\w-_]+\z"),
"Microsoft.Quantum.Providers.IonQ.Targets.IonQQirSubmitter, Microsoft.Quantum.Providers.IonQ",
"QirSubmitter",
ImmutableArray.Create("BasicExecution")),
new SubmitterInfo(
new Regex(@"\Aquantinuum\.([\w-_]+\.)*[\w-_]+\z"),
"Microsoft.Quantum.Providers.Quantinuum.Targets.QuantinuumQirSubmitter, Microsoft.Quantum.Providers.Honeywell",
Expand Down

0 comments on commit c46da38

Please sign in to comment.