Skip to content

Commit 710e9f5

Browse files
Add kIsSingleSource to PairwiseDistanceEpilogueElementwise (#485)
With raft having recently migrated to cutlass 3.5.1, this field is now required. Also remove `raft_cutlass` from symbol exclusions. Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - Bradley Dice (https://github.com/bdice) - Vyas Ramasubramani (https://github.com/vyasr) - Micka (https://github.com/lowener) URL: #485
1 parent 06afd5b commit 710e9f5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
build_type: pull-request
9090
enable_check_symbols: true
91-
symbol_exclusions: (void (thrust::|cub::)|raft_cutlass)
91+
symbol_exclusions: (void (thrust::|cub::))
9292
conda-python-build:
9393
needs: conda-cpp-build
9494
secrets: inherit

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
enable_check_symbols: true
26-
symbol_exclusions: (void (thrust::|cub::)|raft_cutlass)
26+
symbol_exclusions: (void (thrust::|cub::))
2727
conda-cpp-tests:
2828
secrets: inherit
2929
uses: rapidsai/shared-workflows/.github/workflows/[email protected]

cpp/src/distance/detail/pairwise_distance_epilogue_elementwise.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class PairwiseDistanceEpilogueElementwise {
6161
using ElementT = ElementT_;
6262
static int const kElementsPerAccess = ElementsPerAccess;
6363
static int const kCount = kElementsPerAccess;
64+
static bool const kIsSingleSource = true;
6465

6566
using DistanceOp = DistanceOp_;
6667
using FinalOp = FinalOp_;

0 commit comments

Comments
 (0)