Skip to content

Commit

Permalink
[QI2-1360] Compiler stages (#22)
Browse files Browse the repository at this point in the history
* Update compiler stages

* Remove exporting stage
Mythir authored Jan 23, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 1fa8b2d commit 12156bd
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions schemas/get_static/reply_success.schema.json
Original file line number Diff line number Diff line change
@@ -10,6 +10,30 @@
},
"title": "Decomposition",
"type": "array"
},
"mapping": {
"default": [],
"items": {
"$ref": "#/$defs/CompilerPass"
},
"title": "Mapping",
"type": "array"
},
"optimization": {
"default": [],
"items": {
"$ref": "#/$defs/CompilerPass"
},
"title": "Optimization",
"type": "array"
},
"routing": {
"default": [],
"items": {
"$ref": "#/$defs/CompilerPass"
},
"title": "Routing",
"type": "array"
}
},
"title": "CompilerConfig",
@@ -88,7 +112,10 @@
"default_compiler_config": {
"$ref": "#/$defs/CompilerConfig",
"default": {
"decomposition": []
"decomposition": [],
"mapping": [],
"optimization": [],
"routing": []
},
"description": "A suitable default compiler configuration for the hardware backend"
},
@@ -139,4 +166,4 @@
],
"title": "Get hardware data reply",
"type": "object"
}
}

0 comments on commit 12156bd

Please sign in to comment.