Skip to content

Commit a20dc9f

Browse files
authored
Merge pull request #1309 from krasznaa/GBTSFix-main-20260505
GBTS + Clang Fix, main branch (2026.05.05.)
2 parents 87cc9cf + db9f851 commit a20dc9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

device/cuda/src/gbts_seeding/gbts_seeding_algorithm.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ gbts_seeding_algorithm::output_type gbts_seeding_algorithm::operator()(
887887
kernels::seeds_bid_for_hits<<<nBlocks, nThreads, 0, stream>>>(
888888
ctx.d_output_graph, ctx.d_seed_proposals, ctx.d_path_store,
889889
ctx.d_seed_ambiguity, ctx.d_hit_bids, nProps,
890-
1 + 2 + m_config.max_num_neighbours);
890+
static_cast<int>(1 + 2 + m_config.max_num_neighbours));
891891

892892
kernels::gbts_seed_conversion_kernel<<<nBlocks, nThreads, 0, stream>>>(
893893
ctx.d_seed_proposals, ctx.d_seed_ambiguity, ctx.d_path_store,

0 commit comments

Comments
 (0)