Skip to content

Commit

Permalink
Removing print
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnolet committed Oct 17, 2023
1 parent 18743cc commit f52765f
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions cpp/include/raft/distance/detail/distance_ops/l2_exp.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ struct l2_exp_cutlass_op {
{
AccT outVal = aNorm + bNorm - DataT(2.0) * accVal;

if (aNorm == bNorm) {
printf("aNorm: %f, bNorm:%f, acc: %f, outVal: %f\n",
aNorm,
bNorm,
accVal,
outVal * (outVal >= 1e-6));
}

/**
* Self-neighboring points should have (aNorm == bNorm) == accVal and the dot product (accVal)
* can sometimes have round-off errors, which will cause (aNorm == bNorm) ~ accVal instead.
Expand Down

0 comments on commit f52765f

Please sign in to comment.