We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Adaptive_RIF
1 parent d89fa19 commit 904ab7fCopy full SHA for 904ab7f
1 file changed
source/vscode/src/azure/providerProperties.ts
@@ -29,9 +29,11 @@ export function shouldExcludeProvider(provider: string) {
29
}
30
31
export function getPreferredTargetProfile(target: string): TargetProfile {
32
- if (!target.startsWith("ionq") && !target.startsWith("rigetti")) {
+ if (target.startsWith("ionq") || target.startsWith("rigetti")) {
33
+ return "base";
34
+ } else if (target.startsWith("quantinuum") && target.includes(".h2")) {
35
return "adaptive_ri";
36
} else {
- return "base";
37
+ return "adaptive_rif";
38
39
0 commit comments