Skip to content

Commit

Permalink
fix distanceLauncher invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Feb 13, 2023
1 parent 3270026 commit 68c5bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/test/prims/distance_base.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ class DistanceTest : public ::testing::TestWithParam<DistanceInputs<DataType>> {
rmm::device_uvector<char> workspace(worksize);

DataType threshold = -10000.f;
distanceLauncher<distanceType, DataType>(x.data(),
distanceLauncher<distanceType, DataType>(handle,
x.data(),
y.data(),
dist.data(),
dist2.data(),
Expand All @@ -215,7 +216,6 @@ class DistanceTest : public ::testing::TestWithParam<DistanceInputs<DataType>> {
threshold,
workspace.data(),
worksize,
stream,
isRowMajor);
}

Expand Down

0 comments on commit 68c5bcd

Please sign in to comment.