Skip to content

Commit 7d503ed

Browse files
65_geglu: relax atol/rtol from 1e-5 to 1e-4 (#207)
* Initial plan * bump atol/rtol to 1e-4 for 65_geglu challenge Co-authored-by: kunal-mansukhani <24417742+kunal-mansukhani@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kunal-mansukhani <24417742+kunal-mansukhani@users.noreply.github.com>
1 parent 110d7fb commit 7d503ed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

challenges/easy/65_geglu/challenge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class Challenge(ChallengeBase):
1010
def __init__(self):
1111
super().__init__(
1212
name="Gaussian Error Gated Linear Unit",
13-
atol=1e-05,
14-
rtol=1e-05,
13+
atol=1e-04,
14+
rtol=1e-04,
1515
num_gpus=1,
1616
access_tier="free",
1717
)

0 commit comments

Comments
 (0)