Skip to content

Commit

Permalink
remove stray print statement from #1529
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjj committed May 27, 2020
1 parent 6ffde80 commit 9f8a4ad
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion jax/numpy/lax_numpy.py
Expand Up @@ -775,7 +775,6 @@ def frexp(x):
int_type = _INT_DTYPES[info.bits]

x1, x2 = _normalize_float(x)
print(x1, x2)
x1 = lax.bitcast_convert_type(x1, int_type)
x2 += ((x1 >> info.nmant) & mask) - bias + 1
x1 &= ~(mask << info.nmant)
Expand Down

0 comments on commit 9f8a4ad

Please sign in to comment.