Skip to content

Commit 03003e5

Browse files
authored
Fix segmentation fault. (#39)
* Fix segmentation fault. * Update pyproject.toml
1 parent 947b13a commit 03003e5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gs-madrona"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "A fork from the official Madrona. The fork will be used for Genesis's own Madrona integration."
55
readme = {file = "README.md", content-type = "text/markdown"}
66
license = { text = "MIT" }

src/mw/device/sort_archetype.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ struct BlockRadixRankMatchEarlyCountsCustom
168168
for (int u = 0; u < WARP_BINS_PER_THREAD; ++u)
169169
{
170170
int bin = lane + u * WARP_THREADS;
171-
bins[u] = ThreadReduce(warp_histograms[bin], Sum());
171+
bins[u] = internal::ThreadReduce(warp_histograms[bin], Sum());
172172
}
173173
CTA_SYNC();
174174

0 commit comments

Comments
 (0)