-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate Neutral Atom State Preparation #500
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
…icly already in a depending target Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #500 +/- ##
=======================================
+ Coverage 90.4% 90.8% +0.4%
=======================================
Files 87 91 +4
Lines 10052 10868 +816
Branches 1722 1842 +120
=======================================
+ Hits 9091 9876 +785
- Misses 961 992 +31
|
src/na/nasp/CodeGenerator.cpp
Outdated
(*it)->execute(); | ||
} | ||
} | ||
for (std::uint16_t t = 1; t < result.numStages(); ++t) { |
Check failure
Code scanning / CodeQL
Comparison of narrow type with wide type in loop condition
src/na/nasp/CodeGenerator.cpp
Outdated
std::vector<std::shared_ptr<Point>> loadEndPositions; | ||
std::vector<std::shared_ptr<Point>> storeStartPositions; | ||
std::vector<std::shared_ptr<Point>> storeEndPositions; | ||
for (std::uint16_t i = 0; i < result.getStage(t).numQubits(); ++i) { |
Check failure
Code scanning / CodeQL
Comparison of narrow type with wide type in loop condition
src/na/nasp/Solver.cpp
Outdated
model.eval(bv2int(stage.getQubit(i).getV(), true)).get_numeral_int()); | ||
} | ||
std::vector<Result::Gate> resultGates; | ||
for (std::uint16_t i = 0; i < gates.size(); ++i) { |
Check failure
Code scanning / CodeQL
Comparison of narrow type with wide type in loop condition
src/na/nasp/Solver.cpp
Outdated
model.eval(bv2int(stage.getQubit(i).getV(), true)).get_numeral_int()); | ||
} | ||
std::vector<Result::Gate> resultGates; | ||
for (std::uint16_t i = 0; i < gates.size(); ++i) { |
Check failure
Code scanning / CodeQL
Comparison of narrow type with wide type in loop condition
@burgholzer I know that you removed the |
Note #507 just went in and brought some updates from the MQT Core dependency that cause some conflicts here. Could you please resolve these? They should be fairly easy to resolve. Sorry for the inconvenience. |
Description
It adds a new functionality to generate minimal schedules for preparing logical arrays on the neutral atom architecture.
Checklist: