-
Notifications
You must be signed in to change notification settings - Fork 27
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
An initial implementation of the phase noise channel #513
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #513 +/- ##
===========================================
+ Coverage 89.77% 89.84% +0.07%
===========================================
Files 92 93 +1
Lines 6072 6098 +26
===========================================
+ Hits 5451 5479 +28
+ Misses 621 619 -2
... and 1 file with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work Arsalan! But see my comment about that potential issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Arsalan!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good!
Context:
Adds the phase noise with a Fock representation.
Description of the Change:
Added a class under
Channel
. Please note that if we wanted to actually write a Fock array for this channel, it would be extremely heavy (I ran into memory issues). Therefore, we implement contractions withPhaseNoise
in a particular way, using a custum rrshift method. I believe a similar logic was used in lab before.Benefits:
Enables us to apply phase noise.
Possible Drawbacks:
Could be slow.