Skip to content

Commit

Permalink
new tol
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmorgan98 committed May 15, 2024
1 parent ac759b7 commit c7f8208
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/regression/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
)
names = temp

tol = 1e-5

# Skip iqmc if GPU run
if target == "gpu":
temp = names.copy()
Expand All @@ -62,9 +64,9 @@
print(
Fore.YELLOW + "Note: Skipping %s (GPU target)" % name + Style.RESET_ALL
)
tol = 1e-9

if (target == "gpu"):
tol = 1e-6
tol = 1e-1
Fore.CYAN
print(Fore.YELLOW + 'Note: tolerance increased to ', tol, '(GPU target)')
names = temp
Expand Down

0 comments on commit c7f8208

Please sign in to comment.