Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
f7153a7
Setup for QIR-based RandomBit Q# program.
cesarzc Feb 5, 2021
71b62cc
Added generated QIR file.
cesarzc Feb 5, 2021
3ee559a
Changed structure for standalone tests.
cesarzc Feb 15, 2021
e58f672
Added simulator and Q# operation output redirection through command l…
cesarzc Feb 15, 2021
783fafb
Added standalone example for different input types.
cesarzc Feb 16, 2021
8d48fb7
Changed type of InputTypes Q# operation.
cesarzc Feb 16, 2021
fdd5b74
Update src/QirRuntime/test/Standalone/InputTypes/input-types.qs
cesarzc Feb 17, 2021
6ed27cc
Clean-up a bit and add TODOs.
cesarzc Feb 19, 2021
6db9755
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Feb 19, 2021
7f7b6ca
Moved to a folder outside test.
cesarzc Feb 22, 2021
fb967aa
Simplified make file and removed unused headers in driver.
cesarzc Feb 22, 2021
d58ce2e
Rename entry-point operation.
cesarzc Feb 23, 2021
96b50f6
Rename sample to StandaloneInputReference.
cesarzc Feb 23, 2021
7a6ff9d
Add CLI11 library to component manifest.
cesarzc Feb 23, 2021
0307fa5
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Feb 23, 2021
03ba4d0
Update .clang-tidy for standalone samples.
cesarzc Feb 24, 2021
8724cf3
Add readme.
cesarzc Feb 25, 2021
b685581
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Feb 26, 2021
7a1dcfb
Update readmes that mention CLI11.
cesarzc Feb 26, 2021
b20e228
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Mar 1, 2021
688d761
Revert extra-line to .clang-tidy.
cesarzc Mar 1, 2021
1c97310
Move standalone includes to specific CMakeLists.txt.
cesarzc Mar 1, 2021
f6164fb
Use QIR runtime API to redirect simulation output.
cesarzc Mar 1, 2021
7d0e0bc
Renamed options.
cesarzc Mar 1, 2021
dbfaaa1
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Mar 1, 2021
3112c47
Add option for Pauli type.
cesarzc Mar 3, 2021
3887216
Simplify options code.
cesarzc Mar 3, 2021
8742b2b
Add support for QirRange and QirString to be parsed from the command …
cesarzc Mar 3, 2021
025a797
Add support for Q# Result type.
cesarzc Mar 4, 2021
aee2730
Do not catch all exceptions in the main function.
cesarzc Mar 4, 2021
186970a
Resolved bug pointed by Robin.
cesarzc Mar 5, 2021
05d4aa4
Create QirArray.
cesarzc Mar 5, 2021
03014e0
Reordered includes.
cesarzc Mar 5, 2021
1c68402
Remove headers not needed and add headers that are explicitly needed.
cesarzc Mar 5, 2021
f3f0ee3
Added simple test for sample reference binary.
cesarzc Mar 5, 2021
af29a6c
Fixed quotation marks in cmake file.
cesarzc Mar 5, 2021
c38a052
Extend entry-point operation to exercise a larger set of supported in…
cesarzc Mar 5, 2021
7a236f0
Add support for arrays of different types in driver.
cesarzc Mar 6, 2021
2768ad5
Added support for Pauli array.
cesarzc Mar 6, 2021
a903cbc
All array types supported.
cesarzc Mar 8, 2021
b204bef
Added clarification comments.
cesarzc Mar 8, 2021
a3f7f66
Updated tests.
cesarzc Mar 8, 2021
a681a5f
Removed auto-generated file.
cesarzc Mar 8, 2021
e1cb1b2
Merge branch 'main' into cesarzc/prototype-qir-entry-point-driver
cesarzc Mar 8, 2021
8e3b7e7
Fix build break due to missing file.
cesarzc Mar 8, 2021
a0955d2
Set environment for standalone sample test.
cesarzc Mar 8, 2021
458172a
Fix ctest for standalone sample.
cesarzc Mar 8, 2021
c3ea617
Addressed Robin's feedback.
cesarzc Mar 9, 2021
9869ee7
Reverse file stream closing.
cesarzc Mar 9, 2021
0bf4e65
Remove use of Range in entry-point operation.
cesarzc Mar 9, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/QirRuntime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,5 @@ else()
endif()

add_subdirectory(lib)
add_subdirectory(samples)
add_subdirectory(test)

Loading