Skip to content

Commit

Permalink
Remove a left over print statement from pylibraft (#958)
Browse files Browse the repository at this point in the history
Follow up to #924, removing a `print` that managed to sneak in.

cc @cjnolet

Authors:
  - Tim Head (https://github.com/betatim)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #958
  • Loading branch information
betatim authored Oct 27, 2022
1 parent 72a38c6 commit 9ab17db
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/pylibraft/pylibraft/distance/fused_l2_nn.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ def fused_l2_nn_argmin(X, Y, output, sqrt=True, handle=None):
if x_c_contiguous != y_c_contiguous:
raise ValueError("Inputs must have matching strides")

print(x_dt)
if x_dt != y_dt:
raise ValueError("Inputs must have the same dtypes")
if d_dt != np.int32:
Expand Down

0 comments on commit 9ab17db

Please sign in to comment.