Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00b1 committed Jun 4, 2024
1 parent 2ca8b82 commit f1df9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/beignet/special/_dawson_integral_f.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
from ._error_erfi import error_erfi


def dawson_integral_f(z: Tensor) -> Tensor:
return math.sqrt(torch.pi) / 2.0 * torch.exp(-torch.square(z)) * error_erfi(z)
def dawson_integral_f(input: Tensor) -> Tensor:
return math.sqrt(torch.pi) / 2.0 * torch.exp(-(input**2)) * error_erfi(input)

0 comments on commit f1df9d4

Please sign in to comment.