Skip to content

Commit

Permalink
fix: increase tol value for our integ tests (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
krneta authored Mar 13, 2024
1 parent 40219cd commit 628781d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integ_tests/gate_model_device_testing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@


def get_tol(shots: int) -> Dict[str, float]:
return {"atol": 0.1, "rtol": 0.15} if shots else {"atol": 0.01, "rtol": 0}
return {"atol": 0.2, "rtol": 0.3} if shots else {"atol": 0.01, "rtol": 0}


def qubit_ordering_testing(device: Device, run_kwargs: Dict[str, Any]):
Expand Down

0 comments on commit 628781d

Please sign in to comment.