You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched exisisting GitHub issues to make sure the issue does not already exist.
Expected behavior
Consider a circuit in the Gaussian backend consisting of nModes where the first mode is initialized in a thermal state with average photon number 0.01. I expect that:
(i) Computed Fock probabilities should not depend on the hbar convention
(ii) A thermal state (in Gaussian backend) should always be mixed, regardless of number of modes in circuit and hbar convention
Actual behavior
(i) Fock probabilities depend on hbar convention
(ii) Purity depends on hbar convention and size of circuit
import strawberryfields as sf
from strawberryfields.ops import *
def SF_Thermal(nModes, nbar, hbar_val):
sf.hbar = hbar_val
prog = sf.Program(nModes)
eng = sf.Engine("gaussian")
with prog.context as q:
Thermal(nbar) | q[0]
# Run SF engine
results = eng.run(prog)
state = results.state
return state
# Test with hbar = 2
print('Using default hbar=2.....')
out1 = SF_Thermal(nModes=1, nbar=0.01, hbar_val=2)
out2 = SF_Thermal(nModes=15, nbar=0.01, hbar_val=2)
print('1-mode state is pure: ' + str(out1.is_pure))
print('15-mode state is pure: ' + str(out2.is_pure))
equal = out1.fock_prob([1])==out2.fock_prob([1,0,0,0,0,0,0,0,0,0,0,0,0,0,0])
print('1 photon probabilities are equal: ' + str(equal))
print('%%%%%%%%%%%%%%%%%%%%%%%')
# Test with hbar = 1
print('Using hbar=1')
out1 = SF_Thermal(nModes=1, nbar=0.01, hbar_val=1)
out2 = SF_Thermal(nModes=15, nbar=0.01, hbar_val=1)
print('1-mode state is pure: ' + str(out1.is_pure))
print('15-mode state is pure: ' + str(out2.is_pure))
equal = out1.fock_prob([1])==out2.fock_prob([1,0,0,0,0,0,0,0,0,0,0,0,0,0,0])
print('1 photon probabilities are equal: ' + str(equal))
Tracebacks
No response
Additional information
I dug a little bit, and this issue may stem from the fact that the state is wrongly flagged as pure (some precision limit?) Because the SF object is considered pure, the method fock_prob uses the function thewalrus.twq.pure_state_amplitude rather than thewalrus.density_matrix_element. But it's unclear to me why the state is wrongly flagged as pure when hbar=1 (but correctly flagged as mixed when hbar=2). Also, this issue might potentially be similar to #488. However, unlike that issue, I only see the incorrect pure flag when I set nModes >= 15.
The text was updated successfully, but these errors were encountered:
Unfortunately, there seem to be all sorts of problems with the automated checks that need to pass for these PRs to make their way into master. My recommendation in that case is that you make a Fork of the Strawberry Fields repository and add the changes in your own Fork. Hopefully this can help you bypass the failing checks and work with the fixes!
Before posting a bug report
Expected behavior
Consider a circuit in the Gaussian backend consisting of nModes where the first mode is initialized in a thermal state with average photon number 0.01. I expect that:
(i) Computed Fock probabilities should not depend on the hbar convention
(ii) A thermal state (in Gaussian backend) should always be mixed, regardless of number of modes in circuit and hbar convention
Actual behavior
(i) Fock probabilities depend on hbar convention
(ii) Purity depends on hbar convention and size of circuit
Reproduces how often
All the time
System information
Source code
Tracebacks
No response
Additional information
I dug a little bit, and this issue may stem from the fact that the state is wrongly flagged as pure (some precision limit?) Because the SF object is considered pure, the method fock_prob uses the function thewalrus.twq.pure_state_amplitude rather than thewalrus.density_matrix_element. But it's unclear to me why the state is wrongly flagged as pure when hbar=1 (but correctly flagged as mixed when hbar=2). Also, this issue might potentially be similar to #488. However, unlike that issue, I only see the incorrect pure flag when I set nModes >= 15.
The text was updated successfully, but these errors were encountered: