Support building on ARM with NEON histogram intrinsics #4

Merged
andrew merged 5 commits from weaselbot/weaseldb:weaselbot/issue-3 into main 2026-06-26 16:13:08 +00:00
Showing only changes of commit c71bdf13c4 - Show all commits
+2 -2
View File
@@ -1448,8 +1448,8 @@ update_histogram_buckets_simd(std::span<const double> thresholds,
#elif defined(__aarch64__) #elif defined(__aarch64__)
static void static void
update_histogram_buckets_simd(std::span<const double> thresholds, update_histogram_buckets_simd(std::span<const double> thresholds,
std::span<uint64_t> counts, double x, std::span<uint64_t> counts, double x,
size_t start_idx) { size_t start_idx) {
const size_t size = thresholds.size(); const size_t size = thresholds.size();
size_t i = start_idx; size_t i = start_idx;