Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR for testing ursabot github hooks #4

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
arm intrinsics
  • Loading branch information
kszucs committed May 16, 2019
commit 35f64689a3e89765bacc2aa1875959a7402b20f2
9 changes: 7 additions & 2 deletions cpp/src/arrow/compute/kernels/aggregate-benchmark.cc
Original file line number Diff line number Diff line change
@@ -18,10 +18,15 @@
#include "benchmark/benchmark.h"

#include <vector>

#ifdef _MSC_VER
#include <intrin.h>
#include <intrin.h>
#elif defined(__GNUC__) && defined(__ARM_NEON__)
#include <arm_neon.h>
#elif defined(__GNUC__) && defined(__IWMMXT__)
#include <mmintrin.h>
#else
#include <immintrin.h>
#include <immintrin.h>
#endif

#include "arrow/builder.h"