Skip to content

Commit 1fb53be

Browse files
Merge pull request #10 from HectorMozo3110/main
Unified Backend and Optimizer Enhancements with Documentation Updates
2 parents 0b51d0b + 15c3be0 commit 1fb53be

104 files changed

Lines changed: 5820 additions & 328 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ dist/
2828
# Benchmark and Runtime Outputs
2929
# ===============================
3030
.benchmarks/
31-
*.csv
3231
*.json
33-
*.png
3432
*.log
3533
*.tmp
3634
*.bak

docs/conf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,17 @@
1616
"sphinx_autodoc_typehints",
1717
"myst_parser",
1818
"sphinx.ext.mathjax",
19-
"sphinxcontrib.programoutput",
19+
"sphinxcontrib.programoutput",
20+
"sphinx.ext.intersphinx",
2021
]
2122

23+
intersphinx_mapping = {
24+
"python": ("https://docs.python.org/3", None),
25+
"numpy": ("https://numpy.org/doc/stable", None),
26+
"pennylane": ("https://docs.pennylane.ai/en/stable", None),
27+
"qiskit": ("https://qiskit.org/documentation", None),
28+
}
29+
2230
templates_path = ["_templates"]
2331
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
2432

docs/examples.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ Each link below opens a separate page with the full documentation of that exampl
1515
examples/ex_hypercausal_chain_demo
1616
examples/ex_training_with_callbacks_demo
1717
examples/ex_training_with_callbacks_advanced
18-
examples/ex_quantum_hypercore_case_study
18+
examples/ex_quantum_hypercore_case_study
19+
examples/ex_full_hypercausal_Pennylane_demo

0 commit comments

Comments
 (0)