Xiaobin-Rong / deepvqe

An unofficial implementation of DeepVQE proposed by Microsoft Corp.
70 stars 19 forks source link

The differences between deepvqe.py and deepvqe_v1.py #3

Open lin-sh opened 11 months ago

lin-sh commented 11 months ago

The author's gratitude for sharing. I would like to know what the differences are between deepvqe.py and deepvqe_v1.py. Looking forward to your response.

Xiaobin-Rong commented 11 months ago

The only difference between the two lies in the implementation of the CCM module, where deepvqe utilizes real number multiplication exclusively, while deepvqe_v1 uses complex number multiplication. I believe that these two different implementation methods will not have any impact on the results. Personally, I lean towards using real number multiplication because it is more compatible with multiple platforms.

lin-sh commented 11 months ago

Thanks!