diff --git a/pyproject.toml b/pyproject.toml index 6aec2a90..180df91f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" } diff --git a/src/mw/device/sort_archetype.cpp b/src/mw/device/sort_archetype.cpp index 059e41e3..8a56e6c1 100644 --- a/src/mw/device/sort_archetype.cpp +++ b/src/mw/device/sort_archetype.cpp @@ -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();