QCSim
QCSim copied to clipboard
Quantum computing simulator
It might be worth investigate it. Currently it benefits from AVX2 because eigen has avx2 optimizations (so on my computer execution time for tests/examples drops from > 50 sec to...
The project is built with omp turned on and when it used the big matrices obtained by tensor product it benefited from it. Currently those big matrices are avoided, the...
Currently it's tested using FFT, that puts the results very close to the QFT-using ones (fidelity = 1). I have implemented several other ways of simulation to be used as...
An article on it: Quantum Computation by Adiabatic Evolution https://arxiv.org/abs/quant-ph/0001106
There are various ways of doing so... a straightforward one would be to parallelize some of the computations with open mp. There are also ways of optimizing the execution of...
Other than the 1D one (the one with the Matrix Product States - it's actually the simplest tensor network: a 1D one where qubits are on a 'chain'). I don't...