Skip to content

Commit

Permalink
remove thresh
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzepesh committed May 24, 2024
1 parent 44d7fbd commit 3a1184e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinygrad/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ def forward(self, x: LazyBuffer) -> LazyBuffer:
initial_x = x
pinf_t = x.const(88.722)
ninf_t = x.const(-103.97539753975397)
x = x.e(BinaryOps.CMPLT, ninf_t).e(TernaryOps.WHERE, x.const(0), x)
# x = x.e(BinaryOps.CMPLT, ninf_t).e(TernaryOps.WHERE, x.const(0), x)
# x = self.zero_if_minus_inf(x)


Expand Down

0 comments on commit 3a1184e

Please sign in to comment.