Skip to content

Commit 5c9a2ff

Browse files
authored
📝 added project acknowledgements (#317)
## Description This PR adds project acknowledgements to the README and the documentation footer. ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. --------- Signed-off-by: burgholzer <[email protected]>
1 parent 8061e1d commit 5c9a2ff

File tree

11 files changed

+2686
-15
lines changed

11 files changed

+2686
-15
lines changed

README.md

+26-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# MQT DDSIM - A quantum circuit simulator based on decision diagrams written in C++
1717

18-
A tool for classical quantum circuit simulation developed as part of the [_Munich Quantum Toolkit_](https://mqt.readthedocs.io) (_MQT_)[^1] by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
18+
A tool for classical quantum circuit simulation developed as part of the [_Munich Quantum Toolkit_](https://mqt.readthedocs.io) (_MQT_) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
1919
It builds upon [MQT Core](https://github.com/cda-tum/mqt-core), which forms the backbone of the MQT.
2020

2121
<p align="center">
@@ -74,4 +74,28 @@ DDSIM has been developed based on methods proposed in the following papers:
7474
- L. Burgholzer, A.Ploier, and R. Wille, "[Exploiting Arbitrary Paths for the Simulation of Quantum Circuits with Decision Diagrams](https://www.cda.cit.tum.de/files/eda/2022_date_exploiting_arbitrary_paths_simulation_quantum_circuits_decision_diagrams.pdf)," in Design, Automation and Test in Europe (DATE), 2022
7575
- T. Grurl, J. Fuß, and R. Wille, "[Noise-aware Quantum Circuit Simulation With Decision Diagrams](https://www.cda.cit.tum.de/files/eda/2022_tcad_noise-aware_quantum_circuit_simulation_with_decision_diagrams.pdf)," Transactions on CAD of Integrated Circuits and Systems (TCAD), 2022.
7676

77-
[^1]: The Munich Quantum Toolkit was formerly known under the acronym _JKQ_ and developed by the [Institute for Integrated Circuits](https://iic.jku.at/eda/) at the [Johannes Kepler University Linz](https://jku.at)).
77+
---
78+
79+
## Acknowledgements
80+
81+
The Munich Quantum Toolkit has been supported by the European
82+
Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement
83+
No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the
84+
Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
85+
86+
<p align="center">
87+
<picture>
88+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_dark.svg" width="28%">
89+
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_light.svg" width="28%">
90+
</picture>
91+
<picture>
92+
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-bavaria.svg" width="16%">
93+
</picture>
94+
<picture>
95+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_dark.svg" width="24%">
96+
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_light.svg" width="24%">
97+
</picture>
98+
<picture>
99+
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-mqv.svg" width="28%">
100+
</picture>
101+
</p>

docs/source/_static/custom.css

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.acknowledgements {
2+
margin-top: 1rem;
3+
padding-bottom: 1rem;
4+
padding-top: 1rem;
5+
border-top: 1px solid var(--color-background-border);
6+
font-size: var(--font-size--small);
7+
color: var(--color-foreground-secondary);
8+
}
9+
10+
.acknowledgements-logos {
11+
display: grid;
12+
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
13+
grid-gap: 1em;
14+
align-items: center;
15+
margin-top: 0.5rem;
16+
}
17+
.acknowledgement {
18+
display: flex;
19+
flex-direction: column;
20+
align-items: center;
21+
justify-content: center;
22+
}

docs/source/_static/erc_dark.svg

+1,120
Loading

docs/source/_static/erc_light.svg

+1,125
Loading

docs/source/_static/logo-bavaria.svg

+60
Loading

docs/source/_static/logo-mqv.svg

+2
Loading

docs/source/_static/tum_dark.svg

+130
Loading

0 commit comments

Comments
 (0)