Skip to content
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

Docs reviews #43

Merged
merged 47 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
c6419b8
Docs suggestions.
RolandMacDoland Oct 4, 2023
eb1911e
Fix typo.
RolandMacDoland Oct 4, 2023
c07aaad
Latest changes.
RolandMacDoland Oct 4, 2023
beb4aeb
Latest changes.
RolandMacDoland Oct 4, 2023
3483dab
Trigger docs tests on CI.
RolandMacDoland Oct 4, 2023
0816260
More files to docs.
RolandMacDoland Oct 4, 2023
58e0f08
fix circuit drawings
jpmoutinho Oct 4, 2023
9731a21
quadance to qadance
jpmoutinho Oct 4, 2023
0ddbd1d
More docs improvements.
RolandMacDoland Oct 4, 2023
e62772c
Merge branch 'main' into rg/docs-reviews
jpmoutinho Oct 5, 2023
7fe38a7
fix docs build
jpmoutinho Oct 5, 2023
536732b
More suggestions and run test-docs again.
RolandMacDoland Oct 5, 2023
fc1f3ec
update pulser examples
vytautas-a Oct 5, 2023
5b3a936
remove mkdocs-jupyter
jpmoutinho Oct 5, 2023
02e9deb
Merge branch 'rg/docs-reviews' of github.com:pasqal-io/qadence into r…
jpmoutinho Oct 5, 2023
eaa094d
update pulser example
vytautas-a Oct 5, 2023
3d17963
More improvements.
RolandMacDoland Oct 5, 2023
c410499
Fix lint.
RolandMacDoland Oct 5, 2023
b8340df
More docs suggestions.
RolandMacDoland Oct 6, 2023
00840ed
More and more suggestions.
RolandMacDoland Oct 6, 2023
9512b78
Merge branch 'main' into rg/docs-reviews
RolandMacDoland Oct 6, 2023
c01a96b
More suggestions.
RolandMacDoland Oct 6, 2023
03d57b9
More suggestions.
RolandMacDoland Oct 8, 2023
052ad4d
Concatenate two doc files.
RolandMacDoland Oct 8, 2023
2e4a1df
Move to qml_tools.md
RolandMacDoland Oct 8, 2023
a58d5ae
More suggestions.
RolandMacDoland Oct 8, 2023
b898e28
update entanglement tests
vytautas-a Oct 9, 2023
f1ab971
few fixes
jpmoutinho Oct 9, 2023
743a1a7
pulser-basic tutorial broken
jpmoutinho Oct 9, 2023
160464c
few fixes
jpmoutinho Oct 9, 2023
ff011bf
few fixes
jpmoutinho Oct 9, 2023
14d6de6
more fixes
jpmoutinho Oct 9, 2023
044004c
remove total_magnetization from docs
jpmoutinho Oct 9, 2023
7cdda44
remove emuc
jpmoutinho Oct 9, 2023
cd96880
fix entanglement test
vytautas-a Oct 9, 2023
69d779a
fix entanglement test
vytautas-a Oct 9, 2023
60e0f12
Update docs/advanced_tutorials/custom-models.md
RolandMacDoland Oct 9, 2023
5f4b2c7
Update docs/advanced_tutorials/differentiability.md
RolandMacDoland Oct 9, 2023
1fc6729
Update docs/digital_analog_qc/pulser-basic.md
RolandMacDoland Oct 9, 2023
cb28fe1
Update docs/tutorials/ml_tools.md
RolandMacDoland Oct 9, 2023
8fd59e5
Update docs/tutorials/qml_tools.md
RolandMacDoland Oct 9, 2023
7779ca0
Update docs/tutorials/ml_tools.md
RolandMacDoland Oct 9, 2023
d03d9df
Update docs/tutorials/qml_tools.md
RolandMacDoland Oct 9, 2023
e80fd71
Update docs/tutorials/serializ_and_prep.md
RolandMacDoland Oct 9, 2023
f5b48f7
More suggestions.
RolandMacDoland Oct 9, 2023
359ad97
Merge branch 'main' into rg/docs-reviews
RolandMacDoland Oct 9, 2023
4aa4c3c
Fix conflicts.
RolandMacDoland Oct 9, 2023
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
Prev Previous commit
Next Next commit
update entanglement tests
vytautas-a committed Oct 9, 2023
commit b898e283e211c7fea32020925888d486c4d72a62
17 changes: 1 addition & 16 deletions tests/backends/test_pulser_pyq_compat.py
Original file line number Diff line number Diff line change
@@ -27,22 +27,7 @@
(
QuantumCircuit(2, chain(H(0), CNOT(0, 1))),
QuantumCircuit(2, chain(entangle(383, qubit_support=(0, 1)), RY(0, 3 * torch.pi / 2))),
),
# GHZ state 3-qubits
(
QuantumCircuit(Register.line(3), chain(H(0), CNOT(0, 1), CNOT(1, 2))),
QuantumCircuit(
Register.line(3),
chain(
entangle(383, qubit_support=(0, 1, 2)),
RY(0, 3 * torch.pi / 2),
wait(660),
RY(2, 3 * torch.pi / 2),
),
),
),
# NOTE: Although we can create an effective GHZ state with four qubits in Pulser,
# the final distribution is not compatible with the "pure" result from pyqtorch.
)
],
)
@pytest.mark.flaky(max_runs=5)