Skip to content

Commit 7f61fb8

Browse files
committed
Delete duplicated reciprocal
1 parent dcd2576 commit 7f61fb8

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pytensor/link/numba/dispatch/scalar.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,6 @@ def second(x, y):
245245
return second
246246

247247

248-
@numba_basic.numba_njit
249-
def reciprocal(x):
250-
# TODO FIXME: This isn't really the behavior or `numpy.reciprocal` when
251-
# `x` is an `int`
252-
return 1 / x
253-
254-
255248
@numba_funcify.register(Reciprocal)
256249
def numba_funcify_Reciprocal(op, node, **kwargs):
257250
@numba_basic.numba_njit

0 commit comments

Comments
 (0)