Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gs-madrona"
version = "0.0.4"
version = "0.0.5"
description = "A fork from the official Madrona. The fork will be used for Genesis's own Madrona integration."
readme = {file = "README.md", content-type = "text/markdown"}
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion src/mw/device/sort_archetype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ struct BlockRadixRankMatchEarlyCountsCustom
for (int u = 0; u < WARP_BINS_PER_THREAD; ++u)
{
int bin = lane + u * WARP_THREADS;
bins[u] = ThreadReduce(warp_histograms[bin], Sum());
bins[u] = internal::ThreadReduce(warp_histograms[bin], Sum());
}
CTA_SYNC();

Expand Down