Skip to content

Commit

Permalink
fixing weird tensorflow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arsalan-motamedi committed Oct 18, 2024
1 parent a790fff commit 93f54fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrmustard/physics/triples.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def gaussian_random_noise_Abc(Y: RealMatrix) -> Union[Matrix, Vector, Scalar]:
temp = math.block([[math.eye(2 * m) - xi_inv, xi_inv], [xi_inv, math.eye(2 * m) - xi_inv]])
R = (
1
/ math.sqrt(2)
/ math.sqrt(complex(2))
* math.block(
[
[math.eye(m, dtype = math.complex128), 1j * math.eye(m, dtype = math.complex128), math.zeros((m, 2 * m), dtype = math.complex128)],
Expand Down

0 comments on commit 93f54fa

Please sign in to comment.