File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -337,8 +337,8 @@ export function updateCircuitPanel(
337
337
? `${ params . operation . operation } with ${ params . operation . totalNumQubits } input qubits`
338
338
: projectName ;
339
339
340
- // Trim the Q# : prefix from the target profile name - that's meant for the ui text in the status bar
341
- const target = `Target profile: ${ getTargetFriendlyName ( targetProfile ) . replace ( "Q# : " , "" ) } ` ;
340
+ // Trim the QIR : prefix from the target profile name - that's meant for the ui text in the status bar
341
+ const target = `Target profile: ${ getTargetFriendlyName ( targetProfile ) . replace ( "QIR : " , "" ) } ` ;
342
342
343
343
const props = {
344
344
title,
Original file line number Diff line number Diff line change @@ -32,16 +32,16 @@ export async function setTarget(target: TargetProfile) {
32
32
export function getTargetFriendlyName ( targetProfile ?: string ) {
33
33
switch ( targetProfile ) {
34
34
case "base" :
35
- return "Q#: QIR base" ;
35
+ return "QIR: base" ;
36
36
case "adaptive_ri" :
37
- return "Q#: QIR Adaptive RI" ;
37
+ return "QIR: Adaptive RI" ;
38
38
case "adaptive_rif" :
39
- return "Q#: QIR Adaptive RIF" ;
39
+ return "QIR: Adaptive RIF" ;
40
40
case "unrestricted" :
41
- return "Q# : unrestricted" ;
41
+ return "QIR : unrestricted" ;
42
42
default :
43
43
log . error ( "invalid target profile found" ) ;
44
- return "Q# : invalid" ;
44
+ return "QIR : invalid" ;
45
45
}
46
46
}
47
47
You can’t perform that action at this time.
0 commit comments